diff --git a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_client.py b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_client.py index 33a3abe11d98..c9ff66f81306 100644 --- a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_client.py +++ b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_client.py @@ -20,7 +20,7 @@ ) from ._user_agent import USER_AGENT from ._polling import TranslationPolling -from ._helpers import get_http_logging_policy +from ._helpers import get_http_logging_policy, convert_datetime if TYPE_CHECKING: from azure.core.paging import ItemPaged @@ -217,6 +217,17 @@ def list_submitted_jobs(self, **kwargs): # type: (**Any) -> ItemPaged[JobStatusResult] """List all the submitted translation jobs under the Document Translation resource. + :keyword int top: the total number of jobs to return (across all pages) from all submitted jobs. + :keyword int skip: the number of jobs to skip (from beginning of the all submitted jobs). + By default, we sort by all submitted jobs descendingly by start time. + :keyword int results_per_page: is the number of jobs returned per page. + :keyword list[str] job_ids: job ids to filter by. + :keyword list[str] statuses: job statuses to filter by. + :keyword Union[str, datetime.datetime] created_after: get jobs created after certain datetime. + :keyword Union[str, datetime.datetime] created_before: get jobs created before certain datetime. + :keyword list[str] order_by: the sorting query for the jobs returned. + format: ["parm1 asc/desc", "parm2 asc/desc", ...] + (ex: 'createdDateTimeUtc asc', 'createdDateTimeUtc desc'). :return: ~azure.core.paging.ItemPaged[:class:`~azure.ai.translation.document.JobStatusResult`] :rtype: ~azure.core.paging.ItemPaged :raises ~azure.core.exceptions.HttpResponseError: @@ -230,6 +241,12 @@ def list_submitted_jobs(self, **kwargs): :dedent: 4 :caption: List all submitted jobs under the resource. """ + created_after = kwargs.pop("created_after", None) + created_before = kwargs.pop("created_before", None) + created_after = convert_datetime(created_after) if created_after else None + created_before = convert_datetime(created_before) if created_before else None + results_per_page = kwargs.pop("results_per_page", None) + job_ids = kwargs.pop("job_ids", None) def _convert_from_generated_model(generated_model): # pylint: disable=protected-access return JobStatusResult._from_generated(generated_model) # pylint: disable=protected-access @@ -242,15 +259,30 @@ def _convert_from_generated_model(generated_model): # pylint: disable=protected return self._client.document_translation.get_operations( cls=model_conversion_function, + maxpagesize=results_per_page, + created_date_time_utc_start=created_after, + created_date_time_utc_end=created_before, + ids=job_ids, **kwargs ) @distributed_trace def list_all_document_statuses(self, job_id, **kwargs): # type: (str, **Any) -> ItemPaged[DocumentStatusResult] - """List all the document statuses under a translation job. - - :param str job_id: The translation job ID. + """List all the document statuses for a given translation job. + + :param str job_id: ID of translation job to list documents for. + :keyword int top: the total number of documents to return (across all pages). + :keyword int skip: the number of documents to skip (from beginning). + By default, we sort by all documents descendingly by start time. + :keyword int results_per_page: is the number of documents returned per page. + :keyword list[str] document_ids: document IDs to filter by. + :keyword list[str] statuses: document statuses to filter by. + :keyword Union[str, datetime.datetime] translated_after: get document translated after certain datetime. + :keyword Union[str, datetime.datetime] translated_before: get document translated before certain datetime. + :keyword list[str] order_by: the sorting query for the documents. + format: ["parm1 asc/desc", "parm2 asc/desc", ...] + (ex: 'createdDateTimeUtc asc', 'createdDateTimeUtc desc'). :return: ~azure.core.paging.ItemPaged[:class:`~azure.ai.translation.document.DocumentStatusResult`] :rtype: ~azure.core.paging.ItemPaged :raises ~azure.core.exceptions.HttpResponseError: @@ -264,6 +296,13 @@ def list_all_document_statuses(self, job_id, **kwargs): :dedent: 4 :caption: List all the document statuses under the translation job. """ + translated_after = kwargs.pop("translated_after", None) + translated_before = kwargs.pop("translated_before", None) + translated_after = convert_datetime(translated_after) if translated_after else None + translated_before = convert_datetime(translated_before) if translated_before else None + results_per_page = kwargs.pop("results_per_page", None) + document_ids = kwargs.pop("document_ids", None) + def _convert_from_generated_model(generated_model): return DocumentStatusResult._from_generated(generated_model) # pylint: disable=protected-access @@ -277,6 +316,10 @@ def _convert_from_generated_model(generated_model): return self._client.document_translation.get_operation_documents_status( id=job_id, cls=model_conversion_function, + maxpagesize=results_per_page, + created_date_time_utc_start=translated_after, + created_date_time_utc_end=translated_before, + ids=document_ids, **kwargs ) diff --git a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_helpers.py b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_helpers.py index 025e5f479f97..02c6f8154dfa 100644 --- a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_helpers.py +++ b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/_helpers.py @@ -4,6 +4,9 @@ # Licensed under the MIT License. # ------------------------------------ +import datetime +from typing import Union +import six from azure.core.pipeline.policies import HttpLoggingPolicy @@ -35,3 +38,18 @@ def get_http_logging_policy(**kwargs): } ) return http_logging_policy + + +def convert_datetime(date_time): + # type: (Union[str, datetime.datetime]) -> datetime.datetime + if isinstance(date_time, datetime.datetime): + return date_time + if isinstance(date_time, six.string_types): + try: + return datetime.datetime.strptime(date_time, "%Y-%m-%d") + except ValueError: + try: + return datetime.datetime.strptime(date_time, "%Y-%m-%dT%H:%M:%SZ") + except ValueError: + return datetime.datetime.strptime(date_time, "%Y-%m-%d %H:%M:%S") + raise TypeError("Bad datetime type") diff --git a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/_client_async.py b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/_client_async.py index a6bd891f7f31..1775e348ea9d 100644 --- a/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/_client_async.py +++ b/sdk/translation/azure-ai-translation-document/azure/ai/translation/document/aio/_client_async.py @@ -23,7 +23,7 @@ FileFormat, DocumentStatusResult ) -from .._helpers import get_http_logging_policy +from .._helpers import get_http_logging_policy, convert_datetime from .._polling import TranslationPolling COGNITIVE_KEY_HEADER = "Ocp-Apim-Subscription-Key" @@ -217,6 +217,17 @@ def list_submitted_jobs(self, **kwargs): # type: (**Any) -> AsyncItemPaged[JobStatusResult] """List all the submitted translation jobs under the Document Translation resource. + :keyword int top: the total number of jobs to return (across all pages) from all submitted jobs. + :keyword int skip: the number of jobs to skip (from beginning of the all submitted jobs). + By default, we sort by all submitted jobs descendingly by start time. + :keyword int results_per_page: is the number of jobs returned per page. + :keyword list[str] job_ids: job ids to filter by. + :keyword list[str] statuses: job statuses to filter by. + :keyword Union[str, datetime.datetime] created_after: get jobs created after certain datetime. + :keyword Union[str, datetime.datetime] created_before: get jobs created before certain datetime. + :keyword list[str] order_by: the sorting query for the jobs returned. + format: ["parm1 asc/desc", "parm2 asc/desc", ...] + (ex: 'createdDateTimeUtc asc', 'createdDateTimeUtc desc'). :return: ~azure.core.paging.AsyncItemPaged[:class:`~azure.ai.translation.document.JobStatusResult`] :rtype: ~azure.core.paging.AsyncItemPaged :raises ~azure.core.exceptions.HttpResponseError: @@ -231,6 +242,13 @@ def list_submitted_jobs(self, **kwargs): :caption: List all submitted jobs under the resource. """ + created_after = kwargs.pop("created_after", None) + created_before = kwargs.pop("created_before", None) + created_after = convert_datetime(created_after) if created_after else None + created_before = convert_datetime(created_before) if created_before else None + results_per_page = kwargs.pop("results_per_page", None) + job_ids = kwargs.pop("job_ids", None) + def _convert_from_generated_model(generated_model): # pylint: disable=protected-access return JobStatusResult._from_generated(generated_model) @@ -242,15 +260,30 @@ def _convert_from_generated_model(generated_model): return self._client.document_translation.get_operations( cls=model_conversion_function, + maxpagesize=results_per_page, + created_date_time_utc_start=created_after, + created_date_time_utc_end=created_before, + ids=job_ids, **kwargs ) @distributed_trace def list_all_document_statuses(self, job_id, **kwargs): # type: (str, **Any) -> AsyncItemPaged[DocumentStatusResult] - """List all the document statuses under a translation job. - - :param str job_id: The translation job ID. + """List all the document statuses for a given translation job. + + :param str job_id: ID of translation job to list documents for. + :keyword int top: the total number of documents to return (across all pages). + :keyword int skip: the number of documents to skip (from beginning). + By default, we sort by all documents descendingly by start time. + :keyword int results_per_page: is the number of documents returned per page. + :keyword list[str] document_ids: document IDs to filter by. + :keyword list[str] statuses: document statuses to filter by. + :keyword Union[str, datetime.datetime] translated_after: get document translated after certain datetime. + :keyword Union[str, datetime.datetime] translated_before: get document translated before certain datetime. + :keyword list[str] order_by: the sorting query for the documents. + format: ["parm1 asc/desc", "parm2 asc/desc", ...] + (ex: 'createdDateTimeUtc asc', 'createdDateTimeUtc desc'). :return: ~azure.core.paging.AsyncItemPaged[:class:`~azure.ai.translation.document.DocumentStatusResult`] :rtype: ~azure.core.paging.AsyncItemPaged :raises ~azure.core.exceptions.HttpResponseError: @@ -264,6 +297,12 @@ def list_all_document_statuses(self, job_id, **kwargs): :dedent: 8 :caption: List all the document statuses under the translation job. """ + translated_after = kwargs.pop("translated_after", None) + translated_before = kwargs.pop("translated_before", None) + translated_after = convert_datetime(translated_after) if translated_after else None + translated_before = convert_datetime(translated_before) if translated_before else None + results_per_page = kwargs.pop("results_per_page", None) + document_ids = kwargs.pop("document_ids", None) def _convert_from_generated_model(generated_model): # pylint: disable=protected-access @@ -277,6 +316,10 @@ def _convert_from_generated_model(generated_model): return self._client.document_translation.get_operation_documents_status( id=job_id, cls=model_conversion_function, + maxpagesize=results_per_page, + created_date_time_utc_start=translated_after, + created_date_time_utc_end=translated_before, + ids=document_ids, **kwargs ) diff --git a/sdk/translation/azure-ai-translation-document/dev_requirements.txt b/sdk/translation/azure-ai-translation-document/dev_requirements.txt index d9fe17033967..21efdf5ae5a1 100644 --- a/sdk/translation/azure-ai-translation-document/dev_requirements.txt +++ b/sdk/translation/azure-ai-translation-document/dev_requirements.txt @@ -4,3 +4,4 @@ ../../storage/azure-storage-blob ../../nspkg/azure-ai-translation-nspkg aiohttp>=3.0; python_version >= '3.5' +pytz diff --git a/sdk/translation/azure-ai-translation-document/tests/asynctestcase.py b/sdk/translation/azure-ai-translation-document/tests/asynctestcase.py index d15b7e9de64f..8d3ae9cf11c7 100644 --- a/sdk/translation/azure-ai-translation-document/tests/asynctestcase.py +++ b/sdk/translation/azure-ai-translation-document/tests/asynctestcase.py @@ -23,23 +23,21 @@ async def _submit_and_validate_translation_job_async(self, async_client, transla return job_details.id # client helpers - async def _create_and_submit_sample_translation_jobs_async(self, async_client, jobs_count): + async def _create_and_submit_sample_translation_jobs_async(self, async_client, jobs_count, **kwargs): + wait_for_job = kwargs.pop('wait', True) + language_code = kwargs.pop('language_code', "es") + docs_per_job = kwargs.pop('docs_per_job', 2) result_job_ids = [] for i in range(jobs_count): # prepare containers and test data ''' - # WARNING!! - TOTAL_DOC_COUNT_IN_JOB = 1 - if you plan to create more docs in the job, - please update this variable TOTAL_DOC_COUNT_IN_JOB in respective test - # note since we're only testing the client library we can use sync container calls in here no need for async container clients! ''' - blob_data = b'This is some text' - source_container_sas_url = self.create_source_container(data=Document(data=blob_data)) + blob_data = Document.create_dummy_docs(docs_per_job) + source_container_sas_url = self.create_source_container(data=blob_data) target_container_sas_url = self.create_target_container() # prepare translation inputs @@ -49,7 +47,7 @@ async def _create_and_submit_sample_translation_jobs_async(self, async_client, j targets=[ TranslationTarget( target_url=target_container_sas_url, - language_code="es" + language_code=language_code ) ] ) @@ -58,18 +56,14 @@ async def _create_and_submit_sample_translation_jobs_async(self, async_client, j # submit multiple jobs job_details = await async_client.create_translation_job(translation_inputs) self.assertIsNotNone(job_details.id) - await async_client.wait_until_done(job_details.id) + if wait_for_job: + await async_client.wait_until_done(job_details.id) result_job_ids.append(job_details.id) return result_job_ids async def _create_translation_job_with_dummy_docs_async(self, async_client, docs_count, **kwargs): - ''' - appropriated this method from another PR! #18302 - please resolve conflict before merge - keep in mind it's the exact same method - ''' # get input parms wait_for_job = kwargs.pop('wait', False) language_code = kwargs.pop('language_code', "es") diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses.yaml new file mode 100644 index 000000000000..3abb868c62e7 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses.yaml @@ -0,0 +1,1219 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:40:40 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:40:41 GMT + etag: + - '"0x8D910CF36FA95F3"' + last-modified: + - Thu, 06 May 2021 20:40:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:40:41 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3/659cf85e-cf86-4bdf-b8b4-e6a78778eef2.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:40:41 GMT + etag: + - '"0x8D910CF3720DB31"' + last-modified: + - Thu, 06 May 2021 20:40:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:40:42 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3/1a4a32dd-cfbb-412d-b9e9-4c99cff7e535.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:40:41 GMT + etag: + - '"0x8D910CF37450BA3"' + last-modified: + - Thu, 06 May 2021 20:40:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:40:42 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3/77768564-38ef-4f49-b9ec-35cd04838e13.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:40:41 GMT + etag: + - '"0x8D910CF3769B153"' + last-modified: + - Thu, 06 May 2021 20:40:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:40:42 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3/53d89135-12aa-42af-9be6-6fafd5a92fd6.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:40:42 GMT + etag: + - '"0x8D910CF378F68B3"' + last-modified: + - Thu, 06 May 2021 20:40:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:40:42 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3/59014204-0264-4db5-9b53-9fb46de580a8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:40:42 GMT + etag: + - '"0x8D910CF37B483B3"' + last-modified: + - Thu, 06 May 2021 20:40:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:40:43 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetd0694316-7112-465b-9b31-5a3beafbe1da?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:40:43 GMT + etag: + - '"0x8D910CF384221E7"' + last-modified: + - Thu, 06 May 2021 20:40:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd0694316-7112-465b-9b31-5a3beafbe1da?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 423b9f0d-c51d-44f3-8fbf-b06ee68b46c3 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:40:44 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 423b9f0d-c51d-44f3-8fbf-b06ee68b46c3 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:44.9707528Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 36c94465-52af-4238-b93b-2d0c35fa2560 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:44 GMT + etag: + - '"61921D3635961B59787D186BC222DC91642C8185048BFAD957FF9B1F93D90ECF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 36c94465-52af-4238-b93b-2d0c35fa2560 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:44.9707528Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - dd385659-5ad2-473f-ae60-d54500b6cad9 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:44 GMT + etag: + - '"61921D3635961B59787D186BC222DC91642C8185048BFAD957FF9B1F93D90ECF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dd385659-5ad2-473f-ae60-d54500b6cad9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:44.9707528Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 4407d331-0259-4299-b246-0034236e6111 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:46 GMT + etag: + - '"61921D3635961B59787D186BC222DC91642C8185048BFAD957FF9B1F93D90ECF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4407d331-0259-4299-b246-0034236e6111 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:44.9707528Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 951f7dfe-4345-415f-b36f-05c377c8f1d1 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:47 GMT + etag: + - '"61921D3635961B59787D186BC222DC91642C8185048BFAD957FF9B1F93D90ECF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 951f7dfe-4345-415f-b36f-05c377c8f1d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:48.6592642Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 34118789-a903-4a32-9381-b3605b51868a + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:48 GMT + etag: + - '"EBF6CE92D292B9123B74AF88712FD1E0E8F00A57152A05768ADB07D7B1B43C74"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 34118789-a903-4a32-9381-b3605b51868a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:48.6592642Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - be5499f9-aa20-47ca-a7a2-c34f0df50b92 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:49 GMT + etag: + - '"EBF6CE92D292B9123B74AF88712FD1E0E8F00A57152A05768ADB07D7B1B43C74"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - be5499f9-aa20-47ca-a7a2-c34f0df50b92 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:48.6592642Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 385f2e73-b5be-4b2a-bbc7-67bd57b6e4e7 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:50 GMT + etag: + - '"EBF6CE92D292B9123B74AF88712FD1E0E8F00A57152A05768ADB07D7B1B43C74"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 385f2e73-b5be-4b2a-bbc7-67bd57b6e4e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.353005Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":4,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 95c9894c-f1af-4056-bf34-44d0d64fdba8 + cache-control: + - public,max-age=1 + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:51 GMT + etag: + - '"F0D541A349AAE78AD84240AD5D11F713CD335ACF350BE2715EB0E34C97662D5D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 95c9894c-f1af-4056-bf34-44d0d64fdba8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 72708e73-ee36-4cd2-9d9b-49fd6def0ad7 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:53 GMT + etag: + - '"B0F6914EAC4DD8A108B6B9DE060B1995128A89ED368667DEE94D3CC0762BE39B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 72708e73-ee36-4cd2-9d9b-49fd6def0ad7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - e4c443d0-2dc6-42ad-8d75-73a38b03ebac + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:54 GMT + etag: + - '"B0F6914EAC4DD8A108B6B9DE060B1995128A89ED368667DEE94D3CC0762BE39B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e4c443d0-2dc6-42ad-8d75-73a38b03ebac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 88c95e6c-5298-44b8-858e-2223ef25261d + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:55 GMT + etag: + - '"B0F6914EAC4DD8A108B6B9DE060B1995128A89ED368667DEE94D3CC0762BE39B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 88c95e6c-5298-44b8-858e-2223ef25261d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 19734cf9-da00-4d0f-a70e-b6303fcd98c5 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:56 GMT + etag: + - '"B0F6914EAC4DD8A108B6B9DE060B1995128A89ED368667DEE94D3CC0762BE39B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 19734cf9-da00-4d0f-a70e-b6303fcd98c5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - e95d1084-7cb1-431d-9152-e9c718669e59 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:57 GMT + etag: + - '"B0F6914EAC4DD8A108B6B9DE060B1995128A89ED368667DEE94D3CC0762BE39B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e95d1084-7cb1-431d-9152-e9c718669e59 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 09429484-42c5-49c0-a135-50b1914b4b68 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:40:58 GMT + etag: + - '"B0F6914EAC4DD8A108B6B9DE060B1995128A89ED368667DEE94D3CC0762BE39B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 09429484-42c5-49c0-a135-50b1914b4b68 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - a5916576-28f1-4676-b2bc-d8dded88a27f + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:00 GMT + etag: + - '"B0F6914EAC4DD8A108B6B9DE060B1995128A89ED368667DEE94D3CC0762BE39B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a5916576-28f1-4676-b2bc-d8dded88a27f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Running","summary":{"total":5,"failed":0,"success":4,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + headers: + apim-request-id: + - 44e07e37-7aa2-4290-8716-d08f91fb20ea + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:01 GMT + etag: + - '"E24883DAE2DB497E93EB3B100B63F3C1081510343EAB13663164079A4DF74812"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 44e07e37-7aa2-4290-8716-d08f91fb20ea + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052 + response: + body: + string: '{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: + - ad8638e5-e3fa-4a50-b7de-9f3ef4318ecf + cache-control: + - public,max-age=1 + content-length: + - '293' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:02 GMT + etag: + - '"BABF87AB91094724C842514741DEAD01C512A418FD9C98D86E83FC0BCBBF25AC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ad8638e5-e3fa-4a50-b7de-9f3ef4318ecf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0761c108-cb7b-408f-844d-6bb2ccf5b052/documents?$skip=0 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetd0694316-7112-465b-9b31-5a3beafbe1da/77768564-38ef-4f49-b9ec-35cd04838e13.txt","sourcePath":"https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3/77768564-38ef-4f49-b9ec-35cd04838e13.txt","createdDateTimeUtc":"2021-05-06T20:40:52.3287051Z","lastActionDateTimeUtc":"2021-05-06T20:41:02.2018459Z","status":"Succeeded","to":"es","progress":1,"id":"00002acf-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetd0694316-7112-465b-9b31-5a3beafbe1da/659cf85e-cf86-4bdf-b8b4-e6a78778eef2.txt","sourcePath":"https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3/659cf85e-cf86-4bdf-b8b4-e6a78778eef2.txt","createdDateTimeUtc":"2021-05-06T20:40:50.6513867Z","lastActionDateTimeUtc":"2021-05-06T20:41:01.3796497Z","status":"Succeeded","to":"es","progress":1,"id":"00002ace-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetd0694316-7112-465b-9b31-5a3beafbe1da/59014204-0264-4db5-9b53-9fb46de580a8.txt","sourcePath":"https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3/59014204-0264-4db5-9b53-9fb46de580a8.txt","createdDateTimeUtc":"2021-05-06T20:40:50.651368Z","lastActionDateTimeUtc":"2021-05-06T20:41:01.3562535Z","status":"Succeeded","to":"es","progress":1,"id":"00002acd-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetd0694316-7112-465b-9b31-5a3beafbe1da/1a4a32dd-cfbb-412d-b9e9-4c99cff7e535.txt","sourcePath":"https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3/1a4a32dd-cfbb-412d-b9e9-4c99cff7e535.txt","createdDateTimeUtc":"2021-05-06T20:40:50.6257347Z","lastActionDateTimeUtc":"2021-05-06T20:41:01.387056Z","status":"Succeeded","to":"es","progress":1,"id":"00002acb-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetd0694316-7112-465b-9b31-5a3beafbe1da/53d89135-12aa-42af-9be6-6fafd5a92fd6.txt","sourcePath":"https://redacted.blob.core.windows.net/src9c7d8b49-649e-496f-bdab-02c4124403c3/53d89135-12aa-42af-9be6-6fafd5a92fd6.txt","createdDateTimeUtc":"2021-05-06T20:40:50.6145264Z","lastActionDateTimeUtc":"2021-05-06T20:41:01.4071427Z","status":"Succeeded","to":"es","progress":1,"id":"00002acc-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: + - 215dd4ba-88ce-48ab-a3bf-e10e86559a87 + cache-control: + - public,max-age=1 + content-length: + - '2489' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:02 GMT + etag: + - '"A40C42A23588FA5509D59ECE7A8C71A09B66FBFB424CA8D594FB54B3551ECCA8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 215dd4ba-88ce-48ab-a3bf-e10e86559a87 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_filter_by_ids.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_filter_by_ids.yaml new file mode 100644 index 000000000000..0fc69a4903cc --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_filter_by_ids.yaml @@ -0,0 +1,1031 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:41:03 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:41:03 GMT + etag: + - '"0x8D910CF445D9839"' + last-modified: + - Thu, 06 May 2021 20:41:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:04 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/5ba2aa5f-4a3a-41f7-a623-45f565e2767c.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:03 GMT + etag: + - '"0x8D910CF448160E6"' + last-modified: + - Thu, 06 May 2021 20:41:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:04 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/089736d1-2859-413e-925c-e8a6884674dd.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:03 GMT + etag: + - '"0x8D910CF44A6068A"' + last-modified: + - Thu, 06 May 2021 20:41:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:04 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/e8d20efb-23c1-4406-9a14-73272ce5a5e8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:03 GMT + etag: + - '"0x8D910CF44D3876E"' + last-modified: + - Thu, 06 May 2021 20:41:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:05 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/d3278b93-ec92-468e-8725-3322bf9f5ba0.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:04 GMT + etag: + - '"0x8D910CF44F7DEF5"' + last-modified: + - Thu, 06 May 2021 20:41:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:05 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/72357d4a-103d-46cc-a1cb-bd95e1971288.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:04 GMT + etag: + - '"0x8D910CF451BC127"' + last-modified: + - Thu, 06 May 2021 20:41:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:41:05 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetbf82a2c3-e668-4db7-bb33-78a4a619cee5?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:41:05 GMT + etag: + - '"0x8D910CF45A6BBA5"' + last-modified: + - Thu, 06 May 2021 20:41:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbf82a2c3-e668-4db7-bb33-78a4a619cee5?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 8691533f-3cc4-49b1-8a47-3fe56510ce65 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:41:06 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8691533f-3cc4-49b1-8a47-3fe56510ce65 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:06.862414Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - c1057f8b-2ea0-4c96-8bdd-1a0e80f9042e + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:06 GMT + etag: + - '"0DEFD6E18C2810F27F2BEE0A207567AC330A466481FD19BE24AF7CFD19C0FD49"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c1057f8b-2ea0-4c96-8bdd-1a0e80f9042e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:06.862414Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - fe47f0de-7366-482f-833f-8504ba178e77 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:06 GMT + etag: + - '"0DEFD6E18C2810F27F2BEE0A207567AC330A466481FD19BE24AF7CFD19C0FD49"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fe47f0de-7366-482f-833f-8504ba178e77 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:06.862414Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 9e452260-28ba-4045-9d36-46dea80c0bf0 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:07 GMT + etag: + - '"0DEFD6E18C2810F27F2BEE0A207567AC330A466481FD19BE24AF7CFD19C0FD49"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9e452260-28ba-4045-9d36-46dea80c0bf0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:06.862414Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 5fd7ded8-094e-4ba0-8ddd-833aa40339f6 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:08 GMT + etag: + - '"0DEFD6E18C2810F27F2BEE0A207567AC330A466481FD19BE24AF7CFD19C0FD49"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5fd7ded8-094e-4ba0-8ddd-833aa40339f6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:10.1047543Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - bd298e63-861e-4890-8c1a-d61061d9b37d + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:09 GMT + etag: + - '"A53151386E4A768D96117D2A4AB5F427B1CC9696AC63E390BF687351F97286B4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bd298e63-861e-4890-8c1a-d61061d9b37d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:10.1047543Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 379bc03e-ef79-4550-8f49-9ff0b8369d91 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:11 GMT + etag: + - '"A53151386E4A768D96117D2A4AB5F427B1CC9696AC63E390BF687351F97286B4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 379bc03e-ef79-4550-8f49-9ff0b8369d91 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:10.1047543Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 79ee184b-9053-41d9-9830-06d2b79504a4 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:12 GMT + etag: + - '"A53151386E4A768D96117D2A4AB5F427B1CC9696AC63E390BF687351F97286B4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 79ee184b-9053-41d9-9830-06d2b79504a4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.0038007Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":4,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 66d14755-f455-4078-b034-ae9a3d65d421 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:13 GMT + etag: + - '"B9FAF131D277E8830C1943D3C8D987735193E09A6A6D6006A9D33777CD9D14BF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 66d14755-f455-4078-b034-ae9a3d65d421 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 8448e2c8-1cdd-4c5a-a87b-a54379f36add + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:14 GMT + etag: + - '"8CBC0FF78DE47D979EFD4514106C02EE62B8F6D981C222371CB1A013A63F994E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8448e2c8-1cdd-4c5a-a87b-a54379f36add + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 738093ef-4b0a-4f83-af6b-3dfb6981313f + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:15 GMT + etag: + - '"8CBC0FF78DE47D979EFD4514106C02EE62B8F6D981C222371CB1A013A63F994E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 738093ef-4b0a-4f83-af6b-3dfb6981313f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 27e31d70-111d-4966-9420-8b3fb88e43a1 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:17 GMT + etag: + - '"8CBC0FF78DE47D979EFD4514106C02EE62B8F6D981C222371CB1A013A63F994E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 27e31d70-111d-4966-9420-8b3fb88e43a1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4 + response: + body: + string: '{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: + - c72f300b-34b6-4135-a434-a5e986aabcdb + cache-control: + - public,max-age=1 + content-length: + - '293' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:18 GMT + etag: + - '"A6350DB900672C9EEDD155266ECC250DBF94A5DD632B3A1489303F24A349D730"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c72f300b-34b6-4135-a434-a5e986aabcdb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4/documents?$skip=0 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetbf82a2c3-e668-4db7-bb33-78a4a619cee5/e8d20efb-23c1-4406-9a14-73272ce5a5e8.txt","sourcePath":"https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/e8d20efb-23c1-4406-9a14-73272ce5a5e8.txt","createdDateTimeUtc":"2021-05-06T20:41:14.0216778Z","lastActionDateTimeUtc":"2021-05-06T20:41:18.7837451Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad4-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetbf82a2c3-e668-4db7-bb33-78a4a619cee5/d3278b93-ec92-468e-8725-3322bf9f5ba0.txt","sourcePath":"https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/d3278b93-ec92-468e-8725-3322bf9f5ba0.txt","createdDateTimeUtc":"2021-05-06T20:41:13.0502755Z","lastActionDateTimeUtc":"2021-05-06T20:41:17.9665995Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad3-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetbf82a2c3-e668-4db7-bb33-78a4a619cee5/72357d4a-103d-46cc-a1cb-bd95e1971288.txt","sourcePath":"https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/72357d4a-103d-46cc-a1cb-bd95e1971288.txt","createdDateTimeUtc":"2021-05-06T20:41:13.0383103Z","lastActionDateTimeUtc":"2021-05-06T20:41:18.1412099Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad2-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetbf82a2c3-e668-4db7-bb33-78a4a619cee5/5ba2aa5f-4a3a-41f7-a623-45f565e2767c.txt","sourcePath":"https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/5ba2aa5f-4a3a-41f7-a623-45f565e2767c.txt","createdDateTimeUtc":"2021-05-06T20:41:13.0313349Z","lastActionDateTimeUtc":"2021-05-06T20:41:17.9579574Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad1-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetbf82a2c3-e668-4db7-bb33-78a4a619cee5/089736d1-2859-413e-925c-e8a6884674dd.txt","sourcePath":"https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/089736d1-2859-413e-925c-e8a6884674dd.txt","createdDateTimeUtc":"2021-05-06T20:41:13.0310176Z","lastActionDateTimeUtc":"2021-05-06T20:41:17.9696575Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad0-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: + - 5c24c28f-c5f9-4ac9-af4c-f10577325a7e + cache-control: + - public,max-age=1 + content-length: + - '2491' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:19 GMT + etag: + - '"DEC93EC74DDB33623F6BE444C0421FC6C4CE67390C90A6DD4A389A2B7FC84228"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5c24c28f-c5f9-4ac9-af4c-f10577325a7e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4/documents?$skip=0&ids=00002ad4-0000-0000-0000-000000000000,00002ad3-0000-0000-0000-000000000000 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetbf82a2c3-e668-4db7-bb33-78a4a619cee5/e8d20efb-23c1-4406-9a14-73272ce5a5e8.txt","sourcePath":"https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/e8d20efb-23c1-4406-9a14-73272ce5a5e8.txt","createdDateTimeUtc":"2021-05-06T20:41:14.0216778Z","lastActionDateTimeUtc":"2021-05-06T20:41:18.7837451Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad4-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetbf82a2c3-e668-4db7-bb33-78a4a619cee5/d3278b93-ec92-468e-8725-3322bf9f5ba0.txt","sourcePath":"https://redacted.blob.core.windows.net/src71664a37-c685-4348-a089-b7e61a529c3c/d3278b93-ec92-468e-8725-3322bf9f5ba0.txt","createdDateTimeUtc":"2021-05-06T20:41:13.0502755Z","lastActionDateTimeUtc":"2021-05-06T20:41:17.9665995Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad3-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: + - 7aec318d-44bd-416f-800b-932c6694d57d + cache-control: + - public,max-age=1 + content-length: + - '1003' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:19 GMT + etag: + - '"A315A1747DD224FA162CAF383B0084D9630EF36BCB6B5D343A429EE2F11A3972"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7aec318d-44bd-416f-800b-932c6694d57d + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_filter_by_status.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_filter_by_status.yaml new file mode 100644 index 000000000000..43873b7b9531 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_filter_by_status.yaml @@ -0,0 +1,1751 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:41:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:41:20 GMT + etag: + - '"0x8D910CF4E040351"' + last-modified: + - Thu, 06 May 2021 20:41:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/eba80847-9a7c-4dfe-ac10-ac17ebc17905.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:20 GMT + etag: + - '"0x8D910CF4E273E34"' + last-modified: + - Thu, 06 May 2021 20:41:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/f414bdf1-cccc-44d6-81fb-18140641e24f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:20 GMT + etag: + - '"0x8D910CF4E4AAB23"' + last-modified: + - Thu, 06 May 2021 20:41:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/4ccb073b-22b5-4a04-ba91-2f58d564d347.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:20 GMT + etag: + - '"0x8D910CF4E6E8D5A"' + last-modified: + - Thu, 06 May 2021 20:41:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/c056949e-379d-4960-8799-80f3b275b689.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:21 GMT + etag: + - '"0x8D910CF4E91FA4E"' + last-modified: + - Thu, 06 May 2021 20:41:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/0ce5052e-1865-4402-bd6e-e2b3134968ac.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:21 GMT + etag: + - '"0x8D910CF4EB56741"' + last-modified: + - Thu, 06 May 2021 20:41:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/9391bb88-80f9-4fd8-a24f-a12e6095c4e7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:21 GMT + etag: + - '"0x8D910CF4ED92251"' + last-modified: + - Thu, 06 May 2021 20:41:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/b4d5ba8e-0ff3-4a90-803f-decb9f9044d8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:21 GMT + etag: + - '"0x8D910CF4EFCB65E"' + last-modified: + - Thu, 06 May 2021 20:41:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/b50217f3-bb1b-4873-aae0-771e28c68537.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:22 GMT + etag: + - '"0x8D910CF4F209895"' + last-modified: + - Thu, 06 May 2021 20:41:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/f3cdd495-a678-4d72-b16a-24738be41727.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:22 GMT + etag: + - '"0x8D910CF4F44057B"' + last-modified: + - Thu, 06 May 2021 20:41:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/c42edc22-c37b-41c5-8c60-5be88aa9cd93.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:22 GMT + etag: + - '"0x8D910CF4F677285"' + last-modified: + - Thu, 06 May 2021 20:41:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:41:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:41:23 GMT + etag: + - '"0x8D910CF4FF4606C"' + last-modified: + - Thu, 06 May 2021 20:41:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '490' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 377f33cb-06c4-4c45-86ee-3efa0350e48b + content-length: + - '0' + date: + - Thu, 06 May 2021 20:41:23 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 377f33cb-06c4-4c45-86ee-3efa0350e48b + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:24.122809Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 607afcdf-6158-4ac3-8534-0a4c2d2ef840 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:23 GMT + etag: + - '"739B60DEF274B7DE230BDD237351DCA9FCB37B673FE69D22217E63C1058E6AA8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 607afcdf-6158-4ac3-8534-0a4c2d2ef840 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:24.122809Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 8e62d1d9-a3e5-43a1-a305-b2b2e88da7ba + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:23 GMT + etag: + - '"739B60DEF274B7DE230BDD237351DCA9FCB37B673FE69D22217E63C1058E6AA8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8e62d1d9-a3e5-43a1-a305-b2b2e88da7ba + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:24.122809Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 052cac96-2c08-4b7e-a17e-50b7d7f232c7 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:24 GMT + etag: + - '"739B60DEF274B7DE230BDD237351DCA9FCB37B673FE69D22217E63C1058E6AA8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 052cac96-2c08-4b7e-a17e-50b7d7f232c7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:24.122809Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 0ebfae6f-f9fd-42a8-9cb5-01355c0e8000 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:26 GMT + etag: + - '"739B60DEF274B7DE230BDD237351DCA9FCB37B673FE69D22217E63C1058E6AA8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0ebfae6f-f9fd-42a8-9cb5-01355c0e8000 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:24.122809Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - d025650b-2136-475c-88c6-18ab9cdc48be + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:27 GMT + etag: + - '"739B60DEF274B7DE230BDD237351DCA9FCB37B673FE69D22217E63C1058E6AA8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d025650b-2136-475c-88c6-18ab9cdc48be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:24.122809Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - c9e7cc19-0168-4c1b-827a-3162b3b007ed + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:28 GMT + etag: + - '"739B60DEF274B7DE230BDD237351DCA9FCB37B673FE69D22217E63C1058E6AA8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c9e7cc19-0168-4c1b-827a-3162b3b007ed + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:30.1101978Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 76fa84d2-dce3-44e3-bd0d-b375b927b210 + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:29 GMT + etag: + - '"7E1F2E41D7BB9F7B8FD3EC79C18EAE87AF8418BE8ACCD6DCC5FF97C7B6F1D118"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 76fa84d2-dce3-44e3-bd0d-b375b927b210 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:30.1101978Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - ce771278-9368-4ecf-9926-2440306a82ca + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:30 GMT + etag: + - '"7E1F2E41D7BB9F7B8FD3EC79C18EAE87AF8418BE8ACCD6DCC5FF97C7B6F1D118"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ce771278-9368-4ecf-9926-2440306a82ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:30.1101978Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - fcbb373b-69c3-48dd-9b8d-eb756c1ec82d + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:31 GMT + etag: + - '"7E1F2E41D7BB9F7B8FD3EC79C18EAE87AF8418BE8ACCD6DCC5FF97C7B6F1D118"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fcbb373b-69c3-48dd-9b8d-eb756c1ec82d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:30.1101978Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 912ea1a4-28af-4551-87e6-d410879e7569 + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:32 GMT + etag: + - '"7E1F2E41D7BB9F7B8FD3EC79C18EAE87AF8418BE8ACCD6DCC5FF97C7B6F1D118"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 912ea1a4-28af-4551-87e6-d410879e7569 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:30.1101978Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 5120bedb-8f07-4eac-8a2c-8a601676a000 + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:34 GMT + etag: + - '"7E1F2E41D7BB9F7B8FD3EC79C18EAE87AF8418BE8ACCD6DCC5FF97C7B6F1D118"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5120bedb-8f07-4eac-8a2c-8a601676a000 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:30.1101978Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 18f2df4f-1983-4743-a598-70d762058d66 + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:35 GMT + etag: + - '"7E1F2E41D7BB9F7B8FD3EC79C18EAE87AF8418BE8ACCD6DCC5FF97C7B6F1D118"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 18f2df4f-1983-4743-a598-70d762058d66 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:30.1101978Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - d34bcb2c-f921-4ffa-bdb6-fb42033e71e3 + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:36 GMT + etag: + - '"7E1F2E41D7BB9F7B8FD3EC79C18EAE87AF8418BE8ACCD6DCC5FF97C7B6F1D118"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d34bcb2c-f921-4ffa-bdb6-fb42033e71e3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:38.0719422Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":4,"notYetStarted":6,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - a136f4be-8ee4-4230-a661-bdaa8781731e + cache-control: + - public,max-age=1 + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:37 GMT + etag: + - '"7D223885E9716D424EE7C4AB38FA03F7DD89A8DD42DF838F9DF31D50C0367BC7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a136f4be-8ee4-4230-a661-bdaa8781731e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 2ac3ae06-c2a4-4dd4-bbf0-c3fd4841649f + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:38 GMT + etag: + - '"F4435422B285D6631AC6423F0C33A42E4D5A9B4C35C3AA7A627C13D37814DB84"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2ac3ae06-c2a4-4dd4-bbf0-c3fd4841649f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 0477cd48-4d77-4c2e-b444-e87f67a5fadd + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:39 GMT + etag: + - '"F4435422B285D6631AC6423F0C33A42E4D5A9B4C35C3AA7A627C13D37814DB84"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0477cd48-4d77-4c2e-b444-e87f67a5fadd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - e8419a80-d4ef-4cc9-aeb7-de0a95e76d2c + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:41 GMT + etag: + - '"F4435422B285D6631AC6423F0C33A42E4D5A9B4C35C3AA7A627C13D37814DB84"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e8419a80-d4ef-4cc9-aeb7-de0a95e76d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 90bc543b-74a0-4122-9925-bec602fb9dc6 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:42 GMT + etag: + - '"F4435422B285D6631AC6423F0C33A42E4D5A9B4C35C3AA7A627C13D37814DB84"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 90bc543b-74a0-4122-9925-bec602fb9dc6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Running","summary":{"total":10,"failed":0,"success":4,"inProgress":6,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + headers: + apim-request-id: + - 25d5939a-878b-451f-967f-ebb2e89b5584 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:43 GMT + etag: + - '"0AAA6E24F875854F4BBD6D3C4A5DD679DE351766839EA41BE6A7CF380F1E5E3D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 25d5939a-878b-451f-967f-ebb2e89b5584 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Running","summary":{"total":10,"failed":0,"success":6,"inProgress":4,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}' + headers: + apim-request-id: + - bd76cbed-56c3-4280-9a3b-b478ccc2fe33 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:44 GMT + etag: + - '"5F81AB18808341BA3E46CFBF13A82DAAD0145D8C58A57154274A513EBD9394F4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bd76cbed-56c3-4280-9a3b-b478ccc2fe33 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c + response: + body: + string: '{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' + headers: + apim-request-id: + - 8ff7decc-9b7c-461b-9fe9-93faef685de4 + cache-control: + - public,max-age=1 + content-length: + - '295' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:45 GMT + etag: + - '"016DE3F6E393A2A683790B231595517D0D1D337ECB2D67C3AB5376F6A248405E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8ff7decc-9b7c-461b-9fe9-93faef685de4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c/documents?$skip=0&statuses=NotStarted + response: + body: + string: '{"value":[]}' + headers: + apim-request-id: + - dc9b26f5-b641-4e9e-ade0-39e6a1057d6c + cache-control: + - public,max-age=1 + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:45 GMT + etag: + - '"E78C00FDC748EF2D876911D82ADE1295E9CB739D2B34C572100D832D67802DFF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dc9b26f5-b641-4e9e-ade0-39e6a1057d6c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c/documents?$skip=0&statuses=Succeeded + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5/f414bdf1-cccc-44d6-81fb-18140641e24f.txt","sourcePath":"https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/f414bdf1-cccc-44d6-81fb-18140641e24f.txt","createdDateTimeUtc":"2021-05-06T20:41:38.6813872Z","lastActionDateTimeUtc":"2021-05-06T20:41:44.6691136Z","status":"Succeeded","to":"es","progress":1,"id":"00002ade-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5/f3cdd495-a678-4d72-b16a-24738be41727.txt","sourcePath":"https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/f3cdd495-a678-4d72-b16a-24738be41727.txt","createdDateTimeUtc":"2021-05-06T20:41:38.6499445Z","lastActionDateTimeUtc":"2021-05-06T20:41:44.672324Z","status":"Succeeded","to":"es","progress":1,"id":"00002add-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5/eba80847-9a7c-4dfe-ac10-ac17ebc17905.txt","sourcePath":"https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/eba80847-9a7c-4dfe-ac10-ac17ebc17905.txt","createdDateTimeUtc":"2021-05-06T20:41:38.1563288Z","lastActionDateTimeUtc":"2021-05-06T20:41:46.0672341Z","status":"Succeeded","to":"es","progress":1,"id":"00002adc-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5/c42edc22-c37b-41c5-8c60-5be88aa9cd93.txt","sourcePath":"https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/c42edc22-c37b-41c5-8c60-5be88aa9cd93.txt","createdDateTimeUtc":"2021-05-06T20:41:38.1167753Z","lastActionDateTimeUtc":"2021-05-06T20:41:46.0741116Z","status":"Succeeded","to":"es","progress":1,"id":"00002adb-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5/c056949e-379d-4960-8799-80f3b275b689.txt","sourcePath":"https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/c056949e-379d-4960-8799-80f3b275b689.txt","createdDateTimeUtc":"2021-05-06T20:41:38.111093Z","lastActionDateTimeUtc":"2021-05-06T20:41:46.0651776Z","status":"Succeeded","to":"es","progress":1,"id":"00002ada-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5/b50217f3-bb1b-4873-aae0-771e28c68537.txt","sourcePath":"https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/b50217f3-bb1b-4873-aae0-771e28c68537.txt","createdDateTimeUtc":"2021-05-06T20:41:38.1069022Z","lastActionDateTimeUtc":"2021-05-06T20:41:46.0654177Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad9-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5/b4d5ba8e-0ff3-4a90-803f-decb9f9044d8.txt","sourcePath":"https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/b4d5ba8e-0ff3-4a90-803f-decb9f9044d8.txt","createdDateTimeUtc":"2021-05-06T20:41:37.5478082Z","lastActionDateTimeUtc":"2021-05-06T20:41:43.8788114Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad8-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5/9391bb88-80f9-4fd8-a24f-a12e6095c4e7.txt","sourcePath":"https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/9391bb88-80f9-4fd8-a24f-a12e6095c4e7.txt","createdDateTimeUtc":"2021-05-06T20:41:37.540658Z","lastActionDateTimeUtc":"2021-05-06T20:41:43.8345918Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad7-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5/4ccb073b-22b5-4a04-ba91-2f58d564d347.txt","sourcePath":"https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/4ccb073b-22b5-4a04-ba91-2f58d564d347.txt","createdDateTimeUtc":"2021-05-06T20:41:37.5331679Z","lastActionDateTimeUtc":"2021-05-06T20:41:43.92314Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad6-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/targetaecd2591-1b62-43b1-be21-8b092d1e44c5/0ce5052e-1865-4402-bd6e-e2b3134968ac.txt","sourcePath":"https://redacted.blob.core.windows.net/src93b0a25f-61c1-4034-9858-62cafed16731/0ce5052e-1865-4402-bd6e-e2b3134968ac.txt","createdDateTimeUtc":"2021-05-06T20:41:37.5303474Z","lastActionDateTimeUtc":"2021-05-06T20:41:43.889563Z","status":"Succeeded","to":"es","progress":1,"id":"00002ad5-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: + - 95a69033-3451-4ba5-9fd9-7e8586568bb6 + cache-control: + - public,max-age=1 + content-length: + - '4965' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:46 GMT + etag: + - '"872BFAE9311945FCC8E3B5F5FC9A8932D387CB9B41CFC773B5538D4DC829BE52"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 95a69033-3451-4ba5-9fd9-7e8586568bb6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c/documents?$skip=0&statuses=Failed + response: + body: + string: '{"value":[]}' + headers: + apim-request-id: + - 1e5c07ff-aa51-4692-94b0-ed94032643ca + cache-control: + - public,max-age=1 + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:46 GMT + etag: + - '"E78C00FDC748EF2D876911D82ADE1295E9CB739D2B34C572100D832D67802DFF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1e5c07ff-aa51-4692-94b0-ed94032643ca + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_order_by_creation_time_asc.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_order_by_creation_time_asc.yaml new file mode 100644 index 000000000000..fc3806d017cb --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_order_by_creation_time_asc.yaml @@ -0,0 +1,984 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:41:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:41:47 GMT + etag: + - '"0x8D910CF5EAE66E5"' + last-modified: + - Thu, 06 May 2021 20:41:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1/6547f285-b51c-4a22-8c73-92a2b015600d.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:47 GMT + etag: + - '"0x8D910CF5ED27EEB"' + last-modified: + - Thu, 06 May 2021 20:41:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1/8e278977-df44-41ce-9e62-37148c7335d8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:47 GMT + etag: + - '"0x8D910CF5EF6FD7A"' + last-modified: + - Thu, 06 May 2021 20:41:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1/dd14cb91-be64-48e0-ad47-bf64b85a2c23.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:47 GMT + etag: + - '"0x8D910CF5F1AB897"' + last-modified: + - Thu, 06 May 2021 20:41:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:49 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1/d6b0896a-741a-470f-952d-2d7d47e7219c.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:48 GMT + etag: + - '"0x8D910CF5F3E4CA4"' + last-modified: + - Thu, 06 May 2021 20:41:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:41:49 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1/1e7603f4-89ce-408a-98bf-bdf18a7b35f7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:41:48 GMT + etag: + - '"0x8D910CF5F62A422"' + last-modified: + - Thu, 06 May 2021 20:41:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:41:49 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target141afaad-5b01-4f40-af95-6f5fc266ca03?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:41:49 GMT + etag: + - '"0x8D910CF5FEFFB0B"' + last-modified: + - Thu, 06 May 2021 20:41:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target141afaad-5b01-4f40-af95-6f5fc266ca03?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '490' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - e2563055-c2c4-4a65-ab16-2c48c3b6b337 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:41:51 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e2563055-c2c4-4a65-ab16-2c48c3b6b337 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:41:51.2781215Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 612e0a33-ebaf-4c14-98f2-6bdefee1537f + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:51 GMT + etag: + - '"85D1AE42A670662D1DB400432B4FF4F7921AA6397D92086F57C8CD564F346E91"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 612e0a33-ebaf-4c14-98f2-6bdefee1537f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:41:51.2781215Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - d3d4234e-42aa-4552-b585-7e3cc08d7c2e + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:51 GMT + etag: + - '"85D1AE42A670662D1DB400432B4FF4F7921AA6397D92086F57C8CD564F346E91"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d3d4234e-42aa-4552-b585-7e3cc08d7c2e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:41:51.2781215Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 3ea9f2ee-b3ba-4cbc-8401-ccdfa36c7f9c + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:52 GMT + etag: + - '"85D1AE42A670662D1DB400432B4FF4F7921AA6397D92086F57C8CD564F346E91"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3ea9f2ee-b3ba-4cbc-8401-ccdfa36c7f9c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:41:51.2781215Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1f26a418-295f-413c-9a36-9fcc94c8e381 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:53 GMT + etag: + - '"85D1AE42A670662D1DB400432B4FF4F7921AA6397D92086F57C8CD564F346E91"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1f26a418-295f-413c-9a36-9fcc94c8e381 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:41:54.8866038Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 3d136476-99c6-4200-b1fe-061719051bfb + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:54 GMT + etag: + - '"B6F254EBBB322054FEB5555F909B3ABF17146166B8947F7CC514FD8DFD9FF20A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3d136476-99c6-4200-b1fe-061719051bfb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:41:54.8866038Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 33217c25-df82-4286-ae43-95227c24eff6 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:56 GMT + etag: + - '"B6F254EBBB322054FEB5555F909B3ABF17146166B8947F7CC514FD8DFD9FF20A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 33217c25-df82-4286-ae43-95227c24eff6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:41:54.8866038Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - bfcf9f1d-0475-4b82-bd19-be2351485da3 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:57 GMT + etag: + - '"B6F254EBBB322054FEB5555F909B3ABF17146166B8947F7CC514FD8DFD9FF20A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bfcf9f1d-0475-4b82-bd19-be2351485da3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:41:54.8866038Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - c924a999-105b-4a3d-b8ff-50c0451ec7e6 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:58 GMT + etag: + - '"B6F254EBBB322054FEB5555F909B3ABF17146166B8947F7CC514FD8DFD9FF20A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c924a999-105b-4a3d-b8ff-50c0451ec7e6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:41:59.6417946Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":4,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - c9345d75-f198-4225-9643-60b14811f608 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:41:59 GMT + etag: + - '"69B624453D3D62DB7D2D9E36AFB844B020591C05AE0DC188A6E3642052791B7B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c9345d75-f198-4225-9643-60b14811f608 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 2efd1954-e714-448c-a339-034189ca37f2 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:00 GMT + etag: + - '"1EA15A3F8EF6FA047511AA3B92BA1B058C3C5A3309C622217B4079B18C7A5B42"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2efd1954-e714-448c-a339-034189ca37f2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Running","summary":{"total":5,"failed":0,"success":4,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + headers: + apim-request-id: + - a6a42606-a4b8-4413-9ad7-c899ee45eee4 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:01 GMT + etag: + - '"FD93854C6A49FE98A6C32DF822DA923FEB788AA7F99FD347A8518DA4542559A3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a6a42606-a4b8-4413-9ad7-c899ee45eee4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a + response: + body: + string: '{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: + - e577a753-b662-466a-97b3-87ef9b40d4b7 + cache-control: + - public,max-age=1 + content-length: + - '293' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:02 GMT + etag: + - '"C7B6DAA0A1DF9BDCCAEAF0713EF6D9CE7F8FCEEB3B56197BA3A3ECC3F613533B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e577a753-b662-466a-97b3-87ef9b40d4b7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a/documents?$skip=0&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target141afaad-5b01-4f40-af95-6f5fc266ca03/1e7603f4-89ce-408a-98bf-bdf18a7b35f7.txt","sourcePath":"https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1/1e7603f4-89ce-408a-98bf-bdf18a7b35f7.txt","createdDateTimeUtc":"2021-05-06T20:41:59.1118099Z","lastActionDateTimeUtc":"2021-05-06T20:42:01.9044792Z","status":"Succeeded","to":"es","progress":1,"id":"00002adf-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target141afaad-5b01-4f40-af95-6f5fc266ca03/6547f285-b51c-4a22-8c73-92a2b015600d.txt","sourcePath":"https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1/6547f285-b51c-4a22-8c73-92a2b015600d.txt","createdDateTimeUtc":"2021-05-06T20:41:59.112711Z","lastActionDateTimeUtc":"2021-05-06T20:42:01.9315688Z","status":"Succeeded","to":"es","progress":1,"id":"00002ae0-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target141afaad-5b01-4f40-af95-6f5fc266ca03/8e278977-df44-41ce-9e62-37148c7335d8.txt","sourcePath":"https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1/8e278977-df44-41ce-9e62-37148c7335d8.txt","createdDateTimeUtc":"2021-05-06T20:41:59.1180907Z","lastActionDateTimeUtc":"2021-05-06T20:42:01.9090609Z","status":"Succeeded","to":"es","progress":1,"id":"00002ae1-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target141afaad-5b01-4f40-af95-6f5fc266ca03/d6b0896a-741a-470f-952d-2d7d47e7219c.txt","sourcePath":"https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1/d6b0896a-741a-470f-952d-2d7d47e7219c.txt","createdDateTimeUtc":"2021-05-06T20:41:59.1258215Z","lastActionDateTimeUtc":"2021-05-06T20:42:01.9222247Z","status":"Succeeded","to":"es","progress":1,"id":"00002ae2-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target141afaad-5b01-4f40-af95-6f5fc266ca03/dd14cb91-be64-48e0-ad47-bf64b85a2c23.txt","sourcePath":"https://redacted.blob.core.windows.net/src688f9e09-2087-431d-9d10-fa544da8ebc1/dd14cb91-be64-48e0-ad47-bf64b85a2c23.txt","createdDateTimeUtc":"2021-05-06T20:41:59.6355271Z","lastActionDateTimeUtc":"2021-05-06T20:42:02.7158194Z","status":"Succeeded","to":"es","progress":1,"id":"00002ae3-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: + - fd984535-f3aa-4a98-9624-02da65255366 + cache-control: + - public,max-age=1 + content-length: + - '2490' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:03 GMT + etag: + - '"D1307C8709A91044E61183AAD7CE81940BD0867808743B54E14D387E344F9391"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fd984535-f3aa-4a98-9624-02da65255366 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_order_by_creation_time_desc.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_order_by_creation_time_desc.yaml new file mode 100644 index 000000000000..d0715ff0d082 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_order_by_creation_time_desc.yaml @@ -0,0 +1,984 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:42:03 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:42:03 GMT + etag: + - '"0x8D910CF685319E4"' + last-modified: + - Thu, 06 May 2021 20:42:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:04 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec/abbfb8da-fd31-4ba8-b01b-32ff49b736f6.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:03 GMT + etag: + - '"0x8D910CF687FD7AC"' + last-modified: + - Thu, 06 May 2021 20:42:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:04 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec/d9707871-5b6e-4915-bb4b-c257ac3a3718.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:04 GMT + etag: + - '"0x8D910CF68A40808"' + last-modified: + - Thu, 06 May 2021 20:42:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:05 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec/90f43986-8b8d-4a54-b9b6-8abbefeacfc2.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:04 GMT + etag: + - '"0x8D910CF68C85F8F"' + last-modified: + - Thu, 06 May 2021 20:42:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:05 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec/af851336-ec20-4048-8df3-58f1b5e245ee.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:04 GMT + etag: + - '"0x8D910CF68ECB700"' + last-modified: + - Thu, 06 May 2021 20:42:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:05 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec/1e6f6850-4b4b-480d-ae31-d301b69b6267.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:04 GMT + etag: + - '"0x8D910CF6910C047"' + last-modified: + - Thu, 06 May 2021 20:42:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:42:05 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target2fe61687-49a0-44e1-bcde-8e66127f4335?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:42:05 GMT + etag: + - '"0x8D910CF699E9D34"' + last-modified: + - Thu, 06 May 2021 20:42:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2fe61687-49a0-44e1-bcde-8e66127f4335?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 2fba20c3-43c2-46a0-b15c-80b8ea5df89c + content-length: + - '0' + date: + - Thu, 06 May 2021 20:42:06 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2fba20c3-43c2-46a0-b15c-80b8ea5df89c + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:07.1139217Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - c8e27779-5352-4502-af80-28092dfe32dc + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:06 GMT + etag: + - '"4C9A527022B07BCFEF56C65F91BB6B7B13F3AE52AE952473C67983505FB119E5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c8e27779-5352-4502-af80-28092dfe32dc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:07.1139217Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 562059d9-2111-42eb-bccc-b195c22853ca + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:07 GMT + etag: + - '"4C9A527022B07BCFEF56C65F91BB6B7B13F3AE52AE952473C67983505FB119E5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 562059d9-2111-42eb-bccc-b195c22853ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:07.1139217Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - b2b21161-44f2-4609-84e2-4a44e5424c79 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:08 GMT + etag: + - '"4C9A527022B07BCFEF56C65F91BB6B7B13F3AE52AE952473C67983505FB119E5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b2b21161-44f2-4609-84e2-4a44e5424c79 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:07.1139217Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 68e1b654-89b9-47f5-bdad-b2ec114a8579 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:09 GMT + etag: + - '"4C9A527022B07BCFEF56C65F91BB6B7B13F3AE52AE952473C67983505FB119E5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 68e1b654-89b9-47f5-bdad-b2ec114a8579 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:10.2821627Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1a8c636a-909a-4118-ade4-1782d404d1ec + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:10 GMT + etag: + - '"4A5E8803496501E8D6379A762033806507C0D8BAEDA745FC7CE7CCA3FD8594BC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1a8c636a-909a-4118-ade4-1782d404d1ec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:10.2821627Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - afff94a3-cadc-446b-97e8-ec0f60da5772 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:11 GMT + etag: + - '"4A5E8803496501E8D6379A762033806507C0D8BAEDA745FC7CE7CCA3FD8594BC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - afff94a3-cadc-446b-97e8-ec0f60da5772 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:10.2821627Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - ae316f11-cfbd-4f57-a4bf-627cf0a4bf3d + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:12 GMT + etag: + - '"4A5E8803496501E8D6379A762033806507C0D8BAEDA745FC7CE7CCA3FD8594BC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ae316f11-cfbd-4f57-a4bf-627cf0a4bf3d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.4770851Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":4,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f056cc11-6a07-43d9-aec8-f3c6682b9a7f + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:14 GMT + etag: + - '"477AE3FDB353852F1B60AEC0FE6B122A92F7207CCF81BF26DBA080FA50677ED9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f056cc11-6a07-43d9-aec8-f3c6682b9a7f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 3733575a-e8cd-416e-a427-5530e11fe3c6 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:15 GMT + etag: + - '"2CD03F30798766A56EB31F3DA45F7AB53ED4EE0804D8FFFB668052FE4CBC88B5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3733575a-e8cd-416e-a427-5530e11fe3c6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f71052fd-54f9-4d22-9ae7-d01451f1bb84 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:16 GMT + etag: + - '"2CD03F30798766A56EB31F3DA45F7AB53ED4EE0804D8FFFB668052FE4CBC88B5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f71052fd-54f9-4d22-9ae7-d01451f1bb84 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 71f4797f-2dfd-4fae-93b8-63cb3902fa01 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:17 GMT + etag: + - '"2CD03F30798766A56EB31F3DA45F7AB53ED4EE0804D8FFFB668052FE4CBC88B5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 71f4797f-2dfd-4fae-93b8-63cb3902fa01 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb + response: + body: + string: '{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: + - fa458371-3116-43d4-bad6-f539d7dd8acc + cache-control: + - public,max-age=1 + content-length: + - '293' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:18 GMT + etag: + - '"676CD0826B125D0B959914339A85EA66590370DF2396E9374933E4008F350E7B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fa458371-3116-43d4-bad6-f539d7dd8acc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/643ca574-f3ef-47fc-be86-6d73cbc740fb/documents?$skip=0&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target2fe61687-49a0-44e1-bcde-8e66127f4335/d9707871-5b6e-4915-bb4b-c257ac3a3718.txt","sourcePath":"https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec/d9707871-5b6e-4915-bb4b-c257ac3a3718.txt","createdDateTimeUtc":"2021-05-06T20:42:14.4082509Z","lastActionDateTimeUtc":"2021-05-06T20:42:19.1319117Z","status":"Succeeded","to":"es","progress":1,"id":"00002ae8-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target2fe61687-49a0-44e1-bcde-8e66127f4335/af851336-ec20-4048-8df3-58f1b5e245ee.txt","sourcePath":"https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec/af851336-ec20-4048-8df3-58f1b5e245ee.txt","createdDateTimeUtc":"2021-05-06T20:42:13.8196535Z","lastActionDateTimeUtc":"2021-05-06T20:42:18.3412453Z","status":"Succeeded","to":"es","progress":1,"id":"00002ae7-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target2fe61687-49a0-44e1-bcde-8e66127f4335/abbfb8da-fd31-4ba8-b01b-32ff49b736f6.txt","sourcePath":"https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec/abbfb8da-fd31-4ba8-b01b-32ff49b736f6.txt","createdDateTimeUtc":"2021-05-06T20:42:13.8126815Z","lastActionDateTimeUtc":"2021-05-06T20:42:18.3716152Z","status":"Succeeded","to":"es","progress":1,"id":"00002ae6-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target2fe61687-49a0-44e1-bcde-8e66127f4335/1e6f6850-4b4b-480d-ae31-d301b69b6267.txt","sourcePath":"https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec/1e6f6850-4b4b-480d-ae31-d301b69b6267.txt","createdDateTimeUtc":"2021-05-06T20:42:13.8125326Z","lastActionDateTimeUtc":"2021-05-06T20:42:18.3821641Z","status":"Succeeded","to":"es","progress":1,"id":"00002ae4-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target2fe61687-49a0-44e1-bcde-8e66127f4335/90f43986-8b8d-4a54-b9b6-8abbefeacfc2.txt","sourcePath":"https://redacted.blob.core.windows.net/src03d36eec-a196-4bd9-b5c0-d183ddef14ec/90f43986-8b8d-4a54-b9b6-8abbefeacfc2.txt","createdDateTimeUtc":"2021-05-06T20:42:13.8125264Z","lastActionDateTimeUtc":"2021-05-06T20:42:18.425871Z","status":"Succeeded","to":"es","progress":1,"id":"00002ae5-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: + - b1be06be-678d-4610-965c-381f2528959e + cache-control: + - public,max-age=1 + content-length: + - '2490' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:18 GMT + etag: + - '"152D6E47619984EACB8D624047FF2C8A065E05B9789266F885B26A855B26391C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b1be06be-678d-4610-965c-381f2528959e + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_with_pagination.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_with_pagination.yaml new file mode 100644 index 000000000000..8d2eb9168ee4 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_with_pagination.yaml @@ -0,0 +1,1751 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:42:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:42:19 GMT + etag: + - '"0x8D910CF71CA4D70"' + last-modified: + - Thu, 06 May 2021 20:42:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/7fabdad9-f14d-417d-a3b9-58f019a8924b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:19 GMT + etag: + - '"0x8D910CF71F1A2F4"' + last-modified: + - Thu, 06 May 2021 20:42:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/279b802d-70a0-4bee-95b4-27a476ef1508.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:19 GMT + etag: + - '"0x8D910CF7215AC3F"' + last-modified: + - Thu, 06 May 2021 20:42:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/0c149d05-df8e-406d-bdde-a62557b2ec66.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:20 GMT + etag: + - '"0x8D910CF723A03BB"' + last-modified: + - Thu, 06 May 2021 20:42:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/397d8232-9e90-4744-a620-c155c5e96e90.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:20 GMT + etag: + - '"0x8D910CF725ED08D"' + last-modified: + - Thu, 06 May 2021 20:42:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/0b1986af-7b9e-4b8b-9d55-f0fa63a3a8e7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:20 GMT + etag: + - '"0x8D910CF72832816"' + last-modified: + - Thu, 06 May 2021 20:42:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/e2e9b9a6-0bf3-4b8c-b298-acf1e106a72e.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:20 GMT + etag: + - '"0x8D910CF72A81C01"' + last-modified: + - Thu, 06 May 2021 20:42:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/eddec4ca-c02e-4499-a8c3-e7aa87feb901.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:21 GMT + etag: + - '"0x8D910CF72CBFE3A"' + last-modified: + - Thu, 06 May 2021 20:42:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/4a177512-06d1-4338-a8c3-29ce571e913a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:21 GMT + etag: + - '"0x8D910CF72F0F216"' + last-modified: + - Thu, 06 May 2021 20:42:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/a7dca056-6aa5-4c88-b67c-f1d5ddde53e2.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:21 GMT + etag: + - '"0x8D910CF7315BECE"' + last-modified: + - Thu, 06 May 2021 20:42:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/1f76fc6c-596c-4bf4-affe-faef9c72b3b8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:21 GMT + etag: + - '"0x8D910CF733AB2A4"' + last-modified: + - Thu, 06 May 2021 20:42:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:42:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:42:23 GMT + etag: + - '"0x8D910CF73CEE2AA"' + last-modified: + - Thu, 06 May 2021 20:42:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 8bd61ef1-b071-47bd-bf50-d73b40b94455 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:42:24 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8bd61ef1-b071-47bd-bf50-d73b40b94455 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:24.476648Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 92759bf0-7266-4d81-a86a-777932369db0 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:24 GMT + etag: + - '"2F8A1A12DACC6D4773581F82437985774C3E48A769D56FB8D410EFC17A15D56F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 92759bf0-7266-4d81-a86a-777932369db0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:24.476648Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - bf0406d2-51f2-4870-9375-3374f2d92281 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:24 GMT + etag: + - '"2F8A1A12DACC6D4773581F82437985774C3E48A769D56FB8D410EFC17A15D56F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bf0406d2-51f2-4870-9375-3374f2d92281 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:24.476648Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - d75db426-894c-4126-9b69-04eb18df864f + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:25 GMT + etag: + - '"2F8A1A12DACC6D4773581F82437985774C3E48A769D56FB8D410EFC17A15D56F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d75db426-894c-4126-9b69-04eb18df864f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:24.476648Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 238b225f-5919-4e3a-952a-a668d76ed9e3 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:26 GMT + etag: + - '"2F8A1A12DACC6D4773581F82437985774C3E48A769D56FB8D410EFC17A15D56F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 238b225f-5919-4e3a-952a-a668d76ed9e3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:24.476648Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 8a1f10b0-1df0-4e08-9de1-5e6f742d6bae + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:28 GMT + etag: + - '"2F8A1A12DACC6D4773581F82437985774C3E48A769D56FB8D410EFC17A15D56F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8a1f10b0-1df0-4e08-9de1-5e6f742d6bae + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:24.476648Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 9661e959-1598-4d6d-aad0-284af4a6c964 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:29 GMT + etag: + - '"2F8A1A12DACC6D4773581F82437985774C3E48A769D56FB8D410EFC17A15D56F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9661e959-1598-4d6d-aad0-284af4a6c964 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:30.5176278Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1c5a0ce9-9e27-4fec-95a2-82367678b459 + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:30 GMT + etag: + - '"8918B3E1D8D15DC5F5B614D7A0A4A9A19FA149E942FA9850C8D305E318554FBA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1c5a0ce9-9e27-4fec-95a2-82367678b459 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:30.5176278Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - fc736df9-514f-4255-b646-11147139d95d + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:31 GMT + etag: + - '"8918B3E1D8D15DC5F5B614D7A0A4A9A19FA149E942FA9850C8D305E318554FBA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fc736df9-514f-4255-b646-11147139d95d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:30.5176278Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - cea3f321-4a87-4a18-8de5-3acaaac57867 + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:32 GMT + etag: + - '"8918B3E1D8D15DC5F5B614D7A0A4A9A19FA149E942FA9850C8D305E318554FBA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cea3f321-4a87-4a18-8de5-3acaaac57867 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:30.5176278Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 9d211844-bc7f-46a4-bdb8-81e9090e6dee + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:33 GMT + etag: + - '"8918B3E1D8D15DC5F5B614D7A0A4A9A19FA149E942FA9850C8D305E318554FBA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9d211844-bc7f-46a4-bdb8-81e9090e6dee + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:35.2134544Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":3,"notYetStarted":7,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f19b5490-9c11-4c40-8df1-3de986f516a8 + cache-control: + - public,max-age=1 + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:34 GMT + etag: + - '"4246BB78F32C07BBCA38DC78E276B89387316B2BF214F69F287F651F77112FFE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f19b5490-9c11-4c40-8df1-3de986f516a8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 9dbd5b29-3df3-4997-b56f-2a2ab85b23fe + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:36 GMT + etag: + - '"E9388BB79112B0565BE75F34FEA94730F7B706B400667DD2C5D716723E1269C7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9dbd5b29-3df3-4997-b56f-2a2ab85b23fe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1806703c-54ea-4a97-8014-8df8af6d879a + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:37 GMT + etag: + - '"E9388BB79112B0565BE75F34FEA94730F7B706B400667DD2C5D716723E1269C7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1806703c-54ea-4a97-8014-8df8af6d879a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - a2aed598-2e6c-4b36-88b9-93c4f2eb2f3e + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:38 GMT + etag: + - '"E9388BB79112B0565BE75F34FEA94730F7B706B400667DD2C5D716723E1269C7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a2aed598-2e6c-4b36-88b9-93c4f2eb2f3e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - d284443d-eb7d-42b1-b333-d3fd1f204090 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:39 GMT + etag: + - '"E9388BB79112B0565BE75F34FEA94730F7B706B400667DD2C5D716723E1269C7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d284443d-eb7d-42b1-b333-d3fd1f204090 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Running","summary":{"total":10,"failed":0,"success":4,"inProgress":6,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + headers: + apim-request-id: + - e8edd515-96be-4da9-af6f-85d9b9df89be + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:40 GMT + etag: + - '"65088CBCD8D40F792C4CAA4C97DF553D303B8830B1F47FC4C8C572B9C80BF331"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e8edd515-96be-4da9-af6f-85d9b9df89be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Running","summary":{"total":10,"failed":0,"success":4,"inProgress":6,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + headers: + apim-request-id: + - 55b7752b-1178-4cc1-ad7e-b8c3b22c2ecc + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:41 GMT + etag: + - '"65088CBCD8D40F792C4CAA4C97DF553D303B8830B1F47FC4C8C572B9C80BF331"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 55b7752b-1178-4cc1-ad7e-b8c3b22c2ecc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Running","summary":{"total":10,"failed":0,"success":8,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}' + headers: + apim-request-id: + - 9feedd9d-1252-42c4-a5b1-d8fad68b6f87 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:43 GMT + etag: + - '"48E79CC4EF8A5BE211CFFA5195E461FA0E715BBCC1775619DDEEC4D3FD6F8504"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9feedd9d-1252-42c4-a5b1-d8fad68b6f87 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514 + response: + body: + string: '{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' + headers: + apim-request-id: + - 70ce5ef6-a538-4c19-a6fe-def4a6d7147a + cache-control: + - public,max-age=1 + content-length: + - '295' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:44 GMT + etag: + - '"B1EDB173A1142F7B188D291539C4FCC9BF410D0F0F4F53A030B44D28C14AF3F5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 70ce5ef6-a538-4c19-a6fe-def4a6d7147a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514/documents?$skip=0&$maxpagesize=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6/eddec4ca-c02e-4499-a8c3-e7aa87feb901.txt","sourcePath":"https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/eddec4ca-c02e-4499-a8c3-e7aa87feb901.txt","createdDateTimeUtc":"2021-05-06T20:42:35.7925023Z","lastActionDateTimeUtc":"2021-05-06T20:42:44.0193679Z","status":"Succeeded","to":"es","progress":1,"id":"00002af2-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6/e2e9b9a6-0bf3-4b8c-b298-acf1e106a72e.txt","sourcePath":"https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/e2e9b9a6-0bf3-4b8c-b298-acf1e106a72e.txt","createdDateTimeUtc":"2021-05-06T20:42:35.7678798Z","lastActionDateTimeUtc":"2021-05-06T20:42:44.0035432Z","status":"Succeeded","to":"es","progress":1,"id":"00002af1-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514/documents?$skip=2&$top=8&$maxpagesize=2"}' + headers: + apim-request-id: + - 3b8e2506-c35d-419b-80d0-c6c2b5006974 + cache-control: + - public,max-age=1 + content-length: + - '1195' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:44 GMT + etag: + - '"CEAC4636BC9757FD2EE698964404C956FE5C165DB3E4E8F24241D1F452D7B972"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3b8e2506-c35d-419b-80d0-c6c2b5006974 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514/documents?$skip=2&$top=8&$maxpagesize=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6/a7dca056-6aa5-4c88-b67c-f1d5ddde53e2.txt","sourcePath":"https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/a7dca056-6aa5-4c88-b67c-f1d5ddde53e2.txt","createdDateTimeUtc":"2021-05-06T20:42:35.4265835Z","lastActionDateTimeUtc":"2021-05-06T20:42:43.2034164Z","status":"Succeeded","to":"es","progress":1,"id":"00002af0-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6/7fabdad9-f14d-417d-a3b9-58f019a8924b.txt","sourcePath":"https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/7fabdad9-f14d-417d-a3b9-58f019a8924b.txt","createdDateTimeUtc":"2021-05-06T20:42:35.2593766Z","lastActionDateTimeUtc":"2021-05-06T20:42:43.1847933Z","status":"Succeeded","to":"es","progress":1,"id":"00002aef-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514/documents?$skip=4&$top=6&$maxpagesize=2"}' + headers: + apim-request-id: + - 1464c098-8825-4bd9-af16-40a78e5a1516 + cache-control: + - public,max-age=1 + content-length: + - '1195' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:44 GMT + etag: + - '"CF7644AFFB0A442F6CFDBD39668E9CA387962B5F6932D284A9D4496AF2005AEF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1464c098-8825-4bd9-af16-40a78e5a1516 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514/documents?$skip=4&$top=6&$maxpagesize=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6/4a177512-06d1-4338-a8c3-29ce571e913a.txt","sourcePath":"https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/4a177512-06d1-4338-a8c3-29ce571e913a.txt","createdDateTimeUtc":"2021-05-06T20:42:35.2543248Z","lastActionDateTimeUtc":"2021-05-06T20:42:43.1823539Z","status":"Succeeded","to":"es","progress":1,"id":"00002aee-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6/397d8232-9e90-4744-a620-c155c5e96e90.txt","sourcePath":"https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/397d8232-9e90-4744-a620-c155c5e96e90.txt","createdDateTimeUtc":"2021-05-06T20:42:35.2489Z","lastActionDateTimeUtc":"2021-05-06T20:42:43.1823149Z","status":"Succeeded","to":"es","progress":1,"id":"00002aed-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514/documents?$skip=6&$top=4&$maxpagesize=2"}' + headers: + apim-request-id: + - fa8acafd-0fd8-4be9-8410-5c77655c79ef + cache-control: + - public,max-age=1 + content-length: + - '1192' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:44 GMT + etag: + - '"04FCCB1AEF313083A782CABA9C6303D9F2F29154AD0D63F9A3E9F5F1E83ABA41"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fa8acafd-0fd8-4be9-8410-5c77655c79ef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514/documents?$skip=6&$top=4&$maxpagesize=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6/279b802d-70a0-4bee-95b4-27a476ef1508.txt","sourcePath":"https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/279b802d-70a0-4bee-95b4-27a476ef1508.txt","createdDateTimeUtc":"2021-05-06T20:42:34.7194458Z","lastActionDateTimeUtc":"2021-05-06T20:42:40.3738615Z","status":"Succeeded","to":"es","progress":1,"id":"00002aec-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6/1f76fc6c-596c-4bf4-affe-faef9c72b3b8.txt","sourcePath":"https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/1f76fc6c-596c-4bf4-affe-faef9c72b3b8.txt","createdDateTimeUtc":"2021-05-06T20:42:34.712744Z","lastActionDateTimeUtc":"2021-05-06T20:42:40.3140115Z","status":"Succeeded","to":"es","progress":1,"id":"00002aeb-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514/documents?$skip=8&$top=2&$maxpagesize=2"}' + headers: + apim-request-id: + - 72250482-accb-41d0-a8ed-48720857f2cc + cache-control: + - public,max-age=1 + content-length: + - '1194' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:44 GMT + etag: + - '"F7B596E71396E70E451302122B627E717B7329315511F8206BD536C9941ED6EB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 72250482-accb-41d0-a8ed-48720857f2cc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0c2e33d0-357c-47b7-8be3-1f6d2a3f0514/documents?$skip=8&$top=2&$maxpagesize=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6/0c149d05-df8e-406d-bdde-a62557b2ec66.txt","sourcePath":"https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/0c149d05-df8e-406d-bdde-a62557b2ec66.txt","createdDateTimeUtc":"2021-05-06T20:42:34.7063771Z","lastActionDateTimeUtc":"2021-05-06T20:42:40.3755053Z","status":"Succeeded","to":"es","progress":1,"id":"00002aea-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target4232b2e1-0289-4a6c-9995-09eddebd21b6/0b1986af-7b9e-4b8b-9d55-f0fa63a3a8e7.txt","sourcePath":"https://redacted.blob.core.windows.net/src3e4e4a04-deeb-41fa-9fcb-a31f8fdb97d6/0b1986af-7b9e-4b8b-9d55-f0fa63a3a8e7.txt","createdDateTimeUtc":"2021-05-06T20:42:34.702733Z","lastActionDateTimeUtc":"2021-05-06T20:42:40.3734425Z","status":"Succeeded","to":"es","progress":1,"id":"00002ae9-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: + - 7e2c5c96-06aa-40f8-92b5-0d321a457ce4 + cache-control: + - public,max-age=1 + content-length: + - '1002' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:45 GMT + etag: + - '"E901E1A5518DDB7A3B32175BE7F494E2DB46F61B82ED7348897A44435A4235AD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7e2c5c96-06aa-40f8-92b5-0d321a457ce4 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_with_skip.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_with_skip.yaml new file mode 100644 index 000000000000..f3cd6693e259 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses.test_list_document_statuses_with_skip.yaml @@ -0,0 +1,1422 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:42:45 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:42:45 GMT + etag: + - '"0x8D910CF81510A8E"' + last-modified: + - Thu, 06 May 2021 20:42:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/f2447c1d-67b8-4b78-abba-b369d853112c.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:45 GMT + etag: + - '"0x8D910CF8176CC07"' + last-modified: + - Thu, 06 May 2021 20:42:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/abc74090-07b0-4188-9643-9838cf35148b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:46 GMT + etag: + - '"0x8D910CF819AD56B"' + last-modified: + - Thu, 06 May 2021 20:42:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/9bc1d8e4-6168-4bdc-91ef-3189d3f65441.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:46 GMT + etag: + - '"0x8D910CF81C261C7"' + last-modified: + - Thu, 06 May 2021 20:42:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/426b8f0b-51a0-462c-80c5-46f6fdffa30c.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:46 GMT + etag: + - '"0x8D910CF81E7076F"' + last-modified: + - Thu, 06 May 2021 20:42:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/67d4f32c-f717-43a8-bbc3-fab1e8214c46.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:46 GMT + etag: + - '"0x8D910CF820C225F"' + last-modified: + - Thu, 06 May 2021 20:42:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/46648011-1e20-49be-b7ae-59a614fb4759.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:47 GMT + etag: + - '"0x8D910CF82318B81"' + last-modified: + - Thu, 06 May 2021 20:42:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/826a6ffb-abfd-4879-b5cd-d7a8a5e351ae.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:47 GMT + etag: + - '"0x8D910CF82560A14"' + last-modified: + - Thu, 06 May 2021 20:42:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/896c0f74-ff5b-4618-be65-72e385aa0ad0.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:47 GMT + etag: + - '"0x8D910CF82820408"' + last-modified: + - Thu, 06 May 2021 20:42:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/34a08d91-61f6-4893-8346-4c6a270076e4.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:47 GMT + etag: + - '"0x8D910CF82A6A9B9"' + last-modified: + - Thu, 06 May 2021 20:42:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:42:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/13f18d0d-4d9b-48a7-8fad-806e004dfcde.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:42:48 GMT + etag: + - '"0x8D910CF82CC8815"' + last-modified: + - Thu, 06 May 2021 20:42:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:42:49 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target28b3245a-8aee-4e3b-ae7f-6df1f0f12747?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:42:49 GMT + etag: + - '"0x8D910CF836DCC4E"' + last-modified: + - Thu, 06 May 2021 20:42:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target28b3245a-8aee-4e3b-ae7f-6df1f0f12747?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 8abb10a7-68da-48ef-aa72-8629cca640aa + content-length: + - '0' + date: + - Thu, 06 May 2021 20:42:50 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8abb10a7-68da-48ef-aa72-8629cca640aa + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:42:50.4164484Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 91359f67-cffd-4741-9a76-5bca72f7e194 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:50 GMT + etag: + - '"7646F2511CADDAB875ABCF695E7CFD44EDE31786D6C71851A63D688BB691DC47"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 91359f67-cffd-4741-9a76-5bca72f7e194 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:42:50.4164484Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 804dc86e-8650-4cff-9261-3a01e85c1ce3 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:50 GMT + etag: + - '"7646F2511CADDAB875ABCF695E7CFD44EDE31786D6C71851A63D688BB691DC47"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 804dc86e-8650-4cff-9261-3a01e85c1ce3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:42:50.4164484Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 868ecc5b-d7c1-445b-a1bc-745c582d0d8d + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:51 GMT + etag: + - '"7646F2511CADDAB875ABCF695E7CFD44EDE31786D6C71851A63D688BB691DC47"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 868ecc5b-d7c1-445b-a1bc-745c582d0d8d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:42:50.4164484Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 77d7b0de-62f6-4639-a9d6-6cc1b07e1363 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:52 GMT + etag: + - '"7646F2511CADDAB875ABCF695E7CFD44EDE31786D6C71851A63D688BB691DC47"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 77d7b0de-62f6-4639-a9d6-6cc1b07e1363 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:42:50.4164484Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1c895f52-37f9-43b3-9a9b-ae0bba313720 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:53 GMT + etag: + - '"7646F2511CADDAB875ABCF695E7CFD44EDE31786D6C71851A63D688BB691DC47"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1c895f52-37f9-43b3-9a9b-ae0bba313720 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:42:50.4164484Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - dd848387-38d4-4499-b51e-9b89b07c0cc5 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:55 GMT + etag: + - '"7646F2511CADDAB875ABCF695E7CFD44EDE31786D6C71851A63D688BB691DC47"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dd848387-38d4-4499-b51e-9b89b07c0cc5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:42:50.4164484Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - a12edd8d-54ba-4dbd-94b4-3d9f01a8144d + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:56 GMT + etag: + - '"7646F2511CADDAB875ABCF695E7CFD44EDE31786D6C71851A63D688BB691DC47"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a12edd8d-54ba-4dbd-94b4-3d9f01a8144d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:42:56.5525183Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - af6f762f-5af8-4c65-888f-0d04660e878a + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:57 GMT + etag: + - '"34C8C96F773C77A794500CF9382C00B3B89A947ACD7E58A822F02D885BE70038"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - af6f762f-5af8-4c65-888f-0d04660e878a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:42:56.5525183Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f2e6298f-ab5c-4a61-861b-dcd4ec981531 + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:58 GMT + etag: + - '"34C8C96F773C77A794500CF9382C00B3B89A947ACD7E58A822F02D885BE70038"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f2e6298f-ab5c-4a61-861b-dcd4ec981531 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:42:56.5525183Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - fa67cb63-70cd-4cbb-9fd8-d4eb24a4977e + cache-control: + - public,max-age=1 + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:42:59 GMT + etag: + - '"34C8C96F773C77A794500CF9382C00B3B89A947ACD7E58A822F02D885BE70038"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fa67cb63-70cd-4cbb-9fd8-d4eb24a4977e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:00.9060699Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":8,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - d88ace60-2640-48df-8927-fe2d020933d5 + cache-control: + - public,max-age=1 + content-length: + - '290' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:43:00 GMT + etag: + - '"2A53CCCDCC7720294E73FD27B49592E65E86238E475D9F7B7B4F93D49B553886"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d88ace60-2640-48df-8927-fe2d020933d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 581a4552-df0c-4651-bc53-4e27affb288f + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:43:01 GMT + etag: + - '"50AEEDF6C3523F35CA21D352C5339581534F05970DC8EA9F0FD864B55648B40E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 581a4552-df0c-4651-bc53-4e27affb288f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 3f126cd3-10fe-43e7-bd74-0f1c92b5dc3a + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:43:03 GMT + etag: + - '"50AEEDF6C3523F35CA21D352C5339581534F05970DC8EA9F0FD864B55648B40E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3f126cd3-10fe-43e7-bd74-0f1c92b5dc3a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 6d336833-340e-4abe-b50c-b073216f6eeb + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:43:04 GMT + etag: + - '"50AEEDF6C3523F35CA21D352C5339581534F05970DC8EA9F0FD864B55648B40E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6d336833-340e-4abe-b50c-b073216f6eeb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Running","summary":{"total":10,"failed":0,"success":5,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: + - d3349af6-46fb-4fc7-a1b9-718bfcf0f941 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:43:05 GMT + etag: + - '"763E97D512645632FFBD59A785871C42AC51631E24A39FB992E0A7F47DB0735A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d3349af6-46fb-4fc7-a1b9-718bfcf0f941 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d + response: + body: + string: '{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' + headers: + apim-request-id: + - d8708ba2-3389-4d4a-b6dc-09fecb4ee8e5 + cache-control: + - public,max-age=1 + content-length: + - '295' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:43:06 GMT + etag: + - '"817C0E072DE11733FE405145F5F39CB5B9DDE639A598D1B9DDCCC8CCB7AF54D9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d8708ba2-3389-4d4a-b6dc-09fecb4ee8e5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/cf37f4a8-b52d-403a-9597-0b2247a6d95d/documents?$skip=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target28b3245a-8aee-4e3b-ae7f-6df1f0f12747/9bc1d8e4-6168-4bdc-91ef-3189d3f65441.txt","sourcePath":"https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/9bc1d8e4-6168-4bdc-91ef-3189d3f65441.txt","createdDateTimeUtc":"2021-05-06T20:43:00.3774876Z","lastActionDateTimeUtc":"2021-05-06T20:43:05.8699782Z","status":"Succeeded","to":"es","progress":1,"id":"00002afa-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target28b3245a-8aee-4e3b-ae7f-6df1f0f12747/896c0f74-ff5b-4618-be65-72e385aa0ad0.txt","sourcePath":"https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/896c0f74-ff5b-4618-be65-72e385aa0ad0.txt","createdDateTimeUtc":"2021-05-06T20:43:00.3122917Z","lastActionDateTimeUtc":"2021-05-06T20:43:05.8969167Z","status":"Succeeded","to":"es","progress":1,"id":"00002af9-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target28b3245a-8aee-4e3b-ae7f-6df1f0f12747/826a6ffb-abfd-4879-b5cd-d7a8a5e351ae.txt","sourcePath":"https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/826a6ffb-abfd-4879-b5cd-d7a8a5e351ae.txt","createdDateTimeUtc":"2021-05-06T20:43:00.3042135Z","lastActionDateTimeUtc":"2021-05-06T20:43:05.8495759Z","status":"Succeeded","to":"es","progress":1,"id":"00002af8-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target28b3245a-8aee-4e3b-ae7f-6df1f0f12747/67d4f32c-f717-43a8-bbc3-fab1e8214c46.txt","sourcePath":"https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/67d4f32c-f717-43a8-bbc3-fab1e8214c46.txt","createdDateTimeUtc":"2021-05-06T20:43:00.2826073Z","lastActionDateTimeUtc":"2021-05-06T20:43:05.9536588Z","status":"Succeeded","to":"es","progress":1,"id":"00002af7-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target28b3245a-8aee-4e3b-ae7f-6df1f0f12747/46648011-1e20-49be-b7ae-59a614fb4759.txt","sourcePath":"https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/46648011-1e20-49be-b7ae-59a614fb4759.txt","createdDateTimeUtc":"2021-05-06T20:42:59.7433293Z","lastActionDateTimeUtc":"2021-05-06T20:43:05.1005701Z","status":"Succeeded","to":"es","progress":1,"id":"00002af6-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target28b3245a-8aee-4e3b-ae7f-6df1f0f12747/426b8f0b-51a0-462c-80c5-46f6fdffa30c.txt","sourcePath":"https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/426b8f0b-51a0-462c-80c5-46f6fdffa30c.txt","createdDateTimeUtc":"2021-05-06T20:42:59.73881Z","lastActionDateTimeUtc":"2021-05-06T20:43:05.0748139Z","status":"Succeeded","to":"es","progress":1,"id":"00002af5-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target28b3245a-8aee-4e3b-ae7f-6df1f0f12747/34a08d91-61f6-4893-8346-4c6a270076e4.txt","sourcePath":"https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/34a08d91-61f6-4893-8346-4c6a270076e4.txt","createdDateTimeUtc":"2021-05-06T20:42:59.7275531Z","lastActionDateTimeUtc":"2021-05-06T20:43:05.0902174Z","status":"Succeeded","to":"es","progress":1,"id":"00002af4-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target28b3245a-8aee-4e3b-ae7f-6df1f0f12747/13f18d0d-4d9b-48a7-8fad-806e004dfcde.txt","sourcePath":"https://redacted.blob.core.windows.net/src357fab45-ff9a-48c3-9c65-3c3f6d6e7715/13f18d0d-4d9b-48a7-8fad-806e004dfcde.txt","createdDateTimeUtc":"2021-05-06T20:42:59.7250299Z","lastActionDateTimeUtc":"2021-05-06T20:43:05.1595601Z","status":"Succeeded","to":"es","progress":1,"id":"00002af3-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: + - e18bced5-9bfa-4d1b-9e7e-c2824fecf4bc + cache-control: + - public,max-age=1 + content-length: + - '3977' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:43:06 GMT + etag: + - '"1B8D8BC1710747578029428E483911AEE6DECE19D8C2A3DA0AC40D696BD23270"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e18bced5-9bfa-4d1b-9e7e-c2824fecf4bc + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses.yaml new file mode 100644 index 000000000000..c41ef200d8b1 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses.yaml @@ -0,0 +1,674 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:43:07 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:43:07 GMT + etag: + - '"0x8D910CF8E46BC38"' + last-modified: + - Thu, 06 May 2021 20:43:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:08 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8/7b152761-dd0b-4ea9-99f9-f47d7c7ec637.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:07 GMT + etag: + - '"0x8D910CF8E765B50"' + last-modified: + - Thu, 06 May 2021 20:43:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:08 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8/8e55d9c1-1850-4b88-9c49-56b54815842e.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:08 GMT + etag: + - '"0x8D910CF8E99C83A"' + last-modified: + - Thu, 06 May 2021 20:43:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:08 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8/20d1cb6f-3771-4326-96be-0baf0d2152ae.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:08 GMT + etag: + - '"0x8D910CF8EBCE6FB"' + last-modified: + - Thu, 06 May 2021 20:43:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8/f7f1fa4e-4b1f-4b67-99e4-a6eaf22fd5a3.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:08 GMT + etag: + - '"0x8D910CF8EE13E75"' + last-modified: + - Thu, 06 May 2021 20:43:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8/b66b792c-e12e-405a-8ffc-e7ca9f64161b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:08 GMT + etag: + - '"0x8D910CF8F04AB64"' + last-modified: + - Thu, 06 May 2021 20:43:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:43:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target87bcbfe6-db7f-4e7b-8fb2-4102aa09482f?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:43:09 GMT + etag: + - '"0x8D910CF8F914FF4"' + last-modified: + - Thu, 06 May 2021 20:43:10 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target87bcbfe6-db7f-4e7b-8fb2-4102aa09482f?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: f56642d7-6fc9-4a51-95a0-02b2ec0228d6 + content-length: '0' + date: Thu, 06 May 2021 20:43:10 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f56642d7-6fc9-4a51-95a0-02b2ec0228d6 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + response: + body: + string: '{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:10.8191792Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b4f689a4-e5d6-4784-ab5b-b7ea995a3f4b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:10 GMT + etag: '"2FC64457ACC442DE0F2A7C221BCBCCEFF60869165D8C3C5901DD33A56A4952CC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b4f689a4-e5d6-4784-ab5b-b7ea995a3f4b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + response: + body: + string: '{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:10.8191792Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: fe8896e3-e9c8-46e1-9cc9-d34beec321e9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:10 GMT + etag: '"2FC64457ACC442DE0F2A7C221BCBCCEFF60869165D8C3C5901DD33A56A4952CC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fe8896e3-e9c8-46e1-9cc9-d34beec321e9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + response: + body: + string: '{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:10.8191792Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 2fabec30-b98d-4453-a519-fb114a902f3c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:11 GMT + etag: '"2FC64457ACC442DE0F2A7C221BCBCCEFF60869165D8C3C5901DD33A56A4952CC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2fabec30-b98d-4453-a519-fb114a902f3c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + response: + body: + string: '{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:10.8191792Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4db7e613-3e91-4fee-bb4a-ca78230f3c1c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:12 GMT + etag: '"2FC64457ACC442DE0F2A7C221BCBCCEFF60869165D8C3C5901DD33A56A4952CC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4db7e613-3e91-4fee-bb4a-ca78230f3c1c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + response: + body: + string: '{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:13.9593009Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: ad42f6cf-dcbd-4e06-81c3-6c939d248ac9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:13 GMT + etag: '"C68D0E609934EE0CCD71EA1A2150C227294E107631403F663A0E88FA651261BA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ad42f6cf-dcbd-4e06-81c3-6c939d248ac9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + response: + body: + string: '{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:13.9593009Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 6e063dfa-1517-4ac1-92cc-334aa1105775 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:15 GMT + etag: '"C68D0E609934EE0CCD71EA1A2150C227294E107631403F663A0E88FA651261BA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6e063dfa-1517-4ac1-92cc-334aa1105775 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + response: + body: + string: '{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.4686228Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":4,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 344aea40-f35a-4605-8280-85fdaffb0110 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:16 GMT + etag: '"A8E8886D9F821DEA27C5E36D415574894D73C3492AE5CFAC7F537090DE16327A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 344aea40-f35a-4605-8280-85fdaffb0110 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + response: + body: + string: '{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 19e50c9d-2fe0-4460-9649-56d14a7ca579 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:17 GMT + etag: '"4026C59827DFCD9BCE749D199D32411CFF173D124FB2691FBDE0F3672A8415DE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 19e50c9d-2fe0-4460-9649-56d14a7ca579 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + response: + body: + string: '{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Running","summary":{"total":5,"failed":0,"success":3,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}' + headers: + apim-request-id: aa06b579-8a6e-4235-8d56-5a9923aaf995 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:18 GMT + etag: '"2DAFCD151E4D243DAB5DEB677E52794F582AFCA55C874EB282A9E712373DE361"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: aa06b579-8a6e-4235-8d56-5a9923aaf995 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 + response: + body: + string: '{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: 2cd5c818-3289-4018-8b9b-e9dcc774b4f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:19 GMT + etag: '"EE572FC524D4F85F52F6AF6093C02F7EA15434F57F15BC77B4AA02726C4CC5F8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2cd5c818-3289-4018-8b9b-e9dcc774b4f4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610/documents?$skip=0 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target87bcbfe6-db7f-4e7b-8fb2-4102aa09482f/f7f1fa4e-4b1f-4b67-99e4-a6eaf22fd5a3.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8/f7f1fa4e-4b1f-4b67-99e4-a6eaf22fd5a3.txt","createdDateTimeUtc":"2021-05-06T20:43:16.4898059Z","lastActionDateTimeUtc":"2021-05-06T20:43:19.9559382Z","status":"Succeeded","to":"es","progress":1,"id":"00002b01-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target87bcbfe6-db7f-4e7b-8fb2-4102aa09482f/8e55d9c1-1850-4b88-9c49-56b54815842e.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8/8e55d9c1-1850-4b88-9c49-56b54815842e.txt","createdDateTimeUtc":"2021-05-06T20:43:15.9635846Z","lastActionDateTimeUtc":"2021-05-06T20:43:19.1721072Z","status":"Succeeded","to":"es","progress":1,"id":"00002aff-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target87bcbfe6-db7f-4e7b-8fb2-4102aa09482f/20d1cb6f-3771-4326-96be-0baf0d2152ae.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8/20d1cb6f-3771-4326-96be-0baf0d2152ae.txt","createdDateTimeUtc":"2021-05-06T20:43:15.963225Z","lastActionDateTimeUtc":"2021-05-06T20:43:19.1981362Z","status":"Succeeded","to":"es","progress":1,"id":"00002afd-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target87bcbfe6-db7f-4e7b-8fb2-4102aa09482f/b66b792c-e12e-405a-8ffc-e7ca9f64161b.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8/b66b792c-e12e-405a-8ffc-e7ca9f64161b.txt","createdDateTimeUtc":"2021-05-06T20:43:15.9458059Z","lastActionDateTimeUtc":"2021-05-06T20:43:19.1634454Z","status":"Succeeded","to":"es","progress":1,"id":"00002b00-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target87bcbfe6-db7f-4e7b-8fb2-4102aa09482f/7b152761-dd0b-4ea9-99f9-f47d7c7ec637.txt","sourcePath":"https://redacted.blob.core.windows.net/srcc10345a4-2407-42a7-b111-8b73801d56f8/7b152761-dd0b-4ea9-99f9-f47d7c7ec637.txt","createdDateTimeUtc":"2021-05-06T20:43:15.9337447Z","lastActionDateTimeUtc":"2021-05-06T20:43:19.18128Z","status":"Succeeded","to":"es","progress":1,"id":"00002afe-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: da32774c-d765-47da-ab20-ef2d5baf7851 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:19 GMT + etag: '"5A6C61041C081B5677C484DD2B26657FD2CF0BE21461FD9FC27B4E4E7018632A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: da32774c-d765-47da-ab20-ef2d5baf7851 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d664468b-4692-4a82-a4e8-a74c7287d610/documents?$skip=0 +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_filter_by_ids.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_filter_by_ids.yaml new file mode 100644 index 000000000000..14dc97e0655d --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_filter_by_ids.yaml @@ -0,0 +1,1428 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:43:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:43:20 GMT + etag: + - '"0x8D910CF963F4F72"' + last-modified: + - Thu, 06 May 2021 20:43:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/78ce80dc-4814-4369-bca7-e97cdb16b0e7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:21 GMT + etag: + - '"0x8D910CF9662ED94"' + last-modified: + - Thu, 06 May 2021 20:43:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/fb08461c-4447-4a37-aa03-aef9225b187b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:21 GMT + etag: + - '"0x8D910CF9685E537"' + last-modified: + - Thu, 06 May 2021 20:43:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/4cc09504-0bf8-47d5-904c-21a71abf0805.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:21 GMT + etag: + - '"0x8D910CF96A9EE83"' + last-modified: + - Thu, 06 May 2021 20:43:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/88252c31-ff50-4afc-81b6-c35afb890b27.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:21 GMT + etag: + - '"0x8D910CF96CE460A"' + last-modified: + - Thu, 06 May 2021 20:43:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/5eb28712-873c-40eb-b83c-ac5995640abc.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:22 GMT + etag: + - '"0x8D910CF96F18BE0"' + last-modified: + - Thu, 06 May 2021 20:43:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/6c2d7677-fa4f-4b87-847a-6698c74e696a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:22 GMT + etag: + - '"0x8D910CF9714F8C6"' + last-modified: + - Thu, 06 May 2021 20:43:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/06214b7f-6399-4b5e-8d0e-acc67c3e1f63.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:22 GMT + etag: + - '"0x8D910CF9737F07E"' + last-modified: + - Thu, 06 May 2021 20:43:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/5e2494f3-6f3a-4b2c-8671-4bac7785db57.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:22 GMT + etag: + - '"0x8D910CF975DCEE2"' + last-modified: + - Thu, 06 May 2021 20:43:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/84dc8edc-9f94-4a47-aa36-03377e48f2d4.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:22 GMT + etag: + - '"0x8D910CF97822670"' + last-modified: + - Thu, 06 May 2021 20:43:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/bbbcce47-56e4-482a-afa8-1a48ae8f0890.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:23 GMT + etag: + - '"0x8D910CF97A67DF1"' + last-modified: + - Thu, 06 May 2021 20:43:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/806e074d-3d34-407a-a292-e8ba9da9d867.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:23 GMT + etag: + - '"0x8D910CF97CA3927"' + last-modified: + - Thu, 06 May 2021 20:43:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/759ea564-d8fa-4009-9347-fbc8f9067e0f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:23 GMT + etag: + - '"0x8D910CF97EF2CF9"' + last-modified: + - Thu, 06 May 2021 20:43:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/e2e441c2-52a4-4edf-89c3-c8b4ffaf3fc1.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:23 GMT + etag: + - '"0x8D910CF98135D54"' + last-modified: + - Thu, 06 May 2021 20:43:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/33310659-c437-4144-ba3e-d138284852cf.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:24 GMT + etag: + - '"0x8D910CF98367C23"' + last-modified: + - Thu, 06 May 2021 20:43:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/0e5d6b57-ef9e-44d7-89f4-261993cbd25f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:24 GMT + etag: + - '"0x8D910CF985C0C51"' + last-modified: + - Thu, 06 May 2021 20:43:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:43:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:43:25 GMT + etag: + - '"0x8D910CF98ECFC2A"' + last-modified: + - Thu, 06 May 2021 20:43:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '492' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 5f6afd95-8490-40e7-a744-e4311f94cbe6 + content-length: '0' + date: Thu, 06 May 2021 20:43:26 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5f6afd95-8490-40e7-a744-e4311f94cbe6 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:26.6064549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 574446f9-92d7-4bc8-a3c5-7e6dfd4a4ab3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:26 GMT + etag: '"C0268625D2E2933A19F7ED350196FDD86781F8670107F8BF9E3A2A859A4902B7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 574446f9-92d7-4bc8-a3c5-7e6dfd4a4ab3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:26.6064549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 3d811d3b-3602-4241-9368-7a426f68a9d8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:26 GMT + etag: '"C0268625D2E2933A19F7ED350196FDD86781F8670107F8BF9E3A2A859A4902B7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3d811d3b-3602-4241-9368-7a426f68a9d8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:26.6064549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: ef49f658-904a-4b79-966c-0a5f79486155 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:27 GMT + etag: '"C0268625D2E2933A19F7ED350196FDD86781F8670107F8BF9E3A2A859A4902B7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ef49f658-904a-4b79-966c-0a5f79486155 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:26.6064549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: f00fd31b-99be-4a74-9858-2ac4fcfaf742 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:28 GMT + etag: '"C0268625D2E2933A19F7ED350196FDD86781F8670107F8BF9E3A2A859A4902B7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f00fd31b-99be-4a74-9858-2ac4fcfaf742 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:26.6064549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 5d1ba80d-9d15-4db3-a8f4-8158af816468 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:29 GMT + etag: '"C0268625D2E2933A19F7ED350196FDD86781F8670107F8BF9E3A2A859A4902B7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5d1ba80d-9d15-4db3-a8f4-8158af816468 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:26.6064549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: a6d0e67e-8968-4999-bc37-feaf736fc892 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:31 GMT + etag: '"C0268625D2E2933A19F7ED350196FDD86781F8670107F8BF9E3A2A859A4902B7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a6d0e67e-8968-4999-bc37-feaf736fc892 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:26.6064549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 205eaf27-1823-4c8c-821b-3111c142582e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:32 GMT + etag: '"C0268625D2E2933A19F7ED350196FDD86781F8670107F8BF9E3A2A859A4902B7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 205eaf27-1823-4c8c-821b-3111c142582e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:26.6064549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: e4ef5ec9-4be9-4509-a8ef-83b768ffd345 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:33 GMT + etag: '"C0268625D2E2933A19F7ED350196FDD86781F8670107F8BF9E3A2A859A4902B7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e4ef5ec9-4be9-4509-a8ef-83b768ffd345 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:26.6064549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 1d26d23a-adc8-45bb-8794-85ed3a634d7a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:34 GMT + etag: '"C0268625D2E2933A19F7ED350196FDD86781F8670107F8BF9E3A2A859A4902B7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1d26d23a-adc8-45bb-8794-85ed3a634d7a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:35.2270754Z","status":"NotStarted","summary":{"total":15,"failed":0,"success":0,"inProgress":0,"notYetStarted":15,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: e252b77c-c837-4931-b2cf-62c7409b25dc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:35 GMT + etag: '"DF2C490DACAAB5A96957AB730A271FCE5E0C4A7FDDB1917629EFFCB02EFA06F4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e252b77c-c837-4931-b2cf-62c7409b25dc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:37.1370554Z","status":"Running","summary":{"total":15,"failed":0,"success":0,"inProgress":4,"notYetStarted":11,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: af410f14-9740-420c-8115-974047092f15 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:36 GMT + etag: '"2CA50F210C51141F79042EE5A2AE08228EDB596340F218DF52B6F47B81BFB042"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: af410f14-9740-420c-8115-974047092f15 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.3276374Z","status":"Running","summary":{"total":15,"failed":0,"success":0,"inProgress":12,"notYetStarted":3,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4c98b4e0-84d5-4410-929d-8ab7e742c7d7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:37 GMT + etag: '"7AB85EB4174CD94221C6FB9BF2ADB93903439F0A96BC877DD7360518108F3D8A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4c98b4e0-84d5-4410-929d-8ab7e742c7d7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Running","summary":{"total":15,"failed":0,"success":0,"inProgress":15,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 0acfd724-9ece-488f-a5c0-23740a0729da + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:39 GMT + etag: '"9C75E634639ED75A019F2E2AC921C2F086BD9800ED586010BD030175D8E6B5D0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0acfd724-9ece-488f-a5c0-23740a0729da + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Running","summary":{"total":15,"failed":0,"success":0,"inProgress":15,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 79618ec8-016f-47dd-9dfa-d3cf6fb34c4b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:40 GMT + etag: '"9C75E634639ED75A019F2E2AC921C2F086BD9800ED586010BD030175D8E6B5D0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 79618ec8-016f-47dd-9dfa-d3cf6fb34c4b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Running","summary":{"total":15,"failed":0,"success":4,"inProgress":11,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + headers: + apim-request-id: bc16175f-0ef7-4062-a514-1f677806ab8c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:41 GMT + etag: '"CCD9127D98DEF58473223F02A2B9E814706B5833DDE05CFE55CAFB97D1F976F6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bc16175f-0ef7-4062-a514-1f677806ab8c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Running","summary":{"total":15,"failed":0,"success":8,"inProgress":7,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}' + headers: + apim-request-id: 6ebcde60-374b-4a08-a1a2-4d61bb94080b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:42 GMT + etag: '"39DDD682DA894ED44961EC115F2A9E91FF599E18450897992CF1292EB4400FF8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6ebcde60-374b-4a08-a1a2-4d61bb94080b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Running","summary":{"total":15,"failed":0,"success":13,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":351}}' + headers: + apim-request-id: 321dcb4b-b718-444a-bf11-8f6c9d6b1fd0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:43 GMT + etag: '"47389362DC79A47F43EC6C1080F55E5813E7B6C4EB5110356D37D8DA42A6FD5E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 321dcb4b-b718-444a-bf11-8f6c9d6b1fd0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 + response: + body: + string: '{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}' + headers: + apim-request-id: 2dd9a0e5-1de8-41f0-95aa-dc0c11369fc4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:44 GMT + etag: '"575434752FB5CDF1CB04F298F0DC1E51586EACEEA9B053BFA35D4F0AB264D1DC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2dd9a0e5-1de8-41f0-95aa-dc0c11369fc4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6/documents?$skip=0 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/fb08461c-4447-4a37-aa03-aef9225b187b.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/fb08461c-4447-4a37-aa03-aef9225b187b.txt","createdDateTimeUtc":"2021-05-06T20:43:38.2711948Z","lastActionDateTimeUtc":"2021-05-06T20:43:44.2352171Z","status":"Succeeded","to":"es","progress":1,"id":"00002b10-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/e2e441c2-52a4-4edf-89c3-c8b4ffaf3fc1.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/e2e441c2-52a4-4edf-89c3-c8b4ffaf3fc1.txt","createdDateTimeUtc":"2021-05-06T20:43:38.2118916Z","lastActionDateTimeUtc":"2021-05-06T20:43:44.2546584Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/bbbcce47-56e4-482a-afa8-1a48ae8f0890.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/bbbcce47-56e4-482a-afa8-1a48ae8f0890.txt","createdDateTimeUtc":"2021-05-06T20:43:38.1631689Z","lastActionDateTimeUtc":"2021-05-06T20:43:44.2185024Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/88252c31-ff50-4afc-81b6-c35afb890b27.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/88252c31-ff50-4afc-81b6-c35afb890b27.txt","createdDateTimeUtc":"2021-05-06T20:43:37.8551159Z","lastActionDateTimeUtc":"2021-05-06T20:43:43.4298636Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/84dc8edc-9f94-4a47-aa36-03377e48f2d4.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/84dc8edc-9f94-4a47-aa36-03377e48f2d4.txt","createdDateTimeUtc":"2021-05-06T20:43:37.7580447Z","lastActionDateTimeUtc":"2021-05-06T20:43:43.2426647Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/806e074d-3d34-407a-a292-e8ba9da9d867.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/806e074d-3d34-407a-a292-e8ba9da9d867.txt","createdDateTimeUtc":"2021-05-06T20:43:37.7042136Z","lastActionDateTimeUtc":"2021-05-06T20:43:43.2792045Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/78ce80dc-4814-4369-bca7-e97cdb16b0e7.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/78ce80dc-4814-4369-bca7-e97cdb16b0e7.txt","createdDateTimeUtc":"2021-05-06T20:43:37.6520587Z","lastActionDateTimeUtc":"2021-05-06T20:43:43.2226892Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/759ea564-d8fa-4009-9347-fbc8f9067e0f.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/759ea564-d8fa-4009-9347-fbc8f9067e0f.txt","createdDateTimeUtc":"2021-05-06T20:43:37.1823546Z","lastActionDateTimeUtc":"2021-05-06T20:43:42.5271888Z","status":"Succeeded","to":"es","progress":1,"id":"00002b09-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/6c2d7677-fa4f-4b87-847a-6698c74e696a.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/6c2d7677-fa4f-4b87-847a-6698c74e696a.txt","createdDateTimeUtc":"2021-05-06T20:43:37.1783832Z","lastActionDateTimeUtc":"2021-05-06T20:43:42.4998637Z","status":"Succeeded","to":"es","progress":1,"id":"00002b08-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/5eb28712-873c-40eb-b83c-ac5995640abc.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/5eb28712-873c-40eb-b83c-ac5995640abc.txt","createdDateTimeUtc":"2021-05-06T20:43:37.1406889Z","lastActionDateTimeUtc":"2021-05-06T20:43:42.4849456Z","status":"Succeeded","to":"es","progress":1,"id":"00002b07-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/5e2494f3-6f3a-4b2c-8671-4bac7785db57.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/5e2494f3-6f3a-4b2c-8671-4bac7785db57.txt","createdDateTimeUtc":"2021-05-06T20:43:37.1365981Z","lastActionDateTimeUtc":"2021-05-06T20:43:42.4621165Z","status":"Succeeded","to":"es","progress":1,"id":"00002b06-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/4cc09504-0bf8-47d5-904c-21a71abf0805.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/4cc09504-0bf8-47d5-904c-21a71abf0805.txt","createdDateTimeUtc":"2021-05-06T20:43:36.6056258Z","lastActionDateTimeUtc":"2021-05-06T20:43:41.7112985Z","status":"Succeeded","to":"es","progress":1,"id":"00002b05-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/33310659-c437-4144-ba3e-d138284852cf.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/33310659-c437-4144-ba3e-d138284852cf.txt","createdDateTimeUtc":"2021-05-06T20:43:36.5953618Z","lastActionDateTimeUtc":"2021-05-06T20:43:41.7049998Z","status":"Succeeded","to":"es","progress":1,"id":"00002b04-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/0e5d6b57-ef9e-44d7-89f4-261993cbd25f.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/0e5d6b57-ef9e-44d7-89f4-261993cbd25f.txt","createdDateTimeUtc":"2021-05-06T20:43:36.5886082Z","lastActionDateTimeUtc":"2021-05-06T20:43:41.7420073Z","status":"Succeeded","to":"es","progress":1,"id":"00002b03-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/06214b7f-6399-4b5e-8d0e-acc67c3e1f63.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/06214b7f-6399-4b5e-8d0e-acc67c3e1f63.txt","createdDateTimeUtc":"2021-05-06T20:43:36.5860231Z","lastActionDateTimeUtc":"2021-05-06T20:43:41.7841148Z","status":"Succeeded","to":"es","progress":1,"id":"00002b02-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 8a613082-b97e-4539-98ae-9f399b1f425c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:44 GMT + etag: '"C4513D8E1AA82A9AE001992551C95047D75261A3B675FE24B1F5EFD9141AD8D2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8a613082-b97e-4539-98ae-9f399b1f425c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6/documents?$skip=0 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6/documents?$skip=0&ids=00002b10-0000-0000-0000-000000000000,00002b0f-0000-0000-0000-000000000000,00002b0e-0000-0000-0000-000000000000,00002b0d-0000-0000-0000-000000000000,00002b0c-0000-0000-0000-000000000000,00002b0b-0000-0000-0000-000000000000,00002b0a-0000-0000-0000-000000000000 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/fb08461c-4447-4a37-aa03-aef9225b187b.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/fb08461c-4447-4a37-aa03-aef9225b187b.txt","createdDateTimeUtc":"2021-05-06T20:43:38.2711948Z","lastActionDateTimeUtc":"2021-05-06T20:43:44.2352171Z","status":"Succeeded","to":"es","progress":1,"id":"00002b10-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/e2e441c2-52a4-4edf-89c3-c8b4ffaf3fc1.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/e2e441c2-52a4-4edf-89c3-c8b4ffaf3fc1.txt","createdDateTimeUtc":"2021-05-06T20:43:38.2118916Z","lastActionDateTimeUtc":"2021-05-06T20:43:44.2546584Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/bbbcce47-56e4-482a-afa8-1a48ae8f0890.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/bbbcce47-56e4-482a-afa8-1a48ae8f0890.txt","createdDateTimeUtc":"2021-05-06T20:43:38.1631689Z","lastActionDateTimeUtc":"2021-05-06T20:43:44.2185024Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/88252c31-ff50-4afc-81b6-c35afb890b27.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/88252c31-ff50-4afc-81b6-c35afb890b27.txt","createdDateTimeUtc":"2021-05-06T20:43:37.8551159Z","lastActionDateTimeUtc":"2021-05-06T20:43:43.4298636Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/84dc8edc-9f94-4a47-aa36-03377e48f2d4.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/84dc8edc-9f94-4a47-aa36-03377e48f2d4.txt","createdDateTimeUtc":"2021-05-06T20:43:37.7580447Z","lastActionDateTimeUtc":"2021-05-06T20:43:43.2426647Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/806e074d-3d34-407a-a292-e8ba9da9d867.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/806e074d-3d34-407a-a292-e8ba9da9d867.txt","createdDateTimeUtc":"2021-05-06T20:43:37.7042136Z","lastActionDateTimeUtc":"2021-05-06T20:43:43.2792045Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target5ec25c64-13ba-42f2-8c1d-3c4b8a3e2874/78ce80dc-4814-4369-bca7-e97cdb16b0e7.txt","sourcePath":"https://redacted.blob.core.windows.net/src845b9dcc-aca0-450f-8750-4d2aa17a9f9b/78ce80dc-4814-4369-bca7-e97cdb16b0e7.txt","createdDateTimeUtc":"2021-05-06T20:43:37.6520587Z","lastActionDateTimeUtc":"2021-05-06T20:43:43.2226892Z","status":"Succeeded","to":"es","progress":1,"id":"00002b0a-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: ae8bafee-372e-44a8-9d99-8909b28fdbcb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:44 GMT + etag: '"D86D27EF1FBADADEB0E211FAC164839881865C7370E6DB26EEDCDF4EE7828567"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ae8bafee-372e-44a8-9d99-8909b28fdbcb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/08ac41c8-e665-429f-aae3-4a22fc9ffdb6/documents?$skip=0&ids=00002b10-0000-0000-0000-000000000000,00002b0f-0000-0000-0000-000000000000,00002b0e-0000-0000-0000-000000000000,00002b0d-0000-0000-0000-000000000000,00002b0c-0000-0000-0000-000000000000,00002b0b-0000-0000-0000-000000000000,00002b0a-0000-0000-0000-000000000000 +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_filter_by_status.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_filter_by_status.yaml new file mode 100644 index 000000000000..7c0e00122c17 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_filter_by_status.yaml @@ -0,0 +1,1152 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:43:45 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:43:46 GMT + etag: + - '"0x8D910CFA540C74B"' + last-modified: + - Thu, 06 May 2021 20:43:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/4136a4fa-0ec0-4668-880e-7e4b9e3ee6d9.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:46 GMT + etag: + - '"0x8D910CFA56476B9"' + last-modified: + - Thu, 06 May 2021 20:43:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/810a6af2-fa80-464a-8888-0225a47724f7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:47 GMT + etag: + - '"0x8D910CFA5891C5B"' + last-modified: + - Thu, 06 May 2021 20:43:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/ce9eb4c6-7d08-44fe-86b8-b23acfe11669.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:47 GMT + etag: + - '"0x8D910CFA5AE1046"' + last-modified: + - Thu, 06 May 2021 20:43:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/2c0876ac-3309-46bb-8153-e470c3956968.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:47 GMT + etag: + - '"0x8D910CFA5D32B41"' + last-modified: + - Thu, 06 May 2021 20:43:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/d725216c-f10f-4ee5-ad08-31ac7fb73f5f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:47 GMT + etag: + - '"0x8D910CFA5F9A618"' + last-modified: + - Thu, 06 May 2021 20:43:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/e97e82dc-83b9-41e5-bf6d-d183a2434579.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:48 GMT + etag: + - '"0x8D910CFA61D3A2B"' + last-modified: + - Thu, 06 May 2021 20:43:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/f0a6b9d3-9f24-4117-bcea-289457c3d86a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:48 GMT + etag: + - '"0x8D910CFA640CE3C"' + last-modified: + - Thu, 06 May 2021 20:43:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/e205597c-cd63-4749-8b99-d9f1c5873e69.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:48 GMT + etag: + - '"0x8D910CFA6648948"' + last-modified: + - Thu, 06 May 2021 20:43:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/a5ef03bc-a5b1-454c-bcbd-e7eeac8b2d54.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:48 GMT + etag: + - '"0x8D910CFA688928F"' + last-modified: + - Thu, 06 May 2021 20:43:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:43:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/ec87b114-cfef-40fa-8d4a-54aca6570529.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:43:48 GMT + etag: + - '"0x8D910CFA6AC9BEC"' + last-modified: + - Thu, 06 May 2021 20:43:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:43:49 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:43:50 GMT + etag: + - '"0x8D910CFA7519E39"' + last-modified: + - Thu, 06 May 2021 20:43:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '492' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: d6b5a9b9-5c56-4bf0-995f-0ad9bb0b6a06 + content-length: '0' + date: Thu, 06 May 2021 20:43:50 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d6b5a9b9-5c56-4bf0-995f-0ad9bb0b6a06 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:50.8333429Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 730412cd-2b0f-4cdf-8415-702b32edf12b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:50 GMT + etag: '"663A1B752A2C25CDEA3A739485F75B46484B875928755801CD4132A11335BCEF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 730412cd-2b0f-4cdf-8415-702b32edf12b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:50.8333429Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4a52a045-4a98-4978-bcf7-1d8a31dd8f09 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:50 GMT + etag: '"663A1B752A2C25CDEA3A739485F75B46484B875928755801CD4132A11335BCEF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4a52a045-4a98-4978-bcf7-1d8a31dd8f09 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:50.8333429Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: decfc78c-1bc3-40ea-b81a-cdbafa7929ac + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:51 GMT + etag: '"663A1B752A2C25CDEA3A739485F75B46484B875928755801CD4132A11335BCEF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: decfc78c-1bc3-40ea-b81a-cdbafa7929ac + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:50.8333429Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 6eb42019-9e62-4570-bde5-a7d976f233bc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:52 GMT + etag: '"663A1B752A2C25CDEA3A739485F75B46484B875928755801CD4132A11335BCEF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6eb42019-9e62-4570-bde5-a7d976f233bc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:50.8333429Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: fe74b9ca-3e26-4ceb-988a-3c6fe0c1fabd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:53 GMT + etag: '"663A1B752A2C25CDEA3A739485F75B46484B875928755801CD4132A11335BCEF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fe74b9ca-3e26-4ceb-988a-3c6fe0c1fabd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:50.8333429Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 5a7c6e13-eb1a-4ce3-923f-c84ebd2c515b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:55 GMT + etag: '"663A1B752A2C25CDEA3A739485F75B46484B875928755801CD4132A11335BCEF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5a7c6e13-eb1a-4ce3-923f-c84ebd2c515b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:56.7253386Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 0d156649-88ea-485b-8e55-566c43065ccc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:56 GMT + etag: '"BC54B406A6BC8D493A000FA4B9C96AA4A952F2F451B0DFED5C12E8C9286BBE89"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0d156649-88ea-485b-8e55-566c43065ccc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:56.7253386Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b651b129-9601-460f-9e30-b9e572e285e7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:57 GMT + etag: '"BC54B406A6BC8D493A000FA4B9C96AA4A952F2F451B0DFED5C12E8C9286BBE89"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b651b129-9601-460f-9e30-b9e572e285e7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:56.7253386Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: d9991401-bb80-4cfe-8b1f-36ab614a28c2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:58 GMT + etag: '"BC54B406A6BC8D493A000FA4B9C96AA4A952F2F451B0DFED5C12E8C9286BBE89"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d9991401-bb80-4cfe-8b1f-36ab614a28c2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:56.7253386Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 3ac16f4b-2ecb-40bd-9380-3a4bb5461a12 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:43:59 GMT + etag: '"BC54B406A6BC8D493A000FA4B9C96AA4A952F2F451B0DFED5C12E8C9286BBE89"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3ac16f4b-2ecb-40bd-9380-3a4bb5461a12 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:43:56.7253386Z","status":"NotStarted","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":10,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 1cfbae91-308d-4717-98c5-dfb96ddc45b6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:00 GMT + etag: '"BC54B406A6BC8D493A000FA4B9C96AA4A952F2F451B0DFED5C12E8C9286BBE89"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1cfbae91-308d-4717-98c5-dfb96ddc45b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:02.1784694Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":4,"notYetStarted":6,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 2039efcf-79ae-4c33-b109-52f5566b14fb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:02 GMT + etag: '"5B9D9C659ABF43705621D25C2BF3A7830DD3B2EA0DF6906105806BA6BA3AA59B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2039efcf-79ae-4c33-b109-52f5566b14fb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4bb0cb3c-13fc-4112-929e-f8a5fe3d3986 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:03 GMT + etag: '"F976B4784D6095A858CDEDDB2B3097DACBDDBD8019E4E07A955FF943008D8759"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4bb0cb3c-13fc-4112-929e-f8a5fe3d3986 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Running","summary":{"total":10,"failed":0,"success":0,"inProgress":10,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 072c3db3-3683-4195-957b-53570f6c1fd3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:04 GMT + etag: '"F976B4784D6095A858CDEDDB2B3097DACBDDBD8019E4E07A955FF943008D8759"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 072c3db3-3683-4195-957b-53570f6c1fd3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Running","summary":{"total":10,"failed":0,"success":7,"inProgress":3,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}' + headers: + apim-request-id: bb10d125-a346-407b-9a82-50293d879121 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:05 GMT + etag: '"6B028AE7AA905EA205B692FB178AA64CC15A897958AACD5253FE42AA968501FB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bb10d125-a346-407b-9a82-50293d879121 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 + response: + body: + string: '{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}' + headers: + apim-request-id: 83389373-a75d-4646-82d9-96302c73eb3b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:06 GMT + etag: '"9114264A367EDD2D8BE1BAE15CB0942B035B35FBA81041EEEA9CCF433039B24E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 83389373-a75d-4646-82d9-96302c73eb3b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6/documents?$skip=0&statuses=NotStarted + response: + body: + string: '{"value":[]}' + headers: + apim-request-id: 9e3bb037-97f2-416f-b773-1be7b60fc336 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:06 GMT + etag: '"0A09611134E48FCF8D923CD6D4A780BCDF19A383D214FD3C5BF5CCBF44B628B5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9e3bb037-97f2-416f-b773-1be7b60fc336 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6/documents?$skip=0&statuses=NotStarted +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6/documents?$skip=0&statuses=Succeeded + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd/f0a6b9d3-9f24-4117-bcea-289457c3d86a.txt","sourcePath":"https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/f0a6b9d3-9f24-4117-bcea-289457c3d86a.txt","createdDateTimeUtc":"2021-05-06T20:44:02.7709835Z","lastActionDateTimeUtc":"2021-05-06T20:44:06.7873252Z","status":"Succeeded","to":"es","progress":1,"id":"00002b1a-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd/ec87b114-cfef-40fa-8d4a-54aca6570529.txt","sourcePath":"https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/ec87b114-cfef-40fa-8d4a-54aca6570529.txt","createdDateTimeUtc":"2021-05-06T20:44:02.7411116Z","lastActionDateTimeUtc":"2021-05-06T20:44:06.7937755Z","status":"Succeeded","to":"es","progress":1,"id":"00002b19-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd/e97e82dc-83b9-41e5-bf6d-d183a2434579.txt","sourcePath":"https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/e97e82dc-83b9-41e5-bf6d-d183a2434579.txt","createdDateTimeUtc":"2021-05-06T20:44:02.2239594Z","lastActionDateTimeUtc":"2021-05-06T20:44:05.9922072Z","status":"Succeeded","to":"es","progress":1,"id":"00002b18-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd/e205597c-cd63-4749-8b99-d9f1c5873e69.txt","sourcePath":"https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/e205597c-cd63-4749-8b99-d9f1c5873e69.txt","createdDateTimeUtc":"2021-05-06T20:44:02.2070889Z","lastActionDateTimeUtc":"2021-05-06T20:44:06.7920708Z","status":"Succeeded","to":"es","progress":1,"id":"00002b17-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd/d725216c-f10f-4ee5-ad08-31ac7fb73f5f.txt","sourcePath":"https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/d725216c-f10f-4ee5-ad08-31ac7fb73f5f.txt","createdDateTimeUtc":"2021-05-06T20:44:02.1955348Z","lastActionDateTimeUtc":"2021-05-06T20:44:05.9589601Z","status":"Succeeded","to":"es","progress":1,"id":"00002b16-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd/ce9eb4c6-7d08-44fe-86b8-b23acfe11669.txt","sourcePath":"https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/ce9eb4c6-7d08-44fe-86b8-b23acfe11669.txt","createdDateTimeUtc":"2021-05-06T20:44:02.1798431Z","lastActionDateTimeUtc":"2021-05-06T20:44:05.9579856Z","status":"Succeeded","to":"es","progress":1,"id":"00002b15-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd/2c0876ac-3309-46bb-8153-e470c3956968.txt","sourcePath":"https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/2c0876ac-3309-46bb-8153-e470c3956968.txt","createdDateTimeUtc":"2021-05-06T20:44:01.6549347Z","lastActionDateTimeUtc":"2021-05-06T20:44:05.1456843Z","status":"Succeeded","to":"es","progress":1,"id":"00002b11-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd/4136a4fa-0ec0-4668-880e-7e4b9e3ee6d9.txt","sourcePath":"https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/4136a4fa-0ec0-4668-880e-7e4b9e3ee6d9.txt","createdDateTimeUtc":"2021-05-06T20:44:01.6401631Z","lastActionDateTimeUtc":"2021-05-06T20:44:05.1479027Z","status":"Succeeded","to":"es","progress":1,"id":"00002b12-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd/a5ef03bc-a5b1-454c-bcbd-e7eeac8b2d54.txt","sourcePath":"https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/a5ef03bc-a5b1-454c-bcbd-e7eeac8b2d54.txt","createdDateTimeUtc":"2021-05-06T20:44:01.6156366Z","lastActionDateTimeUtc":"2021-05-06T20:44:05.1359184Z","status":"Succeeded","to":"es","progress":1,"id":"00002b14-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target1b7a587e-685c-459a-93ab-147c84a82fbd/810a6af2-fa80-464a-8888-0225a47724f7.txt","sourcePath":"https://redacted.blob.core.windows.net/src2db487a2-5bdf-4ab4-b562-969a51f7a4ab/810a6af2-fa80-464a-8888-0225a47724f7.txt","createdDateTimeUtc":"2021-05-06T20:44:01.608318Z","lastActionDateTimeUtc":"2021-05-06T20:44:05.7519036Z","status":"Succeeded","to":"es","progress":1,"id":"00002b13-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: bdab10cb-97c6-4251-b805-faffa409c724 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:06 GMT + etag: '"F7B68D0F7FD9E5884AED41FF43845B47F37E62444AF9D5C326BC937EEF80C7F7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bdab10cb-97c6-4251-b805-faffa409c724 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6/documents?$skip=0&statuses=Succeeded +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6/documents?$skip=0&statuses=Failed + response: + body: + string: '{"value":[]}' + headers: + apim-request-id: 3b4f8486-094b-488b-8786-60d2f9d9740d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:07 GMT + etag: '"0A09611134E48FCF8D923CD6D4A780BCDF19A383D214FD3C5BF5CCBF44B628B5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3b4f8486-094b-488b-8786-60d2f9d9740d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6/documents?$skip=0&statuses=Failed +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_order_by_creation_time_asc.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_order_by_creation_time_asc.yaml new file mode 100644 index 000000000000..83f00018326a --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_order_by_creation_time_asc.yaml @@ -0,0 +1,730 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:44:08 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:44:08 GMT + etag: + - '"0x8D910CFB2762879"' + last-modified: + - Thu, 06 May 2021 20:44:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:08 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1/b92e177e-cc0d-4789-b3d4-b3da85f1920b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:08 GMT + etag: + - '"0x8D910CFB29DE554"' + last-modified: + - Thu, 06 May 2021 20:44:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1/73206107-edb4-4547-bba7-5671c3f2303b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:08 GMT + etag: + - '"0x8D910CFB2C1EE97"' + last-modified: + - Thu, 06 May 2021 20:44:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1/722151b0-0b00-4ee0-99dd-b5f6fc8d8353.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:09 GMT + etag: + - '"0x8D910CFB2E5F7EB"' + last-modified: + - Thu, 06 May 2021 20:44:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1/0a36273b-3cd1-4dbe-950a-4e9423fcb8d6.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:09 GMT + etag: + - '"0x8D910CFB30964DF"' + last-modified: + - Thu, 06 May 2021 20:44:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1/3fff2cea-1ce4-40b0-91cf-3af034b77fd7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:09 GMT + etag: + - '"0x8D910CFB32CAAB5"' + last-modified: + - Thu, 06 May 2021 20:44:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:44:10 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target9a9794f3-34e9-4936-bfa3-e4832230f151?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:44:10 GMT + etag: + - '"0x8D910CFB3BA490D"' + last-modified: + - Thu, 06 May 2021 20:44:10 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9a9794f3-34e9-4936-bfa3-e4832230f151?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: bf606c09-6d78-4bc2-8f31-5fbc49706c8a + content-length: '0' + date: Thu, 06 May 2021 20:44:11 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bf606c09-6d78-4bc2-8f31-5fbc49706c8a + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:11.5119547Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: fc2dce82-6293-4675-aea2-35ae3f84f058 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:11 GMT + etag: '"6B3258F4951D20E8EE49A11142BC0603F529BB425263982E8F8B00C7DD0A10D9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fc2dce82-6293-4675-aea2-35ae3f84f058 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:11.5119547Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 0b6014d0-59c8-4913-b506-c29d02b0dabd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:11 GMT + etag: '"6B3258F4951D20E8EE49A11142BC0603F529BB425263982E8F8B00C7DD0A10D9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0b6014d0-59c8-4913-b506-c29d02b0dabd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:11.5119547Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 5d6254e5-5dfb-480f-9d7e-37affd32b466 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:12 GMT + etag: '"6B3258F4951D20E8EE49A11142BC0603F529BB425263982E8F8B00C7DD0A10D9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5d6254e5-5dfb-480f-9d7e-37affd32b466 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:11.5119547Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: a654110b-5825-484d-955f-58dd870b5e12 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:13 GMT + etag: '"6B3258F4951D20E8EE49A11142BC0603F529BB425263982E8F8B00C7DD0A10D9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a654110b-5825-484d-955f-58dd870b5e12 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:14.709408Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 5d9b1c0c-1b33-4809-951a-841a6c5c1c39 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:14 GMT + etag: '"431009B51175CB34763C700CBD7612BFFE2C5672262B28429C7D42D07C89FD4F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5d9b1c0c-1b33-4809-951a-841a6c5c1c39 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:14.709408Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 81ef72e9-cd0f-4e82-bc26-78d666649045 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:16 GMT + etag: '"431009B51175CB34763C700CBD7612BFFE2C5672262B28429C7D42D07C89FD4F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 81ef72e9-cd0f-4e82-bc26-78d666649045 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:14.709408Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 6957c030-9ad0-40bd-b24a-c6b0905d32f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:17 GMT + etag: '"431009B51175CB34763C700CBD7612BFFE2C5672262B28429C7D42D07C89FD4F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6957c030-9ad0-40bd-b24a-c6b0905d32f4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:18.4763554Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":4,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 949c567d-e189-4329-a0b6-2d77bf2857f0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:18 GMT + etag: '"96ACEC7ED5C1C9320A68B3BD2E332873E8F0A1010F759A9E3E72B22A913A98C3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 949c567d-e189-4329-a0b6-2d77bf2857f0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 26cc5763-6673-4e42-a642-a2b4dc6e79f3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:19 GMT + etag: '"7CB96CD7B239834EF5C5EC72CD862FB95CF101AAC230EF9AF93647D7A1983CA8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 26cc5763-6673-4e42-a642-a2b4dc6e79f3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: ff578daf-9a90-444d-8007-b08bdf61072d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:20 GMT + etag: '"7CB96CD7B239834EF5C5EC72CD862FB95CF101AAC230EF9AF93647D7A1983CA8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ff578daf-9a90-444d-8007-b08bdf61072d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Running","summary":{"total":5,"failed":0,"success":4,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}' + headers: + apim-request-id: 5c464c7e-f81f-4702-b6e1-796a064afcb1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:21 GMT + etag: '"E55AFE750C932B52F23756012FF739C9972751239BA4C53DCE727D8715A6C00A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5c464c7e-f81f-4702-b6e1-796a064afcb1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f + response: + body: + string: '{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: faaa2283-5ad7-4ce9-8750-d9cd6c8a2a19 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:22 GMT + etag: '"ADE7BB040F4B7FD9EFDEABA72A5EB18F3378BF973B4F33760E49355D6639144A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: faaa2283-5ad7-4ce9-8750-d9cd6c8a2a19 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f/documents?$skip=0&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target9a9794f3-34e9-4936-bfa3-e4832230f151/0a36273b-3cd1-4dbe-950a-4e9423fcb8d6.txt","sourcePath":"https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1/0a36273b-3cd1-4dbe-950a-4e9423fcb8d6.txt","createdDateTimeUtc":"2021-05-06T20:44:17.9367653Z","lastActionDateTimeUtc":"2021-05-06T20:44:21.9398418Z","status":"Succeeded","to":"es","progress":1,"id":"00002b1b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target9a9794f3-34e9-4936-bfa3-e4832230f151/73206107-edb4-4547-bba7-5671c3f2303b.txt","sourcePath":"https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1/73206107-edb4-4547-bba7-5671c3f2303b.txt","createdDateTimeUtc":"2021-05-06T20:44:17.9482241Z","lastActionDateTimeUtc":"2021-05-06T20:44:21.973547Z","status":"Succeeded","to":"es","progress":1,"id":"00002b1e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target9a9794f3-34e9-4936-bfa3-e4832230f151/722151b0-0b00-4ee0-99dd-b5f6fc8d8353.txt","sourcePath":"https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1/722151b0-0b00-4ee0-99dd-b5f6fc8d8353.txt","createdDateTimeUtc":"2021-05-06T20:44:17.9637363Z","lastActionDateTimeUtc":"2021-05-06T20:44:21.9437188Z","status":"Succeeded","to":"es","progress":1,"id":"00002b1d-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target9a9794f3-34e9-4936-bfa3-e4832230f151/3fff2cea-1ce4-40b0-91cf-3af034b77fd7.txt","sourcePath":"https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1/3fff2cea-1ce4-40b0-91cf-3af034b77fd7.txt","createdDateTimeUtc":"2021-05-06T20:44:17.9800074Z","lastActionDateTimeUtc":"2021-05-06T20:44:21.9397374Z","status":"Succeeded","to":"es","progress":1,"id":"00002b1c-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target9a9794f3-34e9-4936-bfa3-e4832230f151/b92e177e-cc0d-4789-b3d4-b3da85f1920b.txt","sourcePath":"https://redacted.blob.core.windows.net/srcd6b267f5-4550-41f0-a887-410d4dcddde1/b92e177e-cc0d-4789-b3d4-b3da85f1920b.txt","createdDateTimeUtc":"2021-05-06T20:44:18.4852643Z","lastActionDateTimeUtc":"2021-05-06T20:44:22.7693452Z","status":"Succeeded","to":"es","progress":1,"id":"00002b1f-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 6a568fa8-7de5-47bd-bd5f-b8101247895b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:22 GMT + etag: '"5BB223751F9E4655BB490076A37732FD560B512F4C2B0F89345A5D85B17086FC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6a568fa8-7de5-47bd-bd5f-b8101247895b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2ad4c4e-b235-4677-aa6c-62e13ba2d35f/documents?$skip=0&$orderBy=createdDateTimeUtc%20asc +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_order_by_creation_time_desc.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_order_by_creation_time_desc.yaml new file mode 100644 index 000000000000..40a17c7dc01a --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_order_by_creation_time_desc.yaml @@ -0,0 +1,730 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:44:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:44:24 GMT + etag: + - '"0x8D910CFBBDBAC59"' + last-modified: + - Thu, 06 May 2021 20:44:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57/b46359fc-ae84-4405-9cc8-f06a9541c3d1.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:24 GMT + etag: + - '"0x8D910CFBBFFCF65"' + last-modified: + - Thu, 06 May 2021 20:44:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57/7de878f7-b61b-4fec-b708-d8bc60a4d0b4.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:24 GMT + etag: + - '"0x8D910CFBC23637D"' + last-modified: + - Thu, 06 May 2021 20:44:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57/4f40aa9e-8dcc-47d0-b6de-ad80ff9a4376.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:24 GMT + etag: + - '"0x8D910CFBC46D06C"' + last-modified: + - Thu, 06 May 2021 20:44:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57/45b69a53-bd4a-4a55-aa98-1056537962eb.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:25 GMT + etag: + - '"0x8D910CFBC6A3D64"' + last-modified: + - Thu, 06 May 2021 20:44:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57/99efbf04-176d-46cd-8fe0-f500512c8c22.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:25 GMT + etag: + - '"0x8D910CFBC8D5C1C"' + last-modified: + - Thu, 06 May 2021 20:44:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:44:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target00e7e45e-abb7-40ff-804c-142e67be2dbc?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:44:26 GMT + etag: + - '"0x8D910CFBD17F00A"' + last-modified: + - Thu, 06 May 2021 20:44:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target00e7e45e-abb7-40ff-804c-142e67be2dbc?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '490' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 2fd558b1-2d92-4160-b209-9d8c9a4e47b7 + content-length: '0' + date: Thu, 06 May 2021 20:44:26 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2fd558b1-2d92-4160-b209-9d8c9a4e47b7 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:27.4028366Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b1e3bc9f-c9d3-4e65-be1a-b7e5b10e98f1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:26 GMT + etag: '"A36ECEB616178433C5BAFF70E939ED01902CEEE20E1C678C7723A6A9F2FC2FB7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b1e3bc9f-c9d3-4e65-be1a-b7e5b10e98f1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:27.4028366Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 7abe062a-5546-4f21-b89d-6e4bb488d1ab + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:26 GMT + etag: '"A36ECEB616178433C5BAFF70E939ED01902CEEE20E1C678C7723A6A9F2FC2FB7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7abe062a-5546-4f21-b89d-6e4bb488d1ab + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:27.4028366Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: c01c7dd7-a2fb-4dc6-8ade-83a7c35b3aa4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:27 GMT + etag: '"A36ECEB616178433C5BAFF70E939ED01902CEEE20E1C678C7723A6A9F2FC2FB7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c01c7dd7-a2fb-4dc6-8ade-83a7c35b3aa4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:27.4028366Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: fb82cf38-b4c0-4f88-bbb2-316ef15605a0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:29 GMT + etag: '"A36ECEB616178433C5BAFF70E939ED01902CEEE20E1C678C7723A6A9F2FC2FB7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fb82cf38-b4c0-4f88-bbb2-316ef15605a0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:30.5799798Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 55ae272d-77ad-4c46-920b-6210b62befff + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:30 GMT + etag: '"4A092ADF2C00071AD884819590C4C0DDA8CFFF705D66EDEB23AEE0BAB657D11C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 55ae272d-77ad-4c46-920b-6210b62befff + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:30.5799798Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 8d524928-99d8-412c-8fa4-0804dc2421a4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:31 GMT + etag: '"4A092ADF2C00071AD884819590C4C0DDA8CFFF705D66EDEB23AEE0BAB657D11C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8d524928-99d8-412c-8fa4-0804dc2421a4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:30.5799798Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 73959ed0-7602-40e5-85da-af0783225ac3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:32 GMT + etag: '"4A092ADF2C00071AD884819590C4C0DDA8CFFF705D66EDEB23AEE0BAB657D11C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 73959ed0-7602-40e5-85da-af0783225ac3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 1a9c3464-925f-4b7b-b0e2-c577ae260386 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:33 GMT + etag: '"D870D2B8CBF39DB62BC0F4DE3735C3B629C2A401B044D92FC44248FC41EE146D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1a9c3464-925f-4b7b-b0e2-c577ae260386 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: ec0b6f68-b8c9-4794-8ae8-adcbd9e6fdec + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:35 GMT + etag: '"D870D2B8CBF39DB62BC0F4DE3735C3B629C2A401B044D92FC44248FC41EE146D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ec0b6f68-b8c9-4794-8ae8-adcbd9e6fdec + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4f5a6a26-b0e7-4507-bfb1-cbd3df6717c6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:36 GMT + etag: '"D870D2B8CBF39DB62BC0F4DE3735C3B629C2A401B044D92FC44248FC41EE146D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4f5a6a26-b0e7-4507-bfb1-cbd3df6717c6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 1606a4b8-8bc9-49fc-8d92-7e3a19f56809 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:38 GMT + etag: '"D870D2B8CBF39DB62BC0F4DE3735C3B629C2A401B044D92FC44248FC41EE146D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1606a4b8-8bc9-49fc-8d92-7e3a19f56809 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 + response: + body: + string: '{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: a7c94f98-73f4-4ab7-bc0d-435c1fccaa37 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:39 GMT + etag: '"4335C7A29177BF7C20BA67FBCD5DEBEAFC688E4F7573A32BA8C0613BC41648FD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a7c94f98-73f4-4ab7-bc0d-435c1fccaa37 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575/documents?$skip=0&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target00e7e45e-abb7-40ff-804c-142e67be2dbc/b46359fc-ae84-4405-9cc8-f06a9541c3d1.txt","sourcePath":"https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57/b46359fc-ae84-4405-9cc8-f06a9541c3d1.txt","createdDateTimeUtc":"2021-05-06T20:44:33.5282537Z","lastActionDateTimeUtc":"2021-05-06T20:44:38.9808019Z","status":"Succeeded","to":"es","progress":1,"id":"00002b24-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target00e7e45e-abb7-40ff-804c-142e67be2dbc/99efbf04-176d-46cd-8fe0-f500512c8c22.txt","sourcePath":"https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57/99efbf04-176d-46cd-8fe0-f500512c8c22.txt","createdDateTimeUtc":"2021-05-06T20:44:33.4583465Z","lastActionDateTimeUtc":"2021-05-06T20:44:38.2040673Z","status":"Succeeded","to":"es","progress":1,"id":"00002b23-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target00e7e45e-abb7-40ff-804c-142e67be2dbc/7de878f7-b61b-4fec-b708-d8bc60a4d0b4.txt","sourcePath":"https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57/7de878f7-b61b-4fec-b708-d8bc60a4d0b4.txt","createdDateTimeUtc":"2021-05-06T20:44:33.4566586Z","lastActionDateTimeUtc":"2021-05-06T20:44:38.1920747Z","status":"Succeeded","to":"es","progress":1,"id":"00002b22-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target00e7e45e-abb7-40ff-804c-142e67be2dbc/45b69a53-bd4a-4a55-aa98-1056537962eb.txt","sourcePath":"https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57/45b69a53-bd4a-4a55-aa98-1056537962eb.txt","createdDateTimeUtc":"2021-05-06T20:44:33.4412303Z","lastActionDateTimeUtc":"2021-05-06T20:44:38.1980789Z","status":"Succeeded","to":"es","progress":1,"id":"00002b20-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target00e7e45e-abb7-40ff-804c-142e67be2dbc/4f40aa9e-8dcc-47d0-b6de-ad80ff9a4376.txt","sourcePath":"https://redacted.blob.core.windows.net/src024ad752-4fb4-4851-9c71-7edf5d58fa57/4f40aa9e-8dcc-47d0-b6de-ad80ff9a4376.txt","createdDateTimeUtc":"2021-05-06T20:44:33.4411613Z","lastActionDateTimeUtc":"2021-05-06T20:44:38.187516Z","status":"Succeeded","to":"es","progress":1,"id":"00002b21-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 8aa6e93d-dd33-424c-aa32-3854331cd852 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:39 GMT + etag: '"1E0810FE34112D012E1D62F90C8E69ECCADA20520E0E07117B5EF774C9207704"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8aa6e93d-dd33-424c-aa32-3854331cd852 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2d399dd9-6d9c-47c8-8758-e38b7e23b575/documents?$skip=0&$orderBy=createdDateTimeUtc%20desc +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_with_pagination.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_with_pagination.yaml new file mode 100644 index 000000000000..016c2c2bdc97 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_with_pagination.yaml @@ -0,0 +1,920 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:44:39 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:44:40 GMT + etag: + - '"0x8D910CFC54965B9"' + last-modified: + - Thu, 06 May 2021 20:44:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:40 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/416f20ce-72be-42bc-82cd-0d3723c55864.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:40 GMT + etag: + - '"0x8D910CFC56DF096"' + last-modified: + - Thu, 06 May 2021 20:44:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:40 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/588bc851-4fbe-4446-9e8e-1d4f75de2428.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:40 GMT + etag: + - '"0x8D910CFC592963E"' + last-modified: + - Thu, 06 May 2021 20:44:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:41 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/f00f0451-0ca9-4551-b2ea-6e4940c15a52.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:40 GMT + etag: + - '"0x8D910CFC5B73BEB"' + last-modified: + - Thu, 06 May 2021 20:44:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:41 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/fe127ee6-dc0e-4f32-815c-0f1be3ee1313.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:41 GMT + etag: + - '"0x8D910CFC5DC2FC1"' + last-modified: + - Thu, 06 May 2021 20:44:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:41 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/4176bf83-3a39-46f6-a553-0f8d8b069d31.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:41 GMT + etag: + - '"0x8D910CFC600873B"' + last-modified: + - Thu, 06 May 2021 20:44:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:41 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/2d1d5c1c-4b0d-42f8-a9ac-f1b5521f68f1.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:41 GMT + etag: + - '"0x8D910CFC6263E8B"' + last-modified: + - Thu, 06 May 2021 20:44:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:41 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/07317fd2-9279-4f09-af71-d97fa76b7d4a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:41 GMT + etag: + - '"0x8D910CFC64A9600"' + last-modified: + - Thu, 06 May 2021 20:44:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:44:42 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target8c86e3c4-323e-47b3-b707-97f2074e0fc3?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:44:42 GMT + etag: + - '"0x8D910CFC6D67B79"' + last-modified: + - Thu, 06 May 2021 20:44:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8c86e3c4-323e-47b3-b707-97f2074e0fc3?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 065433a2-3782-4be7-b1d8-4e82b5316ebb + content-length: '0' + date: Thu, 06 May 2021 20:44:42 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 065433a2-3782-4be7-b1d8-4e82b5316ebb + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:43.4399884Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4cda3a66-cae3-48f7-a418-3a975060e9c0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:43 GMT + etag: '"3B53E4F7E997B4D22C2364393B507A3B0758EEAF2B307A68ED8C2F504D31BAD6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4cda3a66-cae3-48f7-a418-3a975060e9c0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:43.4399884Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 16a31cdb-71e7-4651-baae-09b48c9301e9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:43 GMT + etag: '"3B53E4F7E997B4D22C2364393B507A3B0758EEAF2B307A68ED8C2F504D31BAD6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 16a31cdb-71e7-4651-baae-09b48c9301e9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:43.4399884Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: baa56f15-b38e-4d51-a963-dd85234929e5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:44 GMT + etag: '"3B53E4F7E997B4D22C2364393B507A3B0758EEAF2B307A68ED8C2F504D31BAD6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: baa56f15-b38e-4d51-a963-dd85234929e5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:43.4399884Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 8627da1e-b113-4107-a9df-9775c085cfba + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:45 GMT + etag: '"3B53E4F7E997B4D22C2364393B507A3B0758EEAF2B307A68ED8C2F504D31BAD6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8627da1e-b113-4107-a9df-9775c085cfba + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:43.4399884Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: cef0a381-b125-4ffe-b80b-d4c1cc6e94df + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:46 GMT + etag: '"3B53E4F7E997B4D22C2364393B507A3B0758EEAF2B307A68ED8C2F504D31BAD6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cef0a381-b125-4ffe-b80b-d4c1cc6e94df + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:47.6416836Z","status":"NotStarted","summary":{"total":7,"failed":0,"success":0,"inProgress":0,"notYetStarted":7,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 184a8a06-83c8-41ab-a8a5-9f93d24372c5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:47 GMT + etag: '"2F566210BB3AA56F6FCE6925A3E7805DB192D617A7450FA4A90AD2BA602FD677"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 184a8a06-83c8-41ab-a8a5-9f93d24372c5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.1229813Z","status":"Running","summary":{"total":7,"failed":0,"success":0,"inProgress":4,"notYetStarted":3,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4fcddbc6-e77d-4f36-b297-312fa1747a45 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:48 GMT + etag: '"F6D04FDAFAD3E320682722E73D98CB4C8481605EE1D4EC92BC74DAC4344163C7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4fcddbc6-e77d-4f36-b297-312fa1747a45 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Running","summary":{"total":7,"failed":0,"success":0,"inProgress":7,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 9d1190e1-aae5-4d5b-9d11-070a2949279b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:49 GMT + etag: '"8C253AFC47959AD490417C5B2A5682537EA65E025CCB0CB99739E5B01B2F4DE4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9d1190e1-aae5-4d5b-9d11-070a2949279b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Running","summary":{"total":7,"failed":0,"success":0,"inProgress":7,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: c3cbde4e-be47-484c-a82d-8508d432f59a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:51 GMT + etag: '"8C253AFC47959AD490417C5B2A5682537EA65E025CCB0CB99739E5B01B2F4DE4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c3cbde4e-be47-484c-a82d-8508d432f59a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Running","summary":{"total":7,"failed":0,"success":0,"inProgress":7,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: af4be1a0-99fa-443b-8272-00f48b5235fa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:52 GMT + etag: '"8C253AFC47959AD490417C5B2A5682537EA65E025CCB0CB99739E5B01B2F4DE4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: af4be1a0-99fa-443b-8272-00f48b5235fa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Running","summary":{"total":7,"failed":0,"success":3,"inProgress":4,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}' + headers: + apim-request-id: 995f1e83-3fbd-4473-8eb8-75a3e0161fda + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:53 GMT + etag: '"7400D941B9F374098F161AC3AC00CBC1EF4C8BD1896C4232BA8EB34B02F90A58"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 995f1e83-3fbd-4473-8eb8-75a3e0161fda + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 + response: + body: + string: '{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}' + headers: + apim-request-id: 82be00fd-94b6-443c-9c39-e1ecfa9e61ff + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:54 GMT + etag: '"413312DA2B3BEDE12A96D910099DCFF39779D08F4E88598066FEF4B874F2E2DD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 82be00fd-94b6-443c-9c39-e1ecfa9e61ff + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=0&$maxpagesize=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target8c86e3c4-323e-47b3-b707-97f2074e0fc3/588bc851-4fbe-4446-9e8e-1d4f75de2428.txt","sourcePath":"https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/588bc851-4fbe-4446-9e8e-1d4f75de2428.txt","createdDateTimeUtc":"2021-05-06T20:44:49.075312Z","lastActionDateTimeUtc":"2021-05-06T20:44:54.940882Z","status":"Succeeded","to":"es","progress":1,"id":"00002b29-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target8c86e3c4-323e-47b3-b707-97f2074e0fc3/f00f0451-0ca9-4551-b2ea-6e4940c15a52.txt","sourcePath":"https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/f00f0451-0ca9-4551-b2ea-6e4940c15a52.txt","createdDateTimeUtc":"2021-05-06T20:44:49.0739014Z","lastActionDateTimeUtc":"2021-05-06T20:44:54.9267541Z","status":"Succeeded","to":"es","progress":1,"id":"00002b2a-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=2&$top=5&$maxpagesize=2"}' + headers: + apim-request-id: a2b1e8ee-33c7-44ca-aa07-a0d519400c40 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:54 GMT + etag: '"D164E44145A44F72F31D60654DA3B894968430CBBF99110DF8F13D543C01758C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a2b1e8ee-33c7-44ca-aa07-a0d519400c40 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=0&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=2&$top=5&$maxpagesize=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target8c86e3c4-323e-47b3-b707-97f2074e0fc3/fe127ee6-dc0e-4f32-815c-0f1be3ee1313.txt","sourcePath":"https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/fe127ee6-dc0e-4f32-815c-0f1be3ee1313.txt","createdDateTimeUtc":"2021-05-06T20:44:49.0600146Z","lastActionDateTimeUtc":"2021-05-06T20:44:54.9057676Z","status":"Succeeded","to":"es","progress":1,"id":"00002b2b-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target8c86e3c4-323e-47b3-b707-97f2074e0fc3/4176bf83-3a39-46f6-a553-0f8d8b069d31.txt","sourcePath":"https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/4176bf83-3a39-46f6-a553-0f8d8b069d31.txt","createdDateTimeUtc":"2021-05-06T20:44:48.6207801Z","lastActionDateTimeUtc":"2021-05-06T20:44:54.0955531Z","status":"Succeeded","to":"es","progress":1,"id":"00002b28-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=4&$top=3&$maxpagesize=2"}' + headers: + apim-request-id: 4f9e1528-c6e6-4758-ae8a-38f9203760a4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:54 GMT + etag: '"C97A4900AFAEC83CBCD187B7AEC9AE4CFFAD49CB19033DF965379B1A937E3D85"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4f9e1528-c6e6-4758-ae8a-38f9203760a4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=2&$top=5&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=4&$top=3&$maxpagesize=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target8c86e3c4-323e-47b3-b707-97f2074e0fc3/416f20ce-72be-42bc-82cd-0d3723c55864.txt","sourcePath":"https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/416f20ce-72be-42bc-82cd-0d3723c55864.txt","createdDateTimeUtc":"2021-05-06T20:44:48.5915139Z","lastActionDateTimeUtc":"2021-05-06T20:44:54.0886444Z","status":"Succeeded","to":"es","progress":1,"id":"00002b27-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target8c86e3c4-323e-47b3-b707-97f2074e0fc3/2d1d5c1c-4b0d-42f8-a9ac-f1b5521f68f1.txt","sourcePath":"https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/2d1d5c1c-4b0d-42f8-a9ac-f1b5521f68f1.txt","createdDateTimeUtc":"2021-05-06T20:44:48.5830135Z","lastActionDateTimeUtc":"2021-05-06T20:44:54.1027599Z","status":"Succeeded","to":"es","progress":1,"id":"00002b26-0000-0000-0000-000000000000","characterCharged":27}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=6&$top=1&$maxpagesize=2"}' + headers: + apim-request-id: ace9bfb2-e179-4723-a39e-dacf1fb392db + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:54 GMT + etag: '"399EC87E3DDFBCE452FA80387825A95D2501EF5A37669D588DBB1081D00C23D7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ace9bfb2-e179-4723-a39e-dacf1fb392db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=4&$top=3&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=6&$top=1&$maxpagesize=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target8c86e3c4-323e-47b3-b707-97f2074e0fc3/07317fd2-9279-4f09-af71-d97fa76b7d4a.txt","sourcePath":"https://redacted.blob.core.windows.net/srcfcf80e78-732d-47ac-9cb6-b31344d6839b/07317fd2-9279-4f09-af71-d97fa76b7d4a.txt","createdDateTimeUtc":"2021-05-06T20:44:48.5820404Z","lastActionDateTimeUtc":"2021-05-06T20:44:54.0994163Z","status":"Succeeded","to":"es","progress":1,"id":"00002b25-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 40603d8c-6b9b-4eb9-aac0-326b757f984d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:55 GMT + etag: '"2FBF7CCF763A43CA257B40893C7196F6D81370890E457B0AEC543817784D8B25"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 40603d8c-6b9b-4eb9-aac0-326b757f984d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7dd7a8f9-895a-4fa2-9788-1dfe98e552f8/documents?$skip=6&$top=1&$maxpagesize=2 +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_with_skip.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_with_skip.yaml new file mode 100644 index 000000000000..22a7462f0f7a --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_all_document_statuses_async.test_list_document_statuses_with_skip.yaml @@ -0,0 +1,702 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:44:56 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd9c12ff1-d130-4e8b-a7d4-f4f76bdecb55?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:44:56 GMT + etag: + - '"0x8D910CFCF2E9029"' + last-modified: + - Thu, 06 May 2021 20:44:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd9c12ff1-d130-4e8b-a7d4-f4f76bdecb55/9a88be0a-dd4e-44c6-8f3b-cb8d54a9bdcc.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:56 GMT + etag: + - '"0x8D910CFCF55C4E8"' + last-modified: + - Thu, 06 May 2021 20:44:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd9c12ff1-d130-4e8b-a7d4-f4f76bdecb55/8e16c522-17de-4871-b0fa-c30d5458af15.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:56 GMT + etag: + - '"0x8D910CFCF790ABA"' + last-modified: + - Thu, 06 May 2021 20:44:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd9c12ff1-d130-4e8b-a7d4-f4f76bdecb55/a953d80d-2853-4938-88d2-80a01a5f87e7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:56 GMT + etag: + - '"0x8D910CFCF9C5098"' + last-modified: + - Thu, 06 May 2021 20:44:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd9c12ff1-d130-4e8b-a7d4-f4f76bdecb55/33670759-61ac-4dc5-9ee3-2ce9765c09f8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:57 GMT + etag: + - '"0x8D910CFCFC032CB"' + last-modified: + - Thu, 06 May 2021 20:44:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:44:58 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd9c12ff1-d130-4e8b-a7d4-f4f76bdecb55/3af4c5e4-4b8e-420e-b722-45bdbaa1b779.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:44:57 GMT + etag: + - '"0x8D910CFCFE35187"' + last-modified: + - Thu, 06 May 2021 20:44:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:44:58 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target89fc2bcd-d51a-4b2b-aaae-1738568905a9?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:44:58 GMT + etag: + - '"0x8D910CFD06BA028"' + last-modified: + - Thu, 06 May 2021 20:44:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd9c12ff1-d130-4e8b-a7d4-f4f76bdecb55?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target89fc2bcd-d51a-4b2b-aaae-1738568905a9?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: ee742e87-e30d-49f4-9dc8-eec0980ce403 + content-length: '0' + date: Thu, 06 May 2021 20:44:59 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ee742e87-e30d-49f4-9dc8-eec0980ce403 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:44:59.7186744Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 605c5996-93e0-43ce-801c-bc1cce329342 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:59 GMT + etag: '"F25EA2436102465A829C161471ABB5F09ADF50E17855F45B07035E33901C3661"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 605c5996-93e0-43ce-801c-bc1cce329342 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:44:59.7186744Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 509e1936-7a4a-49c5-9cb9-6e12b7bde20b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:44:59 GMT + etag: '"F25EA2436102465A829C161471ABB5F09ADF50E17855F45B07035E33901C3661"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 509e1936-7a4a-49c5-9cb9-6e12b7bde20b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:44:59.7186744Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 451309b2-5b9f-4a07-af3d-54feb3bf850b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:45:00 GMT + etag: '"F25EA2436102465A829C161471ABB5F09ADF50E17855F45B07035E33901C3661"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 451309b2-5b9f-4a07-af3d-54feb3bf850b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:44:59.7186744Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 96c8d539-2987-4f6b-8d5c-b5deca29be47 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:45:01 GMT + etag: '"F25EA2436102465A829C161471ABB5F09ADF50E17855F45B07035E33901C3661"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 96c8d539-2987-4f6b-8d5c-b5deca29be47 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:02.9053618Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: ecb4ab00-bab6-496e-b08e-9b5881aea513 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:45:03 GMT + etag: '"10BBC9C1A665AAFB99CAB36A48499B2F8F2EB30EF7CA2DBBE647BF5BAA517BC5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ecb4ab00-bab6-496e-b08e-9b5881aea513 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:02.9053618Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 6d72d872-0921-4fd4-adff-fafe3d091408 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:45:04 GMT + etag: '"10BBC9C1A665AAFB99CAB36A48499B2F8F2EB30EF7CA2DBBE647BF5BAA517BC5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6d72d872-0921-4fd4-adff-fafe3d091408 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 2e32b071-6e3d-43ca-9ef8-a6c724ac0bb4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:45:05 GMT + etag: '"E7BE2DADEE80A58FA729A1F2E334E50C8C7B11E27872DE69D7D604CAF53720C1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2e32b071-6e3d-43ca-9ef8-a6c724ac0bb4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: c8f2810a-4d82-4c89-8c36-c0b310863fb5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:45:06 GMT + etag: '"E7BE2DADEE80A58FA729A1F2E334E50C8C7B11E27872DE69D7D604CAF53720C1"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c8f2810a-4d82-4c89-8c36-c0b310863fb5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: bf3e2649-e133-4a11-a2f2-c96ed655660f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:45:07 GMT + etag: '"E7BE2DADEE80A58FA729A1F2E334E50C8C7B11E27872DE69D7D604CAF53720C1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bf3e2649-e133-4a11-a2f2-c96ed655660f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 3651ef00-f197-41bb-9d17-291522c42708 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:45:08 GMT + etag: '"E7BE2DADEE80A58FA729A1F2E334E50C8C7B11E27872DE69D7D604CAF53720C1"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3651ef00-f197-41bb-9d17-291522c42708 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a + response: + body: + string: '{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}' + headers: + apim-request-id: d5db9c25-a112-4705-8ede-5a7fd3e1aa1e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:45:09 GMT + etag: '"8A79655D2C16EE661C7F361C89E36928F410302EF631389D13DD911A32117395"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d5db9c25-a112-4705-8ede-5a7fd3e1aa1e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a/documents?$skip=2 + response: + body: + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target89fc2bcd-d51a-4b2b-aaae-1738568905a9/9a88be0a-dd4e-44c6-8f3b-cb8d54a9bdcc.txt","sourcePath":"https://redacted.blob.core.windows.net/srcd9c12ff1-d130-4e8b-a7d4-f4f76bdecb55/9a88be0a-dd4e-44c6-8f3b-cb8d54a9bdcc.txt","createdDateTimeUtc":"2021-05-06T20:45:04.1223388Z","lastActionDateTimeUtc":"2021-05-06T20:45:09.2919359Z","status":"Succeeded","to":"es","progress":1,"id":"00002b2f-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target89fc2bcd-d51a-4b2b-aaae-1738568905a9/8e16c522-17de-4871-b0fa-c30d5458af15.txt","sourcePath":"https://redacted.blob.core.windows.net/srcd9c12ff1-d130-4e8b-a7d4-f4f76bdecb55/8e16c522-17de-4871-b0fa-c30d5458af15.txt","createdDateTimeUtc":"2021-05-06T20:45:04.1154155Z","lastActionDateTimeUtc":"2021-05-06T20:45:09.3134385Z","status":"Succeeded","to":"es","progress":1,"id":"00002b2e-0000-0000-0000-000000000000","characterCharged":27},{"path":"https://redacted.blob.core.windows.net/target89fc2bcd-d51a-4b2b-aaae-1738568905a9/3af4c5e4-4b8e-420e-b722-45bdbaa1b779.txt","sourcePath":"https://redacted.blob.core.windows.net/srcd9c12ff1-d130-4e8b-a7d4-f4f76bdecb55/3af4c5e4-4b8e-420e-b722-45bdbaa1b779.txt","createdDateTimeUtc":"2021-05-06T20:45:04.1129751Z","lastActionDateTimeUtc":"2021-05-06T20:45:09.3606505Z","status":"Succeeded","to":"es","progress":1,"id":"00002b2d-0000-0000-0000-000000000000","characterCharged":27}]}' + headers: + apim-request-id: 55fb6c65-e4a1-42ba-8466-98da6614c504 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:45:10 GMT + etag: '"F8349D999F4F36D2C465ED56E0C8F908D08C6F52FD0863A405B0BB67F9AC6413"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 55fb6c65-e4a1-42ba-8466-98da6614c504 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9460c99f-ef4b-47ff-9645-cf9cd326680a/documents?$skip=2 +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_cancel_job.test_cancel_job.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_cancel_job.test_cancel_job.yaml index 2b919a8ac468..508d8bbda304 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_cancel_job.test_cancel_job.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_cancel_job.test_cancel_job.yaml @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 28 Apr 2021 01:27:34 GMT + - Thu, 06 May 2021 20:45:10 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src40ea349b-a66b-41d0-b606-6dc0bb9a8f7b?restype=container + uri: https://redacted.blob.core.windows.net/srcfd391f35-412d-43b2-bc17-1c0bdf12736f?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 28 Apr 2021 01:27:34 GMT + - Thu, 06 May 2021 20:45:10 GMT etag: - - '"0x8D909E4CD532595"' + - '"0x8D910CFD7D6FF15"' last-modified: - - Wed, 28 Apr 2021 01:27:35 GMT + - Thu, 06 May 2021 20:45:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -57,11 +57,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:27:35 GMT + - Thu, 06 May 2021 20:45:11 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src40ea349b-a66b-41d0-b606-6dc0bb9a8f7b/bbcd7bd2-b37e-42b6-9412-10394bdda5c7.txt + uri: https://redacted.blob.core.windows.net/srcfd391f35-412d-43b2-bc17-1c0bdf12736f/20d460d1-8b84-4db0-9bcb-099caea45954.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:27:34 GMT + - Thu, 06 May 2021 20:45:10 GMT etag: - - '"0x8D909E4CD80B72A"' + - '"0x8D910CFD7FB8F9F"' last-modified: - - Wed, 28 Apr 2021 01:27:35 GMT + - Thu, 06 May 2021 20:45:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -107,11 +107,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:11 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src40ea349b-a66b-41d0-b606-6dc0bb9a8f7b/d0863009-986b-4fb5-bac6-31f3807cecca.txt + uri: https://redacted.blob.core.windows.net/srcfd391f35-412d-43b2-bc17-1c0bdf12736f/b8e743f7-f325-457f-a9ed-ac0dfb0d1cae.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:27:34 GMT + - Thu, 06 May 2021 20:45:11 GMT etag: - - '"0x8D909E4CDA66E7C"' + - '"0x8D910CFD820F8BC"' last-modified: - - Wed, 28 Apr 2021 01:27:35 GMT + - Thu, 06 May 2021 20:45:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -157,11 +157,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:12 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src40ea349b-a66b-41d0-b606-6dc0bb9a8f7b/a4f7e9b1-ba6c-451f-bc15-6f5db16d6c10.txt + uri: https://redacted.blob.core.windows.net/srcfd391f35-412d-43b2-bc17-1c0bdf12736f/74a617df-fadb-444d-8c4c-7e7d8c1ce224.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:27:35 GMT + - Thu, 06 May 2021 20:45:11 GMT etag: - - '"0x8D909E4CDD3EF70"' + - '"0x8D910CFD845774F"' last-modified: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -207,11 +207,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:12 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src40ea349b-a66b-41d0-b606-6dc0bb9a8f7b/b9ed0908-ff2c-4e91-a680-2119d28a358f.txt + uri: https://redacted.blob.core.windows.net/srcfd391f35-412d-43b2-bc17-1c0bdf12736f/bf89080e-3181-4625-8fb2-1f50ae841614.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:27:35 GMT + - Thu, 06 May 2021 20:45:11 GMT etag: - - '"0x8D909E4CDF73546"' + - '"0x8D910CFD869CECE"' last-modified: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -257,11 +257,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:12 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src40ea349b-a66b-41d0-b606-6dc0bb9a8f7b/4e194e21-ac39-4ec6-b14c-5c521d313944.txt + uri: https://redacted.blob.core.windows.net/srcfd391f35-412d-43b2-bc17-1c0bdf12736f/f0a5917b-55f8-4196-bec6-169f91c8a9c8.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:27:35 GMT + - Thu, 06 May 2021 20:45:11 GMT etag: - - '"0x8D909E4CE1A5411"' + - '"0x8D910CFD88FAD33"' last-modified: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -307,11 +307,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:27:37 GMT + - Thu, 06 May 2021 20:45:12 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src40ea349b-a66b-41d0-b606-6dc0bb9a8f7b/d9fba13c-658b-4763-97af-8db4afb05ba8.txt + uri: https://redacted.blob.core.windows.net/srcfd391f35-412d-43b2-bc17-1c0bdf12736f/39951af2-da53-4a71-aede-def56cc9f01d.txt response: body: string: '' @@ -321,11 +321,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:27:35 GMT + - Thu, 06 May 2021 20:45:12 GMT etag: - - '"0x8D909E4CE3D99F2"' + - '"0x8D910CFD8B404A4"' last-modified: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -357,11 +357,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:27:37 GMT + - Thu, 06 May 2021 20:45:13 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src40ea349b-a66b-41d0-b606-6dc0bb9a8f7b/85919279-7859-4e02-b1d8-83418a3890da.txt + uri: https://redacted.blob.core.windows.net/srcfd391f35-412d-43b2-bc17-1c0bdf12736f/5dbda9ea-ee6d-4536-99c0-27524cfdc1ef.txt response: body: string: '' @@ -371,11 +371,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:12 GMT etag: - - '"0x8D909E4CE612E0F"' + - '"0x8D910CFD8D83504"' last-modified: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:13 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -407,11 +407,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:27:37 GMT + - Thu, 06 May 2021 20:45:13 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src40ea349b-a66b-41d0-b606-6dc0bb9a8f7b/7fcd85d9-f6b2-47ef-bf03-b576c365198e.txt + uri: https://redacted.blob.core.windows.net/srcfd391f35-412d-43b2-bc17-1c0bdf12736f/c04de41a-4121-4589-831b-65f922c848b6.txt response: body: string: '' @@ -421,11 +421,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:27:36 GMT + - Thu, 06 May 2021 20:45:12 GMT etag: - - '"0x8D909E4CE88454D"' + - '"0x8D910CFD8FC657B"' last-modified: - - Wed, 28 Apr 2021 01:27:37 GMT + - Thu, 06 May 2021 20:45:13 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -451,11 +451,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 28 Apr 2021 01:27:37 GMT + - Thu, 06 May 2021 20:45:13 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targeted53dc7d-d00e-43e6-90ac-9f5d3eeb35e1?restype=container + uri: https://redacted.blob.core.windows.net/target688b7012-4526-4603-8a66-e4c75f71ec66?restype=container response: body: string: '' @@ -463,11 +463,11 @@ interactions: content-length: - '0' date: - - Wed, 28 Apr 2021 01:27:37 GMT + - Thu, 06 May 2021 20:45:13 GMT etag: - - '"0x8D909E4CF1E9076"' + - '"0x8D910CFD98E96E6"' last-modified: - - Wed, 28 Apr 2021 01:27:38 GMT + - Thu, 06 May 2021 20:45:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -476,8 +476,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src40ea349b-a66b-41d0-b606-6dc0bb9a8f7b?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeted53dc7d-d00e-43e6-90ac-9f5d3eeb35e1?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfd391f35-412d-43b2-bc17-1c0bdf12736f?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target688b7012-4526-4603-8a66-e4c75f71ec66?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -487,7 +487,7 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '494' Content-Type: - application/json User-Agent: @@ -499,16 +499,16 @@ interactions: string: '' headers: apim-request-id: - - 80b397b4-8830-4650-845d-a8afe7afe5b5 + - d20e2131-41ed-45a7-9a00-95626b5723a5 content-length: - '0' date: - - Wed, 28 Apr 2021 01:27:38 GMT + - Thu, 06 May 2021 20:45:14 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c786e8e7-79fb-4bfa-8059-b17cf1b52ef8 + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0594d313-dbff-4c95-a1e2-f089a0a181e8 set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -516,7 +516,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 80b397b4-8830-4650-845d-a8afe7afe5b5 + - d20e2131-41ed-45a7-9a00-95626b5723a5 status: code: 202 message: Accepted @@ -532,13 +532,13 @@ interactions: User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c786e8e7-79fb-4bfa-8059-b17cf1b52ef8 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0594d313-dbff-4c95-a1e2-f089a0a181e8 response: body: - string: '{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:39.1323263Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:14.8877697Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - ccfc70b3-3c85-4c02-8455-74cb209299d8 + - e204c929-49c3-435f-82c8-6016bb5f3f35 cache-control: - public,max-age=1 content-length: @@ -546,12 +546,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 28 Apr 2021 01:27:38 GMT + - Thu, 06 May 2021 20:45:14 GMT etag: - - '"7784822B509A23305B874611A2C284335AEC0163B40D35558D0E2C36C127D4BA"' + - '"AF96D1DB1C5EA5EE99AE911819DCEEE783BBD5D4F9DBFC90ABF04EFAC5A563EF"' set-cookie: - - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -563,7 +563,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ccfc70b3-3c85-4c02-8455-74cb209299d8 + - e204c929-49c3-435f-82c8-6016bb5f3f35 status: code: 200 message: OK @@ -581,22 +581,22 @@ interactions: User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c786e8e7-79fb-4bfa-8059-b17cf1b52ef8 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0594d313-dbff-4c95-a1e2-f089a0a181e8 response: body: - string: '{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:39.5145035Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:15.2004888Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - efbc5e17-2fa1-4729-b38d-644599ed6937 + - 878a9f6f-036c-4f95-9210-3fef7c714010 content-length: - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 28 Apr 2021 01:27:38 GMT + - Thu, 06 May 2021 20:45:14 GMT set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -608,7 +608,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - efbc5e17-2fa1-4729-b38d-644599ed6937 + - 878a9f6f-036c-4f95-9210-3fef7c714010 status: code: 200 message: OK @@ -624,13 +624,13 @@ interactions: User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c786e8e7-79fb-4bfa-8059-b17cf1b52ef8 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0594d313-dbff-4c95-a1e2-f089a0a181e8 response: body: - string: '{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}' + string: '{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}' headers: apim-request-id: - - b5aea7d7-45b9-4c31-b63a-72372277c00a + - c76823a9-3e6b-48da-ab30-15f03348f5df cache-control: - public,max-age=1 content-length: @@ -638,12 +638,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 28 Apr 2021 01:27:54 GMT + - Thu, 06 May 2021 20:45:30 GMT etag: - - '"DD5B94727512163C8CC772144E697488E247BD745B0C36E56FC8931D444A98C5"' + - '"C910C4995B43EC3686654B672BE96593B233A31CF3FFE1B64CD3F11D60095CD7"' set-cookie: - - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -655,7 +655,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b5aea7d7-45b9-4c31-b63a-72372277c00a + - c76823a9-3e6b-48da-ab30-15f03348f5df status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_cancel_job_async.test_cancel_job.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_cancel_job_async.test_cancel_job.yaml index 944b04297ec5..658c46c54199 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_cancel_job_async.test_cancel_job.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_cancel_job_async.test_cancel_job.yaml @@ -13,11 +13,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 28 Apr 2021 01:27:59 GMT + - Thu, 06 May 2021 20:45:30 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc414cf99-5cd7-4678-8293-beb80288f14d?restype=container + uri: https://redacted.blob.core.windows.net/src68f224f9-48d2-4936-86f0-8ec9946d3728?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 28 Apr 2021 01:27:59 GMT + - Thu, 06 May 2021 20:45:31 GMT etag: - - '"0x8D909E4DC25E30E"' + - '"0x8D910CFE39F6BD6"' last-modified: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -57,11 +57,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:31 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc414cf99-5cd7-4678-8293-beb80288f14d/d10af2bb-e3ad-481b-9f11-ee7d7ba122c5.txt + uri: https://redacted.blob.core.windows.net/src68f224f9-48d2-4936-86f0-8ec9946d3728/196b1e6d-0079-423e-987b-2b15c5ca3e06.txt response: body: string: '' @@ -71,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:27:59 GMT + - Thu, 06 May 2021 20:45:31 GMT etag: - - '"0x8D909E4DC4C0F05"' + - '"0x8D910CFE3C43B0B"' last-modified: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -107,11 +107,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:31 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc414cf99-5cd7-4678-8293-beb80288f14d/7dc608e1-72f5-469a-b821-ce7f3cddd428.txt + uri: https://redacted.blob.core.windows.net/src68f224f9-48d2-4936-86f0-8ec9946d3728/3dd8b48c-8f55-471b-a9a1-3af2181741f2.txt response: body: string: '' @@ -121,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:27:59 GMT + - Thu, 06 May 2021 20:45:31 GMT etag: - - '"0x8D909E4DC732629"' + - '"0x8D910CFE3E89284"' last-modified: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -157,11 +157,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:28:01 GMT + - Thu, 06 May 2021 20:45:31 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc414cf99-5cd7-4678-8293-beb80288f14d/c837d10b-a003-4701-8b2a-124d55b653e6.txt + uri: https://redacted.blob.core.windows.net/src68f224f9-48d2-4936-86f0-8ec9946d3728/73da48c7-d2fc-4e38-8089-676a78d3d656.txt response: body: string: '' @@ -171,11 +171,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:31 GMT etag: - - '"0x8D909E4DC961DE8"' + - '"0x8D910CFE40DD48D"' last-modified: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -207,11 +207,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:28:01 GMT + - Thu, 06 May 2021 20:45:32 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc414cf99-5cd7-4678-8293-beb80288f14d/5c6347e2-a586-49d9-9f9a-7bec1b8c468d.txt + uri: https://redacted.blob.core.windows.net/src68f224f9-48d2-4936-86f0-8ec9946d3728/05621a80-b0ef-488d-9857-4d93bc2c80f4.txt response: body: string: '' @@ -221,11 +221,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:32 GMT etag: - - '"0x8D909E4DCB915A0"' + - '"0x8D910CFE431B6C6"' last-modified: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -257,11 +257,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:28:01 GMT + - Thu, 06 May 2021 20:45:32 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc414cf99-5cd7-4678-8293-beb80288f14d/a09dd93f-ba91-401e-bd50-de6006650217.txt + uri: https://redacted.blob.core.windows.net/src68f224f9-48d2-4936-86f0-8ec9946d3728/3e26fe1a-8632-4539-8cfa-0f79be4839ee.txt response: body: string: '' @@ -271,11 +271,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:32 GMT etag: - - '"0x8D909E4DCE22909"' + - '"0x8D910CFE45571F3"' last-modified: - - Wed, 28 Apr 2021 01:28:01 GMT + - Thu, 06 May 2021 20:45:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -307,11 +307,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:28:01 GMT + - Thu, 06 May 2021 20:45:32 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc414cf99-5cd7-4678-8293-beb80288f14d/c20056ed-88e7-46ca-bfa0-1f10ee05441e.txt + uri: https://redacted.blob.core.windows.net/src68f224f9-48d2-4936-86f0-8ec9946d3728/d269ac97-fce8-4341-8b87-15312d979519.txt response: body: string: '' @@ -321,11 +321,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:28:00 GMT + - Thu, 06 May 2021 20:45:32 GMT etag: - - '"0x8D909E4DD0520C5"' + - '"0x8D910CFE479A26C"' last-modified: - - Wed, 28 Apr 2021 01:28:01 GMT + - Thu, 06 May 2021 20:45:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -357,11 +357,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:28:02 GMT + - Thu, 06 May 2021 20:45:32 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc414cf99-5cd7-4678-8293-beb80288f14d/fe9b644e-017e-4478-b2a9-f46046eb96c1.txt + uri: https://redacted.blob.core.windows.net/src68f224f9-48d2-4936-86f0-8ec9946d3728/9d8b026c-eddf-46fe-847d-530410662a33.txt response: body: string: '' @@ -371,11 +371,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:28:01 GMT + - Thu, 06 May 2021 20:45:32 GMT etag: - - '"0x8D909E4DD2A62CA"' + - '"0x8D910CFE49D5D99"' last-modified: - - Wed, 28 Apr 2021 01:28:01 GMT + - Thu, 06 May 2021 20:45:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -407,11 +407,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 28 Apr 2021 01:28:02 GMT + - Thu, 06 May 2021 20:45:33 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc414cf99-5cd7-4678-8293-beb80288f14d/66615579-aefa-43a9-80b1-7bd68a80c66a.txt + uri: https://redacted.blob.core.windows.net/src68f224f9-48d2-4936-86f0-8ec9946d3728/1c1694ee-156b-41f0-bbe3-acd50c1d0c2b.txt response: body: string: '' @@ -421,11 +421,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 28 Apr 2021 01:28:01 GMT + - Thu, 06 May 2021 20:45:32 GMT etag: - - '"0x8D909E4DD5F864F"' + - '"0x8D910CFE4C166F2"' last-modified: - - Wed, 28 Apr 2021 01:28:02 GMT + - Thu, 06 May 2021 20:45:33 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -451,11 +451,11 @@ interactions: User-Agent: - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 28 Apr 2021 01:28:02 GMT + - Thu, 06 May 2021 20:45:33 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targetd3259d95-9779-4db1-94e8-ad99df1e15bd?restype=container + uri: https://redacted.blob.core.windows.net/targetff5aa281-dd9d-47c0-ab65-762e3a5241bb?restype=container response: body: string: '' @@ -463,11 +463,11 @@ interactions: content-length: - '0' date: - - Wed, 28 Apr 2021 01:28:03 GMT + - Thu, 06 May 2021 20:45:33 GMT etag: - - '"0x8D909E4DE446C47"' + - '"0x8D910CFE5498E7F"' last-modified: - - Wed, 28 Apr 2021 01:28:03 GMT + - Thu, 06 May 2021 20:45:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -476,8 +476,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc414cf99-5cd7-4678-8293-beb80288f14d?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd3259d95-9779-4db1-94e8-ad99df1e15bd?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src68f224f9-48d2-4936-86f0-8ec9946d3728?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetff5aa281-dd9d-47c0-ab65-762e3a5241bb?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -494,15 +494,15 @@ interactions: body: string: '' headers: - apim-request-id: 0b5d5b37-71b7-443d-9f46-919c998f9773 + apim-request-id: 98425b48-a241-49f4-98ca-7e203085f370 content-length: '0' - date: Wed, 28 Apr 2021 01:28:04 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/72bc3e84-4918-4f8e-8668-d1d6f35c9967 - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:45:34 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6857629c-791f-4bd9-85ff-b638e3b3365c + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0b5d5b37-71b7-443d-9f46-919c998f9773 + x-requestid: 98425b48-a241-49f4-98ca-7e203085f370 status: code: 202 message: Accepted @@ -515,28 +515,28 @@ interactions: User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/72bc3e84-4918-4f8e-8668-d1d6f35c9967 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6857629c-791f-4bd9-85ff-b638e3b3365c response: body: - string: '{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:04.7317657Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:34.8852079Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 26d7f222-b157-4ccc-b17e-cc30ddb4f7dd + apim-request-id: 1b329e81-14ea-4ea0-bdea-28c64c8f33ac cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 28 Apr 2021 01:28:04 GMT - etag: '"0947EFB356635C148832AECE90726BEECD4EE4F8E841E3D3B77D45755B02D11F"' - set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:45:34 GMT + etag: '"3A396559D2DB168295A9F2903811DE6AB5A1F2D22A75A1048569BF83C412F590"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 26d7f222-b157-4ccc-b17e-cc30ddb4f7dd + x-requestid: 1b329e81-14ea-4ea0-bdea-28c64c8f33ac status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/72bc3e84-4918-4f8e-8668-d1d6f35c9967 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6857629c-791f-4bd9-85ff-b638e3b3365c - request: body: null headers: @@ -545,26 +545,26 @@ interactions: User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/72bc3e84-4918-4f8e-8668-d1d6f35c9967 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6857629c-791f-4bd9-85ff-b638e3b3365c response: body: - string: '{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:05.0754376Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:35.1915044Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 8527b877-7a79-490b-aa07-74a64bd986fa + apim-request-id: b5cde481-36e9-4566-be15-e7071a348cf8 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 28 Apr 2021 01:28:05 GMT - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:45:34 GMT + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8527b877-7a79-490b-aa07-74a64bd986fa + x-requestid: b5cde481-36e9-4566-be15-e7071a348cf8 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/72bc3e84-4918-4f8e-8668-d1d6f35c9967 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6857629c-791f-4bd9-85ff-b638e3b3365c - request: body: null headers: @@ -573,26 +573,26 @@ interactions: User-Agent: - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/72bc3e84-4918-4f8e-8668-d1d6f35c9967 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6857629c-791f-4bd9-85ff-b638e3b3365c response: body: - string: '{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}' + string: '{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}' headers: - apim-request-id: 35456b0e-df90-4eb4-9dbf-6b0b6f276030 + apim-request-id: aa49488a-6462-425b-9ee6-4a0e21ea8744 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 28 Apr 2021 01:28:20 GMT - etag: '"748D8BB278E75FDEECF8672D5AE3DC3C5DF8DC8E060C16DB53B94FC1E4846B83"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:45:49 GMT + etag: '"C6C26CB20167065704BCA85A4C33D7A458CA29779B80409BFAA0061DBA596255"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 35456b0e-df90-4eb4-9dbf-6b0b6f276030 + x-requestid: aa49488a-6462-425b-9ee6-4a0e21ea8744 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/72bc3e84-4918-4f8e-8668-d1d6f35c9967 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6857629c-791f-4bd9-85ff-b638e3b3365c version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_document_status.test_list_statuses.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_document_status.test_list_statuses.yaml index c8d3b3494b9f..afb6b278305e 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_document_status.test_list_statuses.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_document_status.test_list_statuses.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:11:50 GMT + - Thu, 06 May 2021 20:45:50 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src540db78d-d45d-4d84-9558-80cd4279acb9?restype=container + uri: https://redacted.blob.core.windows.net/src655abdf2-71fe-4500-af04-e3a8c13b238b?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:11:51 GMT + - Thu, 06 May 2021 20:45:50 GMT etag: - - '"0x8D8F491FC472BE6"' + - '"0x8D910CFEFB6A2F4"' last-modified: - - Wed, 31 Mar 2021 22:11:51 GMT + - Thu, 06 May 2021 20:45:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:11:51 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 20:45:51 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src540db78d-d45d-4d84-9558-80cd4279acb9/3de6b3a0-20f5-4d58-aea6-590842e1be2b.txt + uri: https://redacted.blob.core.windows.net/src655abdf2-71fe-4500-af04-e3a8c13b238b/8f07cd78-025a-4cab-bb9c-656712bbe0f5.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:11:51 GMT + - Thu, 06 May 2021 20:45:51 GMT etag: - - '"0x8D8F491FC6E5232"' + - '"0x8D910CFEFDAEDC9"' last-modified: - - Wed, 31 Mar 2021 22:11:51 GMT + - Thu, 06 May 2021 20:45:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:11:52 GMT + - Thu, 06 May 2021 20:45:51 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targetff8956d1-ead1-48f8-bd54-25586ccc0a09?restype=container + uri: https://redacted.blob.core.windows.net/target0737b8d9-4208-47b6-84a5-93d52a822eec?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:11:52 GMT + - Thu, 06 May 2021 20:45:52 GMT etag: - - '"0x8D8F491FD09B618"' + - '"0x8D910CFF06A501F"' last-modified: - - Wed, 31 Mar 2021 22:11:52 GMT + - Thu, 06 May 2021 20:45:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src540db78d-d45d-4d84-9558-80cd4279acb9?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetff8956d1-ead1-48f8-bd54-25586ccc0a09?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src655abdf2-71fe-4500-af04-e3a8c13b238b?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0737b8d9-4208-47b6-84a5-93d52a822eec?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -139,11 +137,11 @@ interactions: Connection: - keep-alive Content-Length: - - '490' + - '484' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -151,16 +149,16 @@ interactions: string: '' headers: apim-request-id: - - ada0aa30-0076-4bb0-8e91-73f65ae2ae79 + - 466168b6-fd77-401b-91d3-a7c959c5ea0b content-length: - '0' date: - - Wed, 31 Mar 2021 22:11:52 GMT + - Thu, 06 May 2021 20:45:52 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -168,7 +166,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ada0aa30-0076-4bb0-8e91-73f65ae2ae79 + - 466168b6-fd77-401b-91d3-a7c959c5ea0b status: code: 202 message: Accepted @@ -182,15 +180,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:53.0752608Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:45:53.4021678Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 930f22ce-54ed-4a1b-81e9-9e10f045ef05 + - edc41ea9-3f2e-408f-b095-e035934e1c6a cache-control: - public,max-age=1 content-length: @@ -198,12 +196,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:11:52 GMT + - Thu, 06 May 2021 20:45:52 GMT etag: - - '"21CB94F34ECE59A5CC202743D8B86CE72951201088E309B006C61E7F77D658F3"' + - '"B7A2543737EDF41FE00A304FDA5271C83A06EB7538008A713F2318958B43E985"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -215,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 930f22ce-54ed-4a1b-81e9-9e10f045ef05 + - edc41ea9-3f2e-408f-b095-e035934e1c6a status: code: 200 message: OK @@ -229,62 +227,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 - response: - body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:53.0752608Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - c01660af-a43c-4772-b5a2-a2fd88e21bfc - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:11:52 GMT - etag: - - '"21CB94F34ECE59A5CC202743D8B86CE72951201088E309B006C61E7F77D658F3"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - c01660af-a43c-4772-b5a2-a2fd88e21bfc - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:54.0365758Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:45:53.4021678Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 5fce00cf-6259-461c-a34d-263e95c6cb5a + - 86b8969b-f776-42ba-bcb6-92cf0bd86461 cache-control: - public,max-age=1 content-length: @@ -292,9 +243,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:11:53 GMT + - Thu, 06 May 2021 20:45:53 GMT etag: - - '"88D56F361E23B1F3B58711763DF654570929CF1E47A352EDBED504BD7033D547"' + - '"B7A2543737EDF41FE00A304FDA5271C83A06EB7538008A713F2318958B43E985"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -309,7 +260,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5fce00cf-6259-461c-a34d-263e95c6cb5a + - 86b8969b-f776-42ba-bcb6-92cf0bd86461 status: code: 200 message: OK @@ -323,15 +274,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:54.0365758Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:45:54.2756703Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 702837fd-8ece-4674-aeee-facee7aa0d95 + - c79c60c0-75a5-4487-9145-2cbcfdee54ce cache-control: - public,max-age=1 content-length: @@ -339,12 +290,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:11:54 GMT + - Thu, 06 May 2021 20:45:54 GMT etag: - - '"88D56F361E23B1F3B58711763DF654570929CF1E47A352EDBED504BD7033D547"' + - '"F07A6B99FA363A7630B2318258AF7CF4C025C76DFE433CF2F5B60A9F8AAF12E9"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -356,7 +307,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 702837fd-8ece-4674-aeee-facee7aa0d95 + - c79c60c0-75a5-4487-9145-2cbcfdee54ce status: code: 200 message: OK @@ -370,15 +321,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:54.0365758Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:45:54.2756703Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 326d60f1-9788-451d-8b99-55396c58a34f + - 140807b9-b18b-47bd-bfa8-01e6785867be cache-control: - public,max-age=1 content-length: @@ -386,9 +337,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:11:56 GMT + - Thu, 06 May 2021 20:45:55 GMT etag: - - '"88D56F361E23B1F3B58711763DF654570929CF1E47A352EDBED504BD7033D547"' + - '"F07A6B99FA363A7630B2318258AF7CF4C025C76DFE433CF2F5B60A9F8AAF12E9"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -403,7 +354,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 326d60f1-9788-451d-8b99-55396c58a34f + - 140807b9-b18b-47bd-bfa8-01e6785867be status: code: 200 message: OK @@ -417,15 +368,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:54.0365758Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:45:54.2756703Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - f28a5447-8214-4076-838f-794f295cf7d9 + - d73a557a-6e8f-435a-bdfb-b5826bc045cb cache-control: - public,max-age=1 content-length: @@ -433,106 +384,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:11:57 GMT - etag: - - '"88D56F361E23B1F3B58711763DF654570929CF1E47A352EDBED504BD7033D547"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - f28a5447-8214-4076-838f-794f295cf7d9 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 - response: - body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:59.1368607Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 8dd78de6-6632-4962-a1e0-98676a46dc63 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:11:58 GMT - etag: - - '"9BDE124FE80DA33834620B8D228E52E37D7C9EBDF06AC53C0CA4ED64E5FC1E12"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 8dd78de6-6632-4962-a1e0-98676a46dc63 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 - response: - body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:59.1368607Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 2ee47cb6-49a8-467e-983b-e7b7115c4478 - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:11:59 GMT + - Thu, 06 May 2021 20:45:56 GMT etag: - - '"9BDE124FE80DA33834620B8D228E52E37D7C9EBDF06AC53C0CA4ED64E5FC1E12"' + - '"F07A6B99FA363A7630B2318258AF7CF4C025C76DFE433CF2F5B60A9F8AAF12E9"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -544,7 +401,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2ee47cb6-49a8-467e-983b-e7b7115c4478 + - d73a557a-6e8f-435a-bdfb-b5826bc045cb status: code: 200 message: OK @@ -558,25 +415,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:59.1368607Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:45:54.2756703Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 7f4c2196-7127-4be7-b1e5-3e495e2d8b9c + - 9743a109-70a3-492d-9d29-2c5c8f33f669 cache-control: - public,max-age=1 content-length: - - '289' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:00 GMT + - Thu, 06 May 2021 20:45:57 GMT etag: - - '"9BDE124FE80DA33834620B8D228E52E37D7C9EBDF06AC53C0CA4ED64E5FC1E12"' + - '"F07A6B99FA363A7630B2318258AF7CF4C025C76DFE433CF2F5B60A9F8AAF12E9"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -591,7 +448,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 7f4c2196-7127-4be7-b1e5-3e495e2d8b9c + - 9743a109-70a3-492d-9d29-2c5c8f33f669 status: code: 200 message: OK @@ -605,28 +462,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:59.1368607Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:45:54.2756703Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 11b04abf-b578-4190-b261-c3d1d1c2063e + - 469a2cec-a580-4985-bd4f-fec53d4a681b cache-control: - public,max-age=1 content-length: - - '289' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:01 GMT + - Thu, 06 May 2021 20:45:58 GMT etag: - - '"9BDE124FE80DA33834620B8D228E52E37D7C9EBDF06AC53C0CA4ED64E5FC1E12"' + - '"F07A6B99FA363A7630B2318258AF7CF4C025C76DFE433CF2F5B60A9F8AAF12E9"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -638,7 +495,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 11b04abf-b578-4190-b261-c3d1d1c2063e + - 469a2cec-a580-4985-bd4f-fec53d4a681b status: code: 200 message: OK @@ -652,15 +509,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:59.1368607Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 65583009-86cf-40ba-ab8d-8eacb3a2591b + - b0997eaa-ca45-4ce5-bfa1-228a7d8a93aa cache-control: - public,max-age=1 content-length: @@ -668,9 +525,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:02 GMT + - Thu, 06 May 2021 20:45:59 GMT etag: - - '"9BDE124FE80DA33834620B8D228E52E37D7C9EBDF06AC53C0CA4ED64E5FC1E12"' + - '"54029E3BA7B7FC798198F74EDD0FABC1939B7015E8C310D665E67C5BE6C1699D"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -685,7 +542,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 65583009-86cf-40ba-ab8d-8eacb3a2591b + - b0997eaa-ca45-4ce5-bfa1-228a7d8a93aa status: code: 200 message: OK @@ -699,15 +556,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:59.1368607Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - b324fb73-989c-4c40-8fb8-e9bc6b6f240e + - 742c2d80-c39c-469c-97f9-b5f9fa386107 cache-control: - public,max-age=1 content-length: @@ -715,12 +572,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:04 GMT + - Thu, 06 May 2021 20:46:01 GMT etag: - - '"9BDE124FE80DA33834620B8D228E52E37D7C9EBDF06AC53C0CA4ED64E5FC1E12"' + - '"54029E3BA7B7FC798198F74EDD0FABC1939B7015E8C310D665E67C5BE6C1699D"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -732,7 +589,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b324fb73-989c-4c40-8fb8-e9bc6b6f240e + - 742c2d80-c39c-469c-97f9-b5f9fa386107 status: code: 200 message: OK @@ -746,15 +603,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:59.1368607Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 06b43682-e1a6-49ab-ac1c-a7a2d2f5e814 + - a3b88149-cac8-4595-9aaa-6ec400529448 cache-control: - public,max-age=1 content-length: @@ -762,9 +619,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:05 GMT + - Thu, 06 May 2021 20:46:02 GMT etag: - - '"9BDE124FE80DA33834620B8D228E52E37D7C9EBDF06AC53C0CA4ED64E5FC1E12"' + - '"54029E3BA7B7FC798198F74EDD0FABC1939B7015E8C310D665E67C5BE6C1699D"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -779,7 +636,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 06b43682-e1a6-49ab-ac1c-a7a2d2f5e814 + - a3b88149-cac8-4595-9aaa-6ec400529448 status: code: 200 message: OK @@ -793,15 +650,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:11:59.1368607Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 8b3649c1-ab6c-4e6f-8275-9dc3cfe431db + - d2900dea-f383-404a-9eb8-95f19fe431a8 cache-control: - public,max-age=1 content-length: @@ -809,12 +666,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:06 GMT + - Thu, 06 May 2021 20:46:03 GMT etag: - - '"9BDE124FE80DA33834620B8D228E52E37D7C9EBDF06AC53C0CA4ED64E5FC1E12"' + - '"54029E3BA7B7FC798198F74EDD0FABC1939B7015E8C310D665E67C5BE6C1699D"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -826,7 +683,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 8b3649c1-ab6c-4e6f-8275-9dc3cfe431db + - d2900dea-f383-404a-9eb8-95f19fe431a8 status: code: 200 message: OK @@ -840,15 +697,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd response: body: - string: '{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - 03475d8a-9672-4691-bc4e-b9b698190973 + - a7273026-4679-41b6-89e6-c53743843559 cache-control: - public,max-age=1 content-length: @@ -856,9 +713,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:07 GMT + - Thu, 06 May 2021 20:46:04 GMT etag: - - '"0B7CCF7472A66F73F867D65A2EF696B63ADAB1211FA0F6A1FB7012EEB926DC61"' + - '"FD6D194B214BC7D212F10BB1E78F73ADEDE9E619BEBC73C492806256D3615A97"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -873,7 +730,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 03475d8a-9672-4691-bc4e-b9b698190973 + - a7273026-4679-41b6-89e6-c53743843559 status: code: 200 message: OK @@ -887,15 +744,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385/documents?$skip=0&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd/documents?$skip=0 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetff8956d1-ead1-48f8-bd54-25586ccc0a09/3de6b3a0-20f5-4d58-aea6-590842e1be2b.txt","sourcePath":"https://redacted.blob.core.windows.net/src540db78d-d45d-4d84-9558-80cd4279acb9/3de6b3a0-20f5-4d58-aea6-590842e1be2b.txt","createdDateTimeUtc":"2021-03-31T22:11:59.1252545Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.1866483Z","status":"Succeeded","to":"es","progress":1,"id":"000008c4-0000-0000-0000-000000000000","characterCharged":17}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target0737b8d9-4208-47b6-84a5-93d52a822eec/8f07cd78-025a-4cab-bb9c-656712bbe0f5.txt","sourcePath":"https://redacted.blob.core.windows.net/src655abdf2-71fe-4500-af04-e3a8c13b238b/8f07cd78-025a-4cab-bb9c-656712bbe0f5.txt","createdDateTimeUtc":"2021-05-06T20:45:59.7254284Z","lastActionDateTimeUtc":"2021-05-06T20:46:05.1891102Z","status":"Succeeded","to":"es","progress":1,"id":"00002b41-0000-0000-0000-000000000000","characterCharged":17}]}' headers: apim-request-id: - - 75a0ee45-a578-470f-8744-3458991bacef + - 27f22d6a-adcd-40d5-bdbb-110eeaf28c2c cache-control: - public,max-age=1 content-length: @@ -903,12 +760,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:07 GMT + - Thu, 06 May 2021 20:46:04 GMT etag: - - '"190DE3AB13B9538985A5EF5FE9428669871ECB42DEECA4E28753D3980F9F02EB"' + - '"BE548C9380045BD0312F688C2B4F0365D286D159D64B7C0A13BF9E9A6345056C"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -920,7 +777,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 75a0ee45-a578-470f-8744-3458991bacef + - 27f22d6a-adcd-40d5-bdbb-110eeaf28c2c status: code: 200 message: OK @@ -934,15 +791,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f09a6e3c-17ca-47c0-9d92-9a9632174385/documents/000008c4-0000-0000-0000-000000000000 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/60b182f0-0ce9-436a-a8ce-f201632417fd/documents/00002b41-0000-0000-0000-000000000000 response: body: - string: '{"path":"https://redacted.blob.core.windows.net/targetff8956d1-ead1-48f8-bd54-25586ccc0a09/3de6b3a0-20f5-4d58-aea6-590842e1be2b.txt","sourcePath":"https://redacted.blob.core.windows.net/src540db78d-d45d-4d84-9558-80cd4279acb9/3de6b3a0-20f5-4d58-aea6-590842e1be2b.txt","createdDateTimeUtc":"2021-03-31T22:11:59.1252545Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.5969053Z","status":"Succeeded","to":"es","progress":1,"id":"000008c4-0000-0000-0000-000000000000","characterCharged":17}' + string: '{"path":"https://redacted.blob.core.windows.net/target0737b8d9-4208-47b6-84a5-93d52a822eec/8f07cd78-025a-4cab-bb9c-656712bbe0f5.txt","sourcePath":"https://redacted.blob.core.windows.net/src655abdf2-71fe-4500-af04-e3a8c13b238b/8f07cd78-025a-4cab-bb9c-656712bbe0f5.txt","createdDateTimeUtc":"2021-05-06T20:45:59.7254284Z","lastActionDateTimeUtc":"2021-05-06T20:46:05.1891102Z","status":"Succeeded","to":"es","progress":1,"id":"00002b41-0000-0000-0000-000000000000","characterCharged":17}' headers: apim-request-id: - - 09013141-36f0-4a23-9e33-3cd9c275364e + - 5f04aca5-61b3-4d1c-aa6f-3c443d1c58de cache-control: - public,max-age=1 content-length: @@ -950,9 +807,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:07 GMT + - Thu, 06 May 2021 20:46:04 GMT etag: - - '"6D7B8C04ED5E409C3DFBAF6B54525DC829C5EE42A097CF5AD8BCBCADCD6BC07A"' + - '"42C6A60A8F82698553135D576660DF54281DC8171CDF812C9FAFBE6BE7C8017D"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -967,7 +824,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 09013141-36f0-4a23-9e33-3cd9c275364e + - 5f04aca5-61b3-4d1c-aa6f-3c443d1c58de status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_document_status_async.test_list_statuses.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_document_status_async.test_list_statuses.yaml index e08356c98353..bcdddc73c310 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_document_status_async.test_list_statuses.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_document_status_async.test_list_statuses.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:12:09 GMT + - Thu, 06 May 2021 20:46:05 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srca9b3b09f-64a4-45c2-9355-3e58c7a072fc?restype=container + uri: https://redacted.blob.core.windows.net/src2e66a505-282c-4226-bc61-40b04fc2d210?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:12:09 GMT + - Thu, 06 May 2021 20:46:06 GMT etag: - - '"0x8D8F492075C2FD3"' + - '"0x8D910CFF8C9A710"' last-modified: - - Wed, 31 Mar 2021 22:12:09 GMT + - Thu, 06 May 2021 20:46:06 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:12:10 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 20:46:06 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srca9b3b09f-64a4-45c2-9355-3e58c7a072fc/d75beaf1-4481-43ac-84fd-68e667de165b.txt + uri: https://redacted.blob.core.windows.net/src2e66a505-282c-4226-bc61-40b04fc2d210/267671d2-1f76-4004-b72e-5803e68a7cb2.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:12:10 GMT + - Thu, 06 May 2021 20:46:06 GMT etag: - - '"0x8D8F49207851AFD"' + - '"0x8D910CFF8EE0D33"' last-modified: - - Wed, 31 Mar 2021 22:12:10 GMT + - Thu, 06 May 2021 20:46:07 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:12:10 GMT + - Thu, 06 May 2021 20:46:07 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target02f7d55f-47ca-4cf5-9431-d8cdd4eff9cb?restype=container + uri: https://redacted.blob.core.windows.net/target8a43de42-f0ae-4835-95ec-2851aad353bb?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:12:10 GMT + - Thu, 06 May 2021 20:46:07 GMT etag: - - '"0x8D8F492081C5E66"' + - '"0x8D910CFF97CF56B"' last-modified: - - Wed, 31 Mar 2021 22:12:11 GMT + - Thu, 06 May 2021 20:46:07 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,33 +126,33 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca9b3b09f-64a4-45c2-9355-3e58c7a072fc?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target02f7d55f-47ca-4cf5-9431-d8cdd4eff9cb?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2e66a505-282c-4226-bc61-40b04fc2d210?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8a43de42-f0ae-4835-95ec-2851aad353bb?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '490' + - '486' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: ef7d53f1-12c0-47e6-a47f-94a74780748f + apim-request-id: 7d12c903-5066-4992-ad82-b5281b5de319 content-length: '0' - date: Wed, 31 Mar 2021 22:12:11 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:46:07 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ef7d53f1-12c0-47e6-a47f-94a74780748f + x-requestid: 7d12c903-5066-4992-ad82-b5281b5de319 status: code: 202 message: Accepted @@ -165,426 +163,258 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b response: body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:11.7160019Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:08.5258039Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 63315c8d-2698-4a1f-94eb-91f2930bdf1e + apim-request-id: 26b36fbb-79d4-4d7b-a621-9f9413442f89 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:11 GMT - etag: '"5EB613C3005FF1B67FAD1423810E9A8D955B5C55F3643011EE0DAF120FAFBC92"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:46:08 GMT + etag: '"320849E35D9A247F9D9A66CAB897908150E6C5B59FCFACD4D68F270513776A11"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 63315c8d-2698-4a1f-94eb-91f2930bdf1e + x-requestid: 26b36fbb-79d4-4d7b-a621-9f9413442f89 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 - response: - body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:11.7160019Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 3b5cfd17-0443-4b44-bbe7-e02f830d900d - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:11 GMT - etag: '"5EB613C3005FF1B67FAD1423810E9A8D955B5C55F3643011EE0DAF120FAFBC92"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 3b5cfd17-0443-4b44-bbe7-e02f830d900d - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 - response: - body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:12.8155564Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 21d8afc9-9a14-4f8c-9522-61df68f7483f - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:12 GMT - etag: '"85F53BD05339ECEBAEB0AAEA9255131BAA25B72F984EC374D4CD62CA819960FA"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 21d8afc9-9a14-4f8c-9522-61df68f7483f - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 - response: - body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:14.1562477Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 27914114-e779-4940-961b-bb68fc2f9eb3 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:13 GMT - etag: '"08C28FC1810C2F1B89AD8C7B3414A732ECFE881EEFA5F75C14569D3D0E80EF54"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 27914114-e779-4940-961b-bb68fc2f9eb3 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b response: body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:14.1562477Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:08.5258039Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 6cc70ddc-db1a-4997-8bbf-dd83615931cd + apim-request-id: 04572156-17a4-408a-b3a3-7ef0e40b4139 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:14 GMT - etag: '"08C28FC1810C2F1B89AD8C7B3414A732ECFE881EEFA5F75C14569D3D0E80EF54"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:46:08 GMT + etag: '"320849E35D9A247F9D9A66CAB897908150E6C5B59FCFACD4D68F270513776A11"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6cc70ddc-db1a-4997-8bbf-dd83615931cd + x-requestid: 04572156-17a4-408a-b3a3-7ef0e40b4139 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b response: body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:14.1562477Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 67db18e6-eead-4647-bc24-7cb0d2769e83 + apim-request-id: 22693411-bc8b-4019-b7fd-1420cc4af0e2 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:16 GMT - etag: '"08C28FC1810C2F1B89AD8C7B3414A732ECFE881EEFA5F75C14569D3D0E80EF54"' + date: Thu, 06 May 2021 20:46:10 GMT + etag: '"08BFE7DF8EB5F83DD77C27B852D5C250E9560A32614CB8728CA6EAE6A916CA6A"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 67db18e6-eead-4647-bc24-7cb0d2769e83 + x-requestid: 22693411-bc8b-4019-b7fd-1420cc4af0e2 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b response: body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:14.1562477Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: e67aeba5-b0bb-416c-86c9-73fc039fd08c + apim-request-id: 8cd8cab7-bfe0-46cd-ae62-7f78fcdd9f70 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:17 GMT - etag: '"08C28FC1810C2F1B89AD8C7B3414A732ECFE881EEFA5F75C14569D3D0E80EF54"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:46:11 GMT + etag: '"08BFE7DF8EB5F83DD77C27B852D5C250E9560A32614CB8728CA6EAE6A916CA6A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e67aeba5-b0bb-416c-86c9-73fc039fd08c + x-requestid: 8cd8cab7-bfe0-46cd-ae62-7f78fcdd9f70 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b response: body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:14.1562477Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 6553353d-9480-4573-b6a1-6f66d02c1583 + apim-request-id: 2f61caaa-8032-4099-97f5-a69242b23c2b cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:18 GMT - etag: '"08C28FC1810C2F1B89AD8C7B3414A732ECFE881EEFA5F75C14569D3D0E80EF54"' + date: Thu, 06 May 2021 20:46:12 GMT + etag: '"08BFE7DF8EB5F83DD77C27B852D5C250E9560A32614CB8728CA6EAE6A916CA6A"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6553353d-9480-4573-b6a1-6f66d02c1583 + x-requestid: 2f61caaa-8032-4099-97f5-a69242b23c2b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b response: body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:14.1562477Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: c7ec83e3-f347-4eef-ad01-ed9150629c0a + apim-request-id: e272a2ac-94b4-4c0b-934e-6fa525fa9fea cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:19 GMT - etag: '"08C28FC1810C2F1B89AD8C7B3414A732ECFE881EEFA5F75C14569D3D0E80EF54"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:46:13 GMT + etag: '"08BFE7DF8EB5F83DD77C27B852D5C250E9560A32614CB8728CA6EAE6A916CA6A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c7ec83e3-f347-4eef-ad01-ed9150629c0a + x-requestid: e272a2ac-94b4-4c0b-934e-6fa525fa9fea status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b response: body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:14.1562477Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: - apim-request-id: abc77cb6-d447-46cd-9182-cbc3aec46eeb + apim-request-id: bc55714b-afb5-4d03-bb1c-ddfc26c2bdc9 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:20 GMT - etag: '"08C28FC1810C2F1B89AD8C7B3414A732ECFE881EEFA5F75C14569D3D0E80EF54"' + date: Thu, 06 May 2021 20:46:14 GMT + etag: '"6861DD9340FACF461DC4147416EB3C0E09CDE7B7A6F6FDB1F907CE401B9181FA"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: abc77cb6-d447-46cd-9182-cbc3aec46eeb + x-requestid: bc55714b-afb5-4d03-bb1c-ddfc26c2bdc9 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 - response: - body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:14.1562477Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: ae973960-d384-48e9-babd-c75b5769c5cb - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:21 GMT - etag: '"08C28FC1810C2F1B89AD8C7B3414A732ECFE881EEFA5F75C14569D3D0E80EF54"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: ae973960-d384-48e9-babd-c75b5769c5cb - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 - response: - body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:14.1562477Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: aed4c4d4-6455-4550-9035-0d32904682b0 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:22 GMT - etag: '"08C28FC1810C2F1B89AD8C7B3414A732ECFE881EEFA5F75C14569D3D0E80EF54"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: aed4c4d4-6455-4550-9035-0d32904682b0 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 - response: - body: - string: '{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' - headers: - apim-request-id: 4cc5c296-ecfc-438a-be55-17b81bd25b94 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:24 GMT - etag: '"BF1F42E2BB4D85B7BD6D2994F5BD766C2A5837D735873DCBDBD7D1E14821C3D0"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 4cc5c296-ecfc-438a-be55-17b81bd25b94 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7/documents?$skip=0&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b/documents?$skip=0 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target02f7d55f-47ca-4cf5-9431-d8cdd4eff9cb/d75beaf1-4481-43ac-84fd-68e667de165b.txt","sourcePath":"https://redacted.blob.core.windows.net/srca9b3b09f-64a4-45c2-9355-3e58c7a072fc/d75beaf1-4481-43ac-84fd-68e667de165b.txt","createdDateTimeUtc":"2021-03-31T22:12:14.1493202Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.7223242Z","status":"Succeeded","to":"es","progress":1,"id":"000008c5-0000-0000-0000-000000000000","characterCharged":17}]}' + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target8a43de42-f0ae-4835-95ec-2851aad353bb/267671d2-1f76-4004-b72e-5803e68a7cb2.txt","sourcePath":"https://redacted.blob.core.windows.net/src2e66a505-282c-4226-bc61-40b04fc2d210/267671d2-1f76-4004-b72e-5803e68a7cb2.txt","createdDateTimeUtc":"2021-05-06T20:46:09.807818Z","lastActionDateTimeUtc":"2021-05-06T20:46:15.1987117Z","status":"Succeeded","to":"es","progress":1,"id":"00002b42-0000-0000-0000-000000000000","characterCharged":17}]}' headers: - apim-request-id: 0d0eb3fe-5162-46d4-84ff-5cf3378f75eb + apim-request-id: e41685bb-1469-4bf9-9237-8bcf734b6f05 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:24 GMT - etag: '"D5AD9989021CF50A6E834C969A34649BDD9FEABDACB21E336CF9349095E8DE78"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:46:14 GMT + etag: '"DE7B2AD61C67D6950BFB511F37A988FB7807E28B1C9D918578255839B6B4B08C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0d0eb3fe-5162-46d4-84ff-5cf3378f75eb + x-requestid: e41685bb-1469-4bf9-9237-8bcf734b6f05 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7/documents?$skip=0&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b/documents?$skip=0 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7/documents/000008c5-0000-0000-0000-000000000000 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b/documents/00002b42-0000-0000-0000-000000000000 response: body: - string: '{"path":"https://redacted.blob.core.windows.net/target02f7d55f-47ca-4cf5-9431-d8cdd4eff9cb/d75beaf1-4481-43ac-84fd-68e667de165b.txt","sourcePath":"https://redacted.blob.core.windows.net/srca9b3b09f-64a4-45c2-9355-3e58c7a072fc/d75beaf1-4481-43ac-84fd-68e667de165b.txt","createdDateTimeUtc":"2021-03-31T22:12:14.1493202Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.7223242Z","status":"Succeeded","to":"es","progress":1,"id":"000008c5-0000-0000-0000-000000000000","characterCharged":17}' + string: '{"path":"https://redacted.blob.core.windows.net/target8a43de42-f0ae-4835-95ec-2851aad353bb/267671d2-1f76-4004-b72e-5803e68a7cb2.txt","sourcePath":"https://redacted.blob.core.windows.net/src2e66a505-282c-4226-bc61-40b04fc2d210/267671d2-1f76-4004-b72e-5803e68a7cb2.txt","createdDateTimeUtc":"2021-05-06T20:46:09.807818Z","lastActionDateTimeUtc":"2021-05-06T20:46:15.1987117Z","status":"Succeeded","to":"es","progress":1,"id":"00002b42-0000-0000-0000-000000000000","characterCharged":17}' headers: - apim-request-id: d92f34b8-23e5-439e-b22b-661a301a9088 + apim-request-id: b3e52a82-da1b-4232-8e44-3dab5fe059ac cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:12:24 GMT - etag: '"8F9D9A15FD934E0CD9522EF4EF9A6BE226F49B09F31F1A17B695953D7831A9D3"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:46:15 GMT + etag: '"C8AB2A14DA32F8F2A53B0F67FF3D0D416E70F44B23D8708B99315AC0D0A67119"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d92f34b8-23e5-439e-b22b-661a301a9088 + x-requestid: b3e52a82-da1b-4232-8e44-3dab5fe059ac status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1e68b310-5586-4321-b67c-d0bb2b9dabb7/documents/000008c5-0000-0000-0000-000000000000 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e374ede3-cc53-4fb6-8bbc-36597cdd0c0b/documents/00002b42-0000-0000-0000-000000000000 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs.yaml index 37881fbe1821..f4ded2d3057e 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:12:25 GMT + - Thu, 06 May 2021 20:46:15 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src4f9130a7-d892-4d9b-8070-d78d7514bc39?restype=container + uri: https://redacted.blob.core.windows.net/src4c40e1db-7400-4b37-a2b0-9d3f3c0f7b49?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:12:25 GMT + - Thu, 06 May 2021 20:46:16 GMT etag: - - '"0x8D8F49210EA329F"' + - '"0x8D910CFFEBE44B5"' last-modified: - - Wed, 31 Mar 2021 22:12:25 GMT + - Thu, 06 May 2021 20:46:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -38,7 +38,7 @@ interactions: code: 201 message: Created - request: - body: This is some text + body: This is written in english. headers: Accept: - application/xml @@ -47,23 +47,21 @@ interactions: Connection: - keep-alive Content-Length: - - '17' + - '27' Content-Type: - application/octet-stream If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:12:26 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 20:46:16 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src4f9130a7-d892-4d9b-8070-d78d7514bc39/48ce3306-5f0c-45e1-8c79-d05c9d660a9e.txt + uri: https://redacted.blob.core.windows.net/src4c40e1db-7400-4b37-a2b0-9d3f3c0f7b49/7f6ae0e9-c412-4b7a-83f8-98d8ebeac467.txt response: body: string: '' @@ -71,17 +69,17 @@ interactions: content-length: - '0' content-md5: - - lyFPYyJLwenMTaN3qtznxw== + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:25 GMT + - Thu, 06 May 2021 20:46:16 GMT etag: - - '"0x8D8F4921110DD57"' + - '"0x8D910CFFEE307E9"' last-modified: - - Wed, 31 Mar 2021 22:12:26 GMT + - Thu, 06 May 2021 20:46:17 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: - - SqmNKeH10UQ= + - NB4xBtawP6g= x-ms-request-server-encrypted: - 'true' x-ms-version: @@ -90,7 +88,7 @@ interactions: code: 201 message: Created - request: - body: null + body: This is written in english. headers: Accept: - application/xml @@ -99,286 +97,298 @@ interactions: Connection: - keep-alive Content-Length: - - '0' + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:12:26 GMT + - Thu, 06 May 2021 20:46:17 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target89343a55-bcbf-4963-8dd2-8d3f13bbbbad?restype=container + uri: https://redacted.blob.core.windows.net/src4c40e1db-7400-4b37-a2b0-9d3f3c0f7b49/8c84c52c-39ce-482e-a883-4b667f98d992.txt response: body: string: '' headers: content-length: - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:26 GMT + - Thu, 06 May 2021 20:46:17 GMT etag: - - '"0x8D8F49211B159AB"' + - '"0x8D910CFFF05D877"' last-modified: - - Wed, 31 Mar 2021 22:12:27 GMT + - Thu, 06 May 2021 20:46:17 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' x-ms-version: - '2020-06-12' status: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4f9130a7-d892-4d9b-8070-d78d7514bc39?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target89343a55-bcbf-4963-8dd2-8d3f13bbbbad?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", - "language": "es"}]}]}' + body: This is written in english. headers: Accept: - - application/json + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - - '488' + - '27' Content-Type: - - application/json + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src4c40e1db-7400-4b37-a2b0-9d3f3c0f7b49/2f6ca3d8-750a-4f15-9936-a8bf35ee1366.txt response: body: string: '' headers: - apim-request-id: - - 7161dcbe-629b-410b-a0af-5356e0cf57e0 content-length: - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:27 GMT - operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 7161dcbe-629b-410b-a0af-5356e0cf57e0 + - Thu, 06 May 2021 20:46:17 GMT + etag: + - '"0x8D910CFFF291E52"' + last-modified: + - Thu, 06 May 2021 20:46:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - application/json + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src4c40e1db-7400-4b37-a2b0-9d3f3c0f7b49/cb57be43-35e2-464b-9ad7-f6d5279b3b21.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:27.8551767Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - b3e8755a-6042-4db5-bc98-e7cb6caf1488 - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:27 GMT + - Thu, 06 May 2021 20:46:17 GMT etag: - - '"976A2FF3351A167B98B1B61F3C30D458E844780B0A80AA025E52904CCB9E5A1A"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - b3e8755a-6042-4db5-bc98-e7cb6caf1488 + - '"0x8D910CFFF5258AA"' + last-modified: + - Thu, 06 May 2021 20:46:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - application/json + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src4c40e1db-7400-4b37-a2b0-9d3f3c0f7b49/991429cb-d68c-4d5f-8e00-c88d5fc900c1.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:27.8551767Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 48fd195d-eb40-42a0-9345-a403262f03bf - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:27 GMT + - Thu, 06 May 2021 20:46:17 GMT etag: - - '"976A2FF3351A167B98B1B61F3C30D458E844780B0A80AA025E52904CCB9E5A1A"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 48fd195d-eb40-42a0-9345-a403262f03bf + - '"0x8D910CFFF757779"' + last-modified: + - Thu, 06 May 2021 20:46:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:18 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetb093df34-df89-4294-bd12-5def83d2ce41?restype=container response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:28.8748645Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 828ca0a6-dcf9-436e-9c22-41a7d2938d46 - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 31 Mar 2021 22:12:28 GMT + - Thu, 06 May 2021 20:46:18 GMT etag: - - '"AD3D5275A5F32FE315AD2205BAD0FC76425C99CBDF255CCEB87BB5F0E32E2B02"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 828ca0a6-dcf9-436e-9c22-41a7d2938d46 + - '"0x8D910D0000172AF"' + last-modified: + - Thu, 06 May 2021 20:46:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4c40e1db-7400-4b37-a2b0-9d3f3c0f7b49?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb093df34-df89-4294-bd12-5def83d2ce41?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:28.8748645Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: apim-request-id: - - b9f8fd7f-e127-4b09-92db-584b11080ccf - cache-control: - - public,max-age=1 + - 42651a1f-f419-4b20-95b6-7d9ae615b18b content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 31 Mar 2021 22:12:30 GMT - etag: - - '"AD3D5275A5F32FE315AD2205BAD0FC76425C99CBDF255CCEB87BB5F0E32E2B02"' + - Thu, 06 May 2021 20:46:19 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/3bcad46b-aa99-4081-8ff5-b53a90effa7b set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - b9f8fd7f-e127-4b09-92db-584b11080ccf + - 42651a1f-f419-4b20-95b6-7d9ae615b18b status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3bcad46b-aa99-4081-8ff5-b53a90effa7b response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:28.8748645Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:19.3926186Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - ec8b34f2-2fa2-499e-839c-c3ba6f488178 + - d52ffbb6-d0a6-4916-8374-bfa17bda0cdc cache-control: - public,max-age=1 content-length: @@ -386,9 +396,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:31 GMT + - Thu, 06 May 2021 20:46:19 GMT etag: - - '"AD3D5275A5F32FE315AD2205BAD0FC76425C99CBDF255CCEB87BB5F0E32E2B02"' + - '"EA10AD9B71BB9E590377B4D9D31A0A36E55952A49C4BA6C789A25BD6738ECD01"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -403,7 +413,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ec8b34f2-2fa2-499e-839c-c3ba6f488178 + - d52ffbb6-d0a6-4916-8374-bfa17bda0cdc status: code: 200 message: OK @@ -411,407 +421,402 @@ interactions: body: null headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf3af24fe-433c-4422-b093-24046ea08066?restype=container response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:28.8748645Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - b59229f7-bbff-4923-bb14-bcfb4ef0cbf5 - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 31 Mar 2021 22:12:32 GMT + - Thu, 06 May 2021 20:46:20 GMT etag: - - '"AD3D5275A5F32FE315AD2205BAD0FC76425C99CBDF255CCEB87BB5F0E32E2B02"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - b59229f7-bbff-4923-bb14-bcfb4ef0cbf5 + - '"0x8D910D000ED7849"' + last-modified: + - Thu, 06 May 2021 20:46:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf3af24fe-433c-4422-b093-24046ea08066/c0c7abdc-b68c-40b7-95de-be7aa218bc4b.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:28.8748645Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 23c896b8-1d1a-4061-bffa-7444b6c9d3ec - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:33 GMT + - Thu, 06 May 2021 20:46:20 GMT etag: - - '"AD3D5275A5F32FE315AD2205BAD0FC76425C99CBDF255CCEB87BB5F0E32E2B02"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 23c896b8-1d1a-4061-bffa-7444b6c9d3ec + - '"0x8D910D0011197F8"' + last-modified: + - Thu, 06 May 2021 20:46:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf3af24fe-433c-4422-b093-24046ea08066/f6a783f6-39dd-423a-8879-fad45de1ebcb.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:28.8748645Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 77fdda3c-12f5-4bdc-aed9-b65318acea0e - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:34 GMT + - Thu, 06 May 2021 20:46:20 GMT etag: - - '"AD3D5275A5F32FE315AD2205BAD0FC76425C99CBDF255CCEB87BB5F0E32E2B02"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 77fdda3c-12f5-4bdc-aed9-b65318acea0e + - '"0x8D910D001352C00"' + last-modified: + - Thu, 06 May 2021 20:46:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf3af24fe-433c-4422-b093-24046ea08066/452f2b9b-2e30-4f8f-95cf-3fb87a34030f.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:28.8748645Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 68e72d28-56ed-4f28-b835-431291dced1e - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:35 GMT + - Thu, 06 May 2021 20:46:21 GMT etag: - - '"AD3D5275A5F32FE315AD2205BAD0FC76425C99CBDF255CCEB87BB5F0E32E2B02"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 68e72d28-56ed-4f28-b835-431291dced1e + - '"0x8D910D001595C5C"' + last-modified: + - Thu, 06 May 2021 20:46:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf3af24fe-433c-4422-b093-24046ea08066/80a83b27-e611-4b39-b21c-b886c7082c03.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:28.8748645Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 01afd26e-98de-4e02-a901-e57e188b18b3 - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:37 GMT + - Thu, 06 May 2021 20:46:21 GMT etag: - - '"AD3D5275A5F32FE315AD2205BAD0FC76425C99CBDF255CCEB87BB5F0E32E2B02"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 01afd26e-98de-4e02-a901-e57e188b18b3 + - '"0x8D910D0017D65C3"' + last-modified: + - Thu, 06 May 2021 20:46:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf3af24fe-433c-4422-b093-24046ea08066/9c83e1de-8e35-411c-b8b1-656e03f519c3.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:28.8748645Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 9b15eeaf-dcea-425e-97b0-2913907db6fc - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:38 GMT + - Thu, 06 May 2021 20:46:21 GMT etag: - - '"AD3D5275A5F32FE315AD2205BAD0FC76425C99CBDF255CCEB87BB5F0E32E2B02"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 9b15eeaf-dcea-425e-97b0-2913907db6fc + - '"0x8D910D001A16F16"' + last-modified: + - Thu, 06 May 2021 20:46:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target40982c76-8126-4a17-a7f9-08f5ca43f8bb?restype=container response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:39.2249806Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - afc764a0-7087-4313-8212-67e4c8214ee8 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 31 Mar 2021 22:12:39 GMT + - Thu, 06 May 2021 20:46:22 GMT etag: - - '"7688F73A842CFEBFF7614F8AB24660909B747CFACBC710039C29554EBE5B4939"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - afc764a0-7087-4313-8212-67e4c8214ee8 + - '"0x8D910D0022E7B61"' + last-modified: + - Thu, 06 May 2021 20:46:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf3af24fe-433c-4422-b093-24046ea08066?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target40982c76-8126-4a17-a7f9-08f5ca43f8bb?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '492' + Content-Type: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:39.2249806Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: apim-request-id: - - e84b47e6-a63a-4d92-9735-ae48a07e5d63 - cache-control: - - public,max-age=1 + - 1fec765d-6f32-4bb9-922c-bd752e8f3112 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 31 Mar 2021 22:12:40 GMT - etag: - - '"7688F73A842CFEBFF7614F8AB24660909B747CFACBC710039C29554EBE5B4939"' + - Thu, 06 May 2021 20:46:22 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/dd6586fb-8342-4ba4-803f-1a8d2349baae set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - e84b47e6-a63a-4d92-9735-ae48a07e5d63 + - 1fec765d-6f32-4bb9-922c-bd752e8f3112 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd6586fb-8342-4ba4-803f-1a8d2349baae response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:39.2249806Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:22.7386342Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - bdeb63bc-809f-42bf-bf2d-89d3e655d928 + - 7dea60f6-9c24-4100-b0c3-4c5fd8014d99 cache-control: - public,max-age=1 content-length: - - '289' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:41 GMT + - Thu, 06 May 2021 20:46:22 GMT etag: - - '"7688F73A842CFEBFF7614F8AB24660909B747CFACBC710039C29554EBE5B4939"' + - '"BE8EAF5F03B19F17D2557D77616D13BDB35DE274132076FF997917C16B68BAEE"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -826,7 +831,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - bdeb63bc-809f-42bf-bf2d-89d3e655d928 + - 7dea60f6-9c24-4100-b0c3-4c5fd8014d99 status: code: 200 message: OK @@ -834,316 +839,823 @@ interactions: body: null headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src459f8592-ace0-40be-9887-386504696e84?restype=container response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:39.2249806Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - ce34a820-0966-489a-90ca-c84666aeafe5 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 31 Mar 2021 22:12:42 GMT + - Thu, 06 May 2021 20:46:23 GMT etag: - - '"7688F73A842CFEBFF7614F8AB24660909B747CFACBC710039C29554EBE5B4939"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ce34a820-0966-489a-90ca-c84666aeafe5 + - '"0x8D910D002E4C4D7"' + last-modified: + - Thu, 06 May 2021 20:46:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src459f8592-ace0-40be-9887-386504696e84/63a0f55b-7e8a-4303-aece-c8b3776352de.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:39.2249806Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 110c8736-3892-4e9b-9698-1542b09d569a - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:44 GMT + - Thu, 06 May 2021 20:46:23 GMT etag: - - '"7688F73A842CFEBFF7614F8AB24660909B747CFACBC710039C29554EBE5B4939"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 110c8736-3892-4e9b-9698-1542b09d569a + - '"0x8D910D003084550"' + last-modified: + - Thu, 06 May 2021 20:46:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src459f8592-ace0-40be-9887-386504696e84/82354795-812c-45a4-abce-285937bb762f.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:39.2249806Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - dba21b50-108e-4842-875a-00ce927282e0 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:45 GMT + - Thu, 06 May 2021 20:46:23 GMT etag: - - '"7688F73A842CFEBFF7614F8AB24660909B747CFACBC710039C29554EBE5B4939"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - dba21b50-108e-4842-875a-00ce927282e0 + - '"0x8D910D0032B3CF3"' + last-modified: + - Thu, 06 May 2021 20:46:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src459f8592-ace0-40be-9887-386504696e84/386b585b-e65e-4e39-b333-ae56fb168d20.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:39.2249806Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - d0e73270-cf5d-4c14-8b48-b89c23a82db6 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:46 GMT + - Thu, 06 May 2021 20:46:23 GMT etag: - - '"7688F73A842CFEBFF7614F8AB24660909B747CFACBC710039C29554EBE5B4939"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - d0e73270-cf5d-4c14-8b48-b89c23a82db6 + - '"0x8D910D0034EF815"' + last-modified: + - Thu, 06 May 2021 20:46:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src459f8592-ace0-40be-9887-386504696e84/db3733ec-ec7a-4d4a-a5f0-fbabd54a4e5e.txt response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:39.2249806Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - c0f08c64-ac54-44a5-9158-d71db22f1ff7 - cache-control: - - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:47 GMT + - Thu, 06 May 2021 20:46:24 GMT etag: - - '"7688F73A842CFEBFF7614F8AB24660909B747CFACBC710039C29554EBE5B4939"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding + - '"0x8D910D003723DE6"' + last-modified: + - Thu, 06 May 2021 20:46:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src459f8592-ace0-40be-9887-386504696e84/a072d88a-87fd-459c-93ec-49b63bcfc1fc.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:24 GMT + etag: + - '"0x8D910D00395F8FF"' + last-modified: + - Thu, 06 May 2021 20:46:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target00a01379-a65f-4958-beb9-d2e95902520b?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:25 GMT + etag: + - '"0x8D910D00423DD94"' + last-modified: + - Thu, 06 May 2021 20:46:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src459f8592-ace0-40be-9887-386504696e84?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target00a01379-a65f-4958-beb9-d2e95902520b?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - e7ad9d55-2f80-40be-b05a-7c878b4c53a9 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:25 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1b871885-a310-42e2-91df-641107add485 + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - c0f08c64-ac54-44a5-9158-d71db22f1ff7 + - e7ad9d55-2f80-40be-b05a-7c878b4c53a9 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1b871885-a310-42e2-91df-641107add485 + response: + body: + string: '{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:26.0342379Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 3924fca3-5fed-44d3-af2b-d47dd4b8208b + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:46:25 GMT + etag: + - '"6ED6234A246657803DFF9356AC48B0DC1E39A72CF114BE01A9D7B011DAE07247"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3924fca3-5fed-44d3-af2b-d47dd4b8208b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:26 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2c9829c9-584d-490d-ae9c-56c5ed10832f?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:26 GMT + etag: + - '"0x8D910D004E23BF2"' + last-modified: + - Thu, 06 May 2021 20:46:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2c9829c9-584d-490d-ae9c-56c5ed10832f/ac8a53b8-92fe-47a3-a425-acaceb1f9370.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:27 GMT + etag: + - '"0x8D910D00506E30E"' + last-modified: + - Thu, 06 May 2021 20:46:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2c9829c9-584d-490d-ae9c-56c5ed10832f/6fc92d0f-bdc9-4480-9cdc-55df0f062089.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:27 GMT + etag: + - '"0x8D910D0052B88A8"' + last-modified: + - Thu, 06 May 2021 20:46:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2c9829c9-584d-490d-ae9c-56c5ed10832f/116e5c14-e9a1-4bd5-912b-1fc9d4e74bf8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:27 GMT + etag: + - '"0x8D910D0055118DB"' + last-modified: + - Thu, 06 May 2021 20:46:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2c9829c9-584d-490d-ae9c-56c5ed10832f/16451332-bcbf-4aeb-9b67-189a37df584c.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:27 GMT + etag: + - '"0x8D910D005765ADB"' + last-modified: + - Thu, 06 May 2021 20:46:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src2c9829c9-584d-490d-ae9c-56c5ed10832f/01dec309-07ba-434b-bdd5-26d0993d43b5.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:28 GMT + etag: + - '"0x8D910D0059B4EC6"' + last-modified: + - Thu, 06 May 2021 20:46:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetb7830c3e-9772-4f60-a48b-1ae00eb8366e?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:29 GMT + etag: + - '"0x8D910D0062D6784"' + last-modified: + - Thu, 06 May 2021 20:46:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2c9829c9-584d-490d-ae9c-56c5ed10832f?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb7830c3e-9772-4f60-a48b-1ae00eb8366e?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:39.2249806Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: apim-request-id: - - 3b93f85b-d1f3-4ef8-aef3-3e5c1100676f - cache-control: - - public,max-age=1 + - fb352add-d2d2-49af-9b71-76b23338f43e content-length: - - '289' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 31 Mar 2021 22:12:48 GMT - etag: - - '"7688F73A842CFEBFF7614F8AB24660909B747CFACBC710039C29554EBE5B4939"' + - Thu, 06 May 2021 20:46:29 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/f7219959-06f4-403c-a07a-86ea6c22eafe set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 3b93f85b-d1f3-4ef8-aef3-3e5c1100676f + - fb352add-d2d2-49af-9b71-76b23338f43e status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f7219959-06f4-403c-a07a-86ea6c22eafe response: body: - string: '{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:29.4482683Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 86fa55f1-4362-40c1-9a03-02e1a4af0cef + - 41cb40b6-4c2e-4a09-8357-3246e2e576cd cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:49 GMT + - Thu, 06 May 2021 20:46:29 GMT etag: - - '"A85BDE74BCA6E779AB1F32EF3A69DC9D640A98A9855B93CDB44F69CE78ACCF7E"' + - '"258476E46C1250EB1AE73525F7F8F08E32306E7266EDE6362308DAFFF6BE9A6D"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1155,7 +1667,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 86fa55f1-4362-40c1-9a03-02e1a4af0cef + - 41cb40b6-4c2e-4a09-8357-3246e2e576cd status: code: 200 message: OK @@ -1171,13 +1683,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:12:51 GMT + - Thu, 06 May 2021 20:46:29 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src8f36d009-ef8d-4010-9445-482d4775190c?restype=container + uri: https://redacted.blob.core.windows.net/srcde0eb300-b1fa-47a9-a80a-565e1f59e87b?restype=container response: body: string: '' @@ -1185,11 +1697,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:12:51 GMT + - Thu, 06 May 2021 20:46:30 GMT etag: - - '"0x8D8F492205AA291"' + - '"0x8D910D006EB0920"' last-modified: - - Wed, 31 Mar 2021 22:12:51 GMT + - Thu, 06 May 2021 20:46:30 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1198,7 +1710,7 @@ interactions: code: 201 message: Created - request: - body: This is some text + body: This is written in english. headers: Accept: - application/xml @@ -1207,23 +1719,21 @@ interactions: Connection: - keep-alive Content-Length: - - '17' + - '27' Content-Type: - application/octet-stream If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:12:52 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 20:46:30 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src8f36d009-ef8d-4010-9445-482d4775190c/e729e4bd-dac3-4525-983a-c9abb7e30261.txt + uri: https://redacted.blob.core.windows.net/srcde0eb300-b1fa-47a9-a80a-565e1f59e87b/2c72c7ec-3e0c-48a0-a787-69bc1d85d8ed.txt response: body: string: '' @@ -1231,17 +1741,17 @@ interactions: content-length: - '0' content-md5: - - lyFPYyJLwenMTaN3qtznxw== + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:51 GMT + - Thu, 06 May 2021 20:46:30 GMT etag: - - '"0x8D8F4922081E0B1"' + - '"0x8D910D007119129"' last-modified: - - Wed, 31 Mar 2021 22:12:52 GMT + - Thu, 06 May 2021 20:46:30 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: - - SqmNKeH10UQ= + - NB4xBtawP6g= x-ms-request-server-encrypted: - 'true' x-ms-version: @@ -1250,7 +1760,7 @@ interactions: code: 201 message: Created - request: - body: null + body: This is written in english. headers: Accept: - application/xml @@ -1259,296 +1769,308 @@ interactions: Connection: - keep-alive Content-Length: - - '0' + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:12:52 GMT + - Thu, 06 May 2021 20:46:30 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targetd58ad603-a07a-4548-b284-e26efb336193?restype=container + uri: https://redacted.blob.core.windows.net/srcde0eb300-b1fa-47a9-a80a-565e1f59e87b/4a3b7cbf-643a-42ed-b67c-53c36945fdc2.txt response: body: string: '' headers: content-length: - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:52 GMT + - Thu, 06 May 2021 20:46:30 GMT etag: - - '"0x8D8F49221177065"' + - '"0x8D910D00735735B"' last-modified: - - Wed, 31 Mar 2021 22:12:53 GMT + - Thu, 06 May 2021 20:46:30 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' x-ms-version: - '2020-06-12' status: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8f36d009-ef8d-4010-9445-482d4775190c?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd58ad603-a07a-4548-b284-e26efb336193?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", - "language": "es"}]}]}' + body: This is written in english. headers: Accept: - - application/json + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - - '492' + - '27' Content-Type: - - application/json + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcde0eb300-b1fa-47a9-a80a-565e1f59e87b/41fbd31b-4798-44f2-9618-43831c434aba.txt response: body: string: '' headers: - apim-request-id: - - 3831dd66-b231-4a4f-8969-c2832f58f49b content-length: - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:53 GMT - operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3831dd66-b231-4a4f-8969-c2832f58f49b + - Thu, 06 May 2021 20:46:30 GMT + etag: + - '"0x8D910D0075A6736"' + last-modified: + - Thu, 06 May 2021 20:46:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - application/json + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcde0eb300-b1fa-47a9-a80a-565e1f59e87b/0dddabf3-a87b-4037-a095-b5bbae7b62f7.txt response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:53.2555011Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 716123f0-68a5-444a-b8d1-158cc7c6af64 - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:53 GMT + - Thu, 06 May 2021 20:46:31 GMT etag: - - '"51D9F0AFFC8E9C5A89030B39101509828EC269BC067322677DFA412FCF32B546"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 716123f0-68a5-444a-b8d1-158cc7c6af64 + - '"0x8D910D0077E495F"' + last-modified: + - Thu, 06 May 2021 20:46:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: This is written in english. headers: Accept: - - application/json + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcde0eb300-b1fa-47a9-a80a-565e1f59e87b/2e9c53a6-87f1-49a6-89b0-2458235d064d.txt response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:53.2555011Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 5bac75e2-774b-47b9-89f1-3e1ceefc6541 - cache-control: - - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:12:53 GMT + - Thu, 06 May 2021 20:46:31 GMT etag: - - '"51D9F0AFFC8E9C5A89030B39101509828EC269BC067322677DFA412FCF32B546"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 5bac75e2-774b-47b9-89f1-3e1ceefc6541 + - '"0x8D910D007A33D42"' + last-modified: + - Thu, 06 May 2021 20:46:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' + - application/xml Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target7b6919ca-82c9-4092-b3d8-b24541376f1e?restype=container response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:54.423231Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: - apim-request-id: - - 693c3926-667f-4595-8a42-8c02cbb5d22c - cache-control: - - public,max-age=1 content-length: - - '291' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 31 Mar 2021 22:12:54 GMT + - Thu, 06 May 2021 20:46:31 GMT etag: - - '"529B3BB301B7A0D67F4F4794738667E88FA13ABDA87E49032CDA1B82BCE66A86"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 693c3926-667f-4595-8a42-8c02cbb5d22c + - '"0x8D910D0083083AD"' + last-modified: + - Thu, 06 May 2021 20:46:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcde0eb300-b1fa-47a9-a80a-565e1f59e87b?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target7b6919ca-82c9-4092-b3d8-b24541376f1e?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:54.423231Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '' headers: apim-request-id: - - bf5c54ec-5d51-4450-a3ff-52d26a8e48d6 - cache-control: - - public,max-age=1 + - 30534f66-baaa-4a7b-90c2-7ba525157a79 content-length: - - '291' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 31 Mar 2021 22:12:55 GMT - etag: - - '"529B3BB301B7A0D67F4F4794738667E88FA13ABDA87E49032CDA1B82BCE66A86"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding + - Thu, 06 May 2021 20:46:32 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1f3eab49-5954-412a-aff9-e9d6bb88956b + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - bf5c54ec-5d51-4450-a3ff-52d26a8e48d6 + - 30534f66-baaa-4a7b-90c2-7ba525157a79 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1f3eab49-5954-412a-aff9-e9d6bb88956b response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:54.423231Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:32.8162187Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 75a17985-d532-4c8d-8993-8b12c92ed55e + - 05d0c8bc-1756-4598-8e0e-be4618c5e4d5 cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:56 GMT + - Thu, 06 May 2021 20:46:32 GMT etag: - - '"529B3BB301B7A0D67F4F4794738667E88FA13ABDA87E49032CDA1B82BCE66A86"' + - '"8FA137FFD3F9F1086B11F160C0699F36C3350E51175041659B839C37B4E9192C"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -1563,7 +2085,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 75a17985-d532-4c8d-8993-8b12c92ed55e + - 05d0c8bc-1756-4598-8e0e-be4618c5e4d5 status: code: 200 message: OK @@ -1571,34 +2093,38 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:54.423231Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:32.8162187Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:32.5888297Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Running","summary":{"total":5,"failed":0,"success":0,"inProgress":5,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2322&$maxpagesize=50"}' headers: apim-request-id: - - 2f4f9ed9-4ac6-4ae4-a554-6b3e018733ed + - 9e067330-77b4-43bb-ac19-03d082b56d59 cache-control: - public,max-age=1 content-length: - - '291' + - '15353' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:58 GMT + - Thu, 06 May 2021 20:46:32 GMT etag: - - '"529B3BB301B7A0D67F4F4794738667E88FA13ABDA87E49032CDA1B82BCE66A86"' + - '"992E4AE6E08C185D6F6D0B7DE598F1372ED8D8C5ED715EA0DEE8C8DCC12BA29A"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1610,7 +2136,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2f4f9ed9-4ac6-4ae4-a554-6b3e018733ed + - 9e067330-77b4-43bb-ac19-03d082b56d59 status: code: 200 message: OK @@ -1618,31 +2144,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2322&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:54.423231Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2272&$maxpagesize=50"}' headers: apim-request-id: - - eabaf236-9642-482b-a8ec-db71c1ab9050 + - 869ab803-7a49-4793-857b-9a0c5d764cdd cache-control: - public,max-age=1 content-length: - - '291' + - '14809' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:12:59 GMT + - Thu, 06 May 2021 20:46:33 GMT etag: - - '"529B3BB301B7A0D67F4F4794738667E88FA13ABDA87E49032CDA1B82BCE66A86"' + - '"B1763A4F3AA5CCBED6DC827FD1B8930D884C80A0962AC779D2BF320D7565286D"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -1657,7 +2183,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - eabaf236-9642-482b-a8ec-db71c1ab9050 + - 869ab803-7a49-4793-857b-9a0c5d764cdd status: code: 200 message: OK @@ -1665,34 +2191,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2272&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:54.423231Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2222&$maxpagesize=50"}' headers: apim-request-id: - - 4e78824c-2cba-4707-8fe7-10064e3b63bc + - 0c9a2ea2-b221-4ecd-995d-0596a01a530a cache-control: - public,max-age=1 content-length: - - '291' + - '14808' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:00 GMT + - Thu, 06 May 2021 20:46:33 GMT etag: - - '"529B3BB301B7A0D67F4F4794738667E88FA13ABDA87E49032CDA1B82BCE66A86"' + - '"EB1D9BFE876E87F57812B24A21E548DD61226490D30DE2BDC29C6221249D1E50"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1704,7 +2230,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4e78824c-2cba-4707-8fe7-10064e3b63bc + - 0c9a2ea2-b221-4ecd-995d-0596a01a530a status: code: 200 message: OK @@ -1712,31 +2238,35 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2222&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:54.423231Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2172&$maxpagesize=50"}' headers: apim-request-id: - - 69451890-c4c1-452e-9361-ae39cd9f0b50 + - 5bf205c5-7240-4985-85ef-fcf432fa43dc cache-control: - public,max-age=1 content-length: - - '291' + - '15359' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:01 GMT + - Thu, 06 May 2021 20:46:33 GMT etag: - - '"529B3BB301B7A0D67F4F4794738667E88FA13ABDA87E49032CDA1B82BCE66A86"' + - '"BA4B31D484D3D3882ADA8E175D6B0C947546AC4E350DF619FBFC98CB4EEE35CB"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -1751,7 +2281,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 69451890-c4c1-452e-9361-ae39cd9f0b50 + - 5bf205c5-7240-4985-85ef-fcf432fa43dc status: code: 200 message: OK @@ -1759,34 +2289,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2172&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:54.423231Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2122&$maxpagesize=50"}' headers: apim-request-id: - - 01ab04c3-cfed-4e8b-ae16-26bc212c439a + - 58643012-151e-47f7-8a52-1c35910f53f1 cache-control: - public,max-age=1 content-length: - - '291' + - '14808' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:02 GMT + - Thu, 06 May 2021 20:46:34 GMT etag: - - '"529B3BB301B7A0D67F4F4794738667E88FA13ABDA87E49032CDA1B82BCE66A86"' + - '"37C1D028A444244691AFBA5A0C86712DB02EAB2740DDBBEB49D0EC77C581E3DB"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1798,7 +2328,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 01ab04c3-cfed-4e8b-ae16-26bc212c439a + - 58643012-151e-47f7-8a52-1c35910f53f1 status: code: 200 message: OK @@ -1806,31 +2336,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2122&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:12:54.423231Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2072&$maxpagesize=50"}' headers: apim-request-id: - - b80f3d3d-7379-4d58-9ed0-7d998eb129c6 + - 3bbb0b3c-f4fa-4e0a-be04-edc9692bdcd2 cache-control: - public,max-age=1 content-length: - - '291' + - '14814' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:03 GMT + - Thu, 06 May 2021 20:46:34 GMT etag: - - '"529B3BB301B7A0D67F4F4794738667E88FA13ABDA87E49032CDA1B82BCE66A86"' + - '"169CC4DC8475C697D794357BC795F4DBA7AF59A1AB89782B44DDDD2BB299CD15"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -1845,7 +2375,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b80f3d3d-7379-4d58-9ed0-7d998eb129c6 + - 3bbb0b3c-f4fa-4e0a-be04-edc9692bdcd2 status: code: 200 message: OK @@ -1853,34 +2383,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2072&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:04.2853613Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2022&$maxpagesize=50"}' headers: apim-request-id: - - f8cf520b-c4f9-4359-9d58-e7c136bfe2e6 + - b0528efa-d1db-4ea1-ac25-6364e0ff80f4 cache-control: - public,max-age=1 content-length: - - '289' + - '14813' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:05 GMT + - Thu, 06 May 2021 20:46:34 GMT etag: - - '"18D62F9A8CDD9EED0035395056D0EBF97AF730316202960B7D5573FCA6378820"' + - '"92F119D1BFC6E3C66D365579CC179A4ADFB1518C5167D513931EA2A1F34B3B43"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1892,7 +2422,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - f8cf520b-c4f9-4359-9d58-e7c136bfe2e6 + - b0528efa-d1db-4ea1-ac25-6364e0ff80f4 status: code: 200 message: OK @@ -1900,31 +2430,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2022&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:04.2853613Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=1972&$maxpagesize=50"}' headers: apim-request-id: - - f4032155-df80-45d1-ae82-6bb07cf61a6d + - b06af3bc-2079-4976-8666-40f78f591c6c cache-control: - public,max-age=1 content-length: - - '289' + - '14797' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:06 GMT + - Thu, 06 May 2021 20:46:34 GMT etag: - - '"18D62F9A8CDD9EED0035395056D0EBF97AF730316202960B7D5573FCA6378820"' + - '"04183D8D9A85BCAC19521A8240A231FD7D4B1FBFE7FB1551A18C2E9791CB61D6"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -1939,7 +2469,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - f4032155-df80-45d1-ae82-6bb07cf61a6d + - b06af3bc-2079-4976-8666-40f78f591c6c status: code: 200 message: OK @@ -1947,34 +2477,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=1972&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:04.2853613Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1922&$maxpagesize=50"}' headers: apim-request-id: - - b169e3b5-2974-4536-a0d1-6bf0628bd00f + - b831aaf6-df71-4c37-ab60-2274227e3396 cache-control: - public,max-age=1 content-length: - - '289' + - '14794' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:07 GMT + - Thu, 06 May 2021 20:46:35 GMT etag: - - '"18D62F9A8CDD9EED0035395056D0EBF97AF730316202960B7D5573FCA6378820"' + - '"FBAC94215A1058D047F65856E4C88FBB26059ABD921A84D18F41AB8DB2ADD21E"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1986,7 +2516,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b169e3b5-2974-4536-a0d1-6bf0628bd00f + - b831aaf6-df71-4c37-ab60-2274227e3396 status: code: 200 message: OK @@ -1994,31 +2524,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1922&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:04.2853613Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1872&$maxpagesize=50"}' headers: apim-request-id: - - 9f60dfbb-80b8-4429-ac05-dd5951c85d81 + - a9f11d29-abaf-4930-8120-f574e483d94b cache-control: - public,max-age=1 content-length: - - '289' + - '14802' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:08 GMT + - Thu, 06 May 2021 20:46:35 GMT etag: - - '"18D62F9A8CDD9EED0035395056D0EBF97AF730316202960B7D5573FCA6378820"' + - '"7DD855B7F1889A91B764029BBA2794B29FB1C362CD58D1EF5A2FF0BF5A21DD88"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -2033,7 +2563,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 9f60dfbb-80b8-4429-ac05-dd5951c85d81 + - a9f11d29-abaf-4930-8120-f574e483d94b status: code: 200 message: OK @@ -2041,34 +2571,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1872&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:04.2853613Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1822&$maxpagesize=50"}' headers: apim-request-id: - - 70f8a6a0-63da-4043-ad74-2f4a4ae47613 + - ceab136b-b1a0-4d07-b1c0-8b2eed8581ff cache-control: - public,max-age=1 content-length: - - '289' + - '14804' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:09 GMT + - Thu, 06 May 2021 20:46:35 GMT etag: - - '"18D62F9A8CDD9EED0035395056D0EBF97AF730316202960B7D5573FCA6378820"' + - '"3ABB92CF52FB57D77F2BA986909EBFE5D50D6D5965398C7E035C9F4B2DD0E97A"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2080,7 +2610,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 70f8a6a0-63da-4043-ad74-2f4a4ae47613 + - ceab136b-b1a0-4d07-b1c0-8b2eed8581ff status: code: 200 message: OK @@ -2088,31 +2618,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1822&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:04.2853613Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1772&$maxpagesize=50"}' headers: apim-request-id: - - cbc58fbe-5875-4e05-81cb-c0639f9d0174 + - 5820419b-711b-4d6a-97a7-4544e6b2ca39 cache-control: - public,max-age=1 content-length: - - '289' + - '14799' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:11 GMT + - Thu, 06 May 2021 20:46:35 GMT etag: - - '"18D62F9A8CDD9EED0035395056D0EBF97AF730316202960B7D5573FCA6378820"' + - '"4CA1603A7DB4E7B8C054CD98A4201CAC2D8133138F437BC01727162890007D01"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -2127,7 +2657,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cbc58fbe-5875-4e05-81cb-c0639f9d0174 + - 5820419b-711b-4d6a-97a7-4544e6b2ca39 status: code: 200 message: OK @@ -2135,34 +2665,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1772&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:04.2853613Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1722&$maxpagesize=50"}' headers: apim-request-id: - - 8827a47e-a827-46e4-8954-fb6c6021296f + - 5242ee1c-42a4-4bfe-b141-8dee80d4c271 cache-control: - public,max-age=1 content-length: - - '289' + - '14801' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:12 GMT + - Thu, 06 May 2021 20:46:36 GMT etag: - - '"18D62F9A8CDD9EED0035395056D0EBF97AF730316202960B7D5573FCA6378820"' + - '"5C261D17FB428289B17427BF5C036FCB5A923120254B33EDDCE8F08F643CFE56"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2174,7 +2704,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 8827a47e-a827-46e4-8954-fb6c6021296f + - 5242ee1c-42a4-4bfe-b141-8dee80d4c271 status: code: 200 message: OK @@ -2182,31 +2712,35 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1722&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:04.2853613Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1672&$maxpagesize=50"}' headers: apim-request-id: - - 39d0db2c-7816-4cd6-914b-878f99f2c731 + - 86f40832-83e0-4d0c-9a38-17f03a6024a9 cache-control: - public,max-age=1 content-length: - - '289' + - '15327' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:13 GMT + - Thu, 06 May 2021 20:46:36 GMT etag: - - '"18D62F9A8CDD9EED0035395056D0EBF97AF730316202960B7D5573FCA6378820"' + - '"012F197DC2B633179CB4093AC0BD4F596A67F541BD9091B18373EB148DEC729D"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -2221,7 +2755,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 39d0db2c-7816-4cd6-914b-878f99f2c731 + - 86f40832-83e0-4d0c-9a38-17f03a6024a9 status: code: 200 message: OK @@ -2229,34 +2763,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1672&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:04.2853613Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1622&$maxpagesize=50"}' headers: apim-request-id: - - 632c79bf-848e-47b9-8464-b626a7dbe1a5 + - 01b8528d-d48f-4d35-a58c-d7e0c99533c3 cache-control: - public,max-age=1 content-length: - - '289' + - '14795' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:14 GMT + - Thu, 06 May 2021 20:46:36 GMT etag: - - '"18D62F9A8CDD9EED0035395056D0EBF97AF730316202960B7D5573FCA6378820"' + - '"C7C9F707F432AEE83B87CD6B8FAF87592C2A7909DEDD099717F17A0A39E49271"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2268,7 +2802,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 632c79bf-848e-47b9-8464-b626a7dbe1a5 + - 01b8528d-d48f-4d35-a58c-d7e0c99533c3 status: code: 200 message: OK @@ -2276,34 +2810,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1622&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:04.2853613Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1572&$maxpagesize=50"}' headers: apim-request-id: - - d88c9c40-13f4-408c-ba1a-3e9df847fb8d + - a3c1cdec-1a38-4307-8693-d5838b441309 cache-control: - public,max-age=1 content-length: - - '289' + - '14802' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:15 GMT + - Thu, 06 May 2021 20:46:36 GMT etag: - - '"18D62F9A8CDD9EED0035395056D0EBF97AF730316202960B7D5573FCA6378820"' + - '"3B2B2AE650AACE276EBDD1EF4A1BB5D2CDD29FB61A35ECF3DF7E3E8916974214"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2315,7 +2849,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d88c9c40-13f4-408c-ba1a-3e9df847fb8d + - a3c1cdec-1a38-4307-8693-d5838b441309 status: code: 200 message: OK @@ -2323,34 +2857,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/94b12f0e-7b07-490f-ad55-8d292ff6283d + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1572&$maxpagesize=50 response: body: - string: '{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"value":[{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1522&$maxpagesize=50"}' headers: apim-request-id: - - 7c5fde01-4fd1-42f0-a3af-bc84bb1c5280 + - 0db9f934-f0b0-4b90-acc3-b1488ae233f8 cache-control: - public,max-age=1 content-length: - - '292' + - '14814' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:16 GMT + - Thu, 06 May 2021 20:46:37 GMT etag: - - '"34692C3BD927EC7C013EFE2F87CF94F0F16D159FDF29C4C393C3076FDBD0685D"' + - '"A21975EDE3381634678D7E678DD49A5D4C694DDB194020E0E44F52E89AC9B32A"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2362,142 +2896,12 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 7c5fde01-4fd1-42f0-a3af-bc84bb1c5280 + - 0db9f934-f0b0-4b90-acc3-b1488ae233f8 status: code: 200 message: OK - request: body: null - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Wed, 31 Mar 2021 22:13:17 GMT - x-ms-version: - - '2020-06-12' - method: PUT - uri: https://redacted.blob.core.windows.net/srcd8fd25d8-0d8a-451b-a296-acd343eb66d9?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Wed, 31 Mar 2021 22:13:18 GMT - etag: - - '"0x8D8F492305EF6EE"' - last-modified: - - Wed, 31 Mar 2021 22:13:18 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-06-12' - status: - code: 201 - message: Created -- request: - body: This is some text - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '17' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Wed, 31 Mar 2021 22:13:19 GMT - x-ms-encryption-algorithm: - - AES256 - x-ms-version: - - '2020-06-12' - method: PUT - uri: https://redacted.blob.core.windows.net/srcd8fd25d8-0d8a-451b-a296-acd343eb66d9/e42fe902-059b-4174-aa06-a3defa2178a4.txt - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - lyFPYyJLwenMTaN3qtznxw== - date: - - Wed, 31 Mar 2021 22:13:18 GMT - etag: - - '"0x8D8F4923086DAAE"' - last-modified: - - Wed, 31 Mar 2021 22:13:18 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-content-crc64: - - SqmNKeH10UQ= - x-ms-request-server-encrypted: - - 'true' - x-ms-version: - - '2020-06-12' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Wed, 31 Mar 2021 22:13:19 GMT - x-ms-version: - - '2020-06-12' - method: PUT - uri: https://redacted.blob.core.windows.net/target4a58f17a-3844-4028-ba66-f889f26dbfa0?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Wed, 31 Mar 2021 22:13:19 GMT - etag: - - '"0x8D8F49231239792"' - last-modified: - - Wed, 31 Mar 2021 22:13:19 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-06-12' - status: - code: 201 - message: Created -- request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd8fd25d8-0d8a-451b-a296-acd343eb66d9?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4a58f17a-3844-4028-ba66-f889f26dbfa0?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", - "language": "es"}]}]}' headers: Accept: - application/json @@ -2505,40 +2909,44 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '488' - Content-Type: - - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1522&$maxpagesize=50 response: body: - string: '' + string: '{"value":[{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1472&$maxpagesize=50"}' headers: apim-request-id: - - 582c4227-9baf-4ef8-bd37-7a91164a834f + - 131e242d-7172-4e83-912d-d78f68e35cd0 + cache-control: + - public,max-age=1 content-length: - - '0' + - '14792' + content-type: + - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:19 GMT - operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + - Thu, 06 May 2021 20:46:37 GMT + etag: + - '"5A3AA42010F095976ED72636ED6138BDD12034F6CAE7DAF3351EC5847D21DBD2"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-powered-by: - ASP.NET x-requestid: - - 582c4227-9baf-4ef8-bd37-7a91164a834f + - 131e242d-7172-4e83-912d-d78f68e35cd0 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2549,28 +2957,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1472&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:20.2030888Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1422&$maxpagesize=50"}' headers: apim-request-id: - - e2be3257-1491-49eb-958d-27ba3598a1b1 + - 7be0f4d4-4706-4712-9c45-3c833bd80d76 cache-control: - public,max-age=1 content-length: - - '292' + - '14788' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:19 GMT + - Thu, 06 May 2021 20:46:37 GMT etag: - - '"C16CB187ADF1857AD432C6D2CC06139DF6DE3D2EA69EEC03BA7F628629640519"' + - '"E9B8A81C263D16CFFED1A031F7D3B4819CFC10A93A8532BDDE42B3C68565E358"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2582,7 +2990,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e2be3257-1491-49eb-958d-27ba3598a1b1 + - 7be0f4d4-4706-4712-9c45-3c833bd80d76 status: code: 200 message: OK @@ -2596,28 +3004,32 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1422&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:20.2030888Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1372&$maxpagesize=50"}' headers: apim-request-id: - - 982d4033-99b1-4b30-9f04-2c1b1cdfff2d + - 267890c6-4d0b-4383-a668-76c8c9bf911c cache-control: - public,max-age=1 content-length: - - '292' + - '15322' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:20 GMT + - Thu, 06 May 2021 20:46:38 GMT etag: - - '"C16CB187ADF1857AD432C6D2CC06139DF6DE3D2EA69EEC03BA7F628629640519"' + - '"227974D8A4E8DA4EF25E3A3175F34BA86057EF6AA47FC7E7F6D5B8AF1ABD731F"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2629,7 +3041,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 982d4033-99b1-4b30-9f04-2c1b1cdfff2d + - 267890c6-4d0b-4383-a668-76c8c9bf911c status: code: 200 message: OK @@ -2637,34 +3049,36 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1372&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:21.1918937Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1322&$maxpagesize=50"}' headers: apim-request-id: - - ebb7f2e2-7463-465c-abb8-f2d8b2a33b6e + - b44c5308-f9c8-4de7-8604-d86605d7b1d1 cache-control: - public,max-age=1 content-length: - - '292' + - '15083' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:21 GMT + - Thu, 06 May 2021 20:46:38 GMT etag: - - '"A23636C4EEAC4BF0D0EA5C94366E4A27FC72F7B1A3ABA870ED16120C17F2F009"' + - '"C394530C90A27FB6C7A5F631BD4D4FFDB0EE86EB37CA0675F3520EF249E413EA"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2676,7 +3090,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ebb7f2e2-7463-465c-abb8-f2d8b2a33b6e + - b44c5308-f9c8-4de7-8604-d86605d7b1d1 status: code: 200 message: OK @@ -2684,34 +3098,36 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1322&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:21.1918937Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1272&$maxpagesize=50"}' headers: apim-request-id: - - e42d331e-9d69-47ca-9ae6-4b0ffe73da07 + - 01e8cb41-54f2-4464-9004-b058bc09c15b cache-control: - public,max-age=1 content-length: - - '292' + - '15066' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:22 GMT + - Thu, 06 May 2021 20:46:38 GMT etag: - - '"A23636C4EEAC4BF0D0EA5C94366E4A27FC72F7B1A3ABA870ED16120C17F2F009"' + - '"D190925BC4D9BEF4A244D47510A8D8B1F5CEAC306004CCD98A62CDF752DF9561"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2723,7 +3139,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e42d331e-9d69-47ca-9ae6-4b0ffe73da07 + - 01e8cb41-54f2-4464-9004-b058bc09c15b status: code: 200 message: OK @@ -2731,34 +3147,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1272&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:21.1918937Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1222&$maxpagesize=50"}' headers: apim-request-id: - - 1c24cda9-79ae-4e39-8d20-9dd802469c81 + - db9668bf-05a7-4010-92ec-369789648fd6 cache-control: - public,max-age=1 content-length: - - '292' + - '14872' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:23 GMT + - Thu, 06 May 2021 20:46:38 GMT etag: - - '"A23636C4EEAC4BF0D0EA5C94366E4A27FC72F7B1A3ABA870ED16120C17F2F009"' + - '"9DA59214321BF9C96E8CCDB440CBD31C5A2522AEA6F52F13E473E337AED92F38"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2770,7 +3186,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1c24cda9-79ae-4e39-8d20-9dd802469c81 + - db9668bf-05a7-4010-92ec-369789648fd6 status: code: 200 message: OK @@ -2778,34 +3194,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1222&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:21.1918937Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1172&$maxpagesize=50"}' headers: apim-request-id: - - 9b4ed8e1-6bb0-4960-aaae-c5c1ff54eaad + - af0dceb6-a8b0-40f7-8150-3355c7e62d1a cache-control: - public,max-age=1 content-length: - - '292' + - '14882' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:24 GMT + - Thu, 06 May 2021 20:46:39 GMT etag: - - '"A23636C4EEAC4BF0D0EA5C94366E4A27FC72F7B1A3ABA870ED16120C17F2F009"' + - '"05E54204AD172826B75F53CFB5389FCA09D77058F924BBE1207214ABA9500751"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2817,7 +3233,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 9b4ed8e1-6bb0-4960-aaae-c5c1ff54eaad + - af0dceb6-a8b0-40f7-8150-3355c7e62d1a status: code: 200 message: OK @@ -2825,34 +3241,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1172&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:21.1918937Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1122&$maxpagesize=50"}' headers: apim-request-id: - - 303a1aa2-1768-4642-ab66-d3dd54bfb102 + - 799e78eb-b70f-4529-aa04-047f76db51e6 cache-control: - public,max-age=1 content-length: - - '292' + - '14793' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:25 GMT + - Thu, 06 May 2021 20:46:39 GMT etag: - - '"A23636C4EEAC4BF0D0EA5C94366E4A27FC72F7B1A3ABA870ED16120C17F2F009"' + - '"4729873B8F1D6DC43B6D28D8831C0A9AEA310262FEBD59945814F089B9FF7886"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2864,7 +3280,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 303a1aa2-1768-4642-ab66-d3dd54bfb102 + - 799e78eb-b70f-4529-aa04-047f76db51e6 status: code: 200 message: OK @@ -2872,34 +3288,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1122&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:21.1918937Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1072&$maxpagesize=50"}' headers: apim-request-id: - - b4233db6-e532-42cd-8434-eb3043f94b54 + - 0da585f9-70b4-4d99-b323-885f72c65f1e cache-control: - public,max-age=1 content-length: - - '292' + - '14803' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:27 GMT + - Thu, 06 May 2021 20:46:39 GMT etag: - - '"A23636C4EEAC4BF0D0EA5C94366E4A27FC72F7B1A3ABA870ED16120C17F2F009"' + - '"20781251917CDE80BF4A8DF3A8344D9440AF7B4CB5283408CB334A87B945545F"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2911,7 +3327,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b4233db6-e532-42cd-8434-eb3043f94b54 + - 0da585f9-70b4-4d99-b323-885f72c65f1e status: code: 200 message: OK @@ -2919,34 +3335,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1072&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:21.1918937Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1022&$maxpagesize=50"}' headers: apim-request-id: - - cace843c-68bb-4f77-ac0d-efd3ee86cee5 + - b3c82bd6-fbc0-4dc9-92c7-e41f466696fb cache-control: - public,max-age=1 content-length: - - '292' + - '14784' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:28 GMT + - Thu, 06 May 2021 20:46:40 GMT etag: - - '"A23636C4EEAC4BF0D0EA5C94366E4A27FC72F7B1A3ABA870ED16120C17F2F009"' + - '"E17A6A93E9F465D4D547A24006391A7B815AA7D07BE968ACF53F72D6BDBF6F3B"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -2958,7 +3374,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cace843c-68bb-4f77-ac0d-efd3ee86cee5 + - b3c82bd6-fbc0-4dc9-92c7-e41f466696fb status: code: 200 message: OK @@ -2966,31 +3382,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1022&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=972&$maxpagesize=50"}' headers: apim-request-id: - - 332b4c77-ce66-4ae6-a062-1c10173184f3 + - 4eccde8f-8524-40d1-a686-0a4627416804 cache-control: - public,max-age=1 content-length: - - '289' + - '14825' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:29 GMT + - Thu, 06 May 2021 20:46:40 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"1E69786B6A53777C0D72FC2FDB7488E5E1D8CDAB2BB89CA4C989BFF5118E4823"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -3005,7 +3421,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 332b4c77-ce66-4ae6-a062-1c10173184f3 + - 4eccde8f-8524-40d1-a686-0a4627416804 status: code: 200 message: OK @@ -3013,34 +3429,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=972&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=922&$maxpagesize=50"}' headers: apim-request-id: - - 43556f42-83bf-4735-a161-82036827a3e3 + - 4df1a31f-32f4-4652-86a2-6c140127442c cache-control: - public,max-age=1 content-length: - - '289' + - '14785' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:30 GMT + - Thu, 06 May 2021 20:46:40 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"FF82E7744B96F87B689BA1459D326AC56DE8B5BC6ED6CBE4E59977AD4A4C2232"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3052,7 +3468,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 43556f42-83bf-4735-a161-82036827a3e3 + - 4df1a31f-32f4-4652-86a2-6c140127442c status: code: 200 message: OK @@ -3060,31 +3476,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=922&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=872&$maxpagesize=50"}' headers: apim-request-id: - - 3d581ba9-2a09-46a3-850e-f976cfa28d88 + - 7c123a7c-a142-48a1-9fe9-7ba7ff77729f cache-control: - public,max-age=1 content-length: - - '289' + - '14801' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:31 GMT + - Thu, 06 May 2021 20:46:40 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"5BA1D79FA17DDE4DD11DB8F9330293F4A827BE0DB936CEC8A49DC9E9405F9A10"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -3099,7 +3515,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3d581ba9-2a09-46a3-850e-f976cfa28d88 + - 7c123a7c-a142-48a1-9fe9-7ba7ff77729f status: code: 200 message: OK @@ -3107,34 +3523,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=872&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=822&$maxpagesize=50"}' headers: apim-request-id: - - bf99ba96-1283-4af3-a20e-3b0642b2690d + - 06457c74-9794-47cc-b549-d5cbe9e72285 cache-control: - public,max-age=1 content-length: - - '289' + - '14787' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:32 GMT + - Thu, 06 May 2021 20:46:41 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"C69978FBBD3021D529FD4375BB53D722D274E8778F36DA8DA4F91605A7F0A721"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3146,7 +3562,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - bf99ba96-1283-4af3-a20e-3b0642b2690d + - 06457c74-9794-47cc-b549-d5cbe9e72285 status: code: 200 message: OK @@ -3154,31 +3570,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=822&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=772&$maxpagesize=50"}' headers: apim-request-id: - - cb11ee29-5888-4a8d-b8cd-a801d4c9320a + - cf9097d6-cfb1-41a4-928b-ff248d9d11ae cache-control: - public,max-age=1 content-length: - - '289' + - '14798' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:34 GMT + - Thu, 06 May 2021 20:46:41 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"225A70F2D1E7FB1BAF5BAB98C64A48535A45FCDC2B4965EC5582817A325A5B12"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -3193,7 +3609,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cb11ee29-5888-4a8d-b8cd-a801d4c9320a + - cf9097d6-cfb1-41a4-928b-ff248d9d11ae status: code: 200 message: OK @@ -3201,34 +3617,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=772&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=722&$maxpagesize=50"}' headers: apim-request-id: - - 68b42d3b-5c94-4f6e-9eb8-209b92a5ff22 + - 283992e4-b875-4048-8b7c-0dff49c31d31 cache-control: - public,max-age=1 content-length: - - '289' + - '14794' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:35 GMT + - Thu, 06 May 2021 20:46:41 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"D5DF0669E859C962FE0AA9F25EB598B0E8D41A0A79E6EA425E6A215196B74160"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3240,7 +3656,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 68b42d3b-5c94-4f6e-9eb8-209b92a5ff22 + - 283992e4-b875-4048-8b7c-0dff49c31d31 status: code: 200 message: OK @@ -3248,34 +3664,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=722&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=672&$maxpagesize=50"}' headers: apim-request-id: - - 948aa7b7-4576-4c0c-8bf2-eb31e96287d2 + - 20f17d37-9c96-4438-9913-81afc002a6f8 cache-control: - public,max-age=1 content-length: - - '289' + - '14798' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:36 GMT + - Thu, 06 May 2021 20:46:41 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"FBC5B1FE8B61C2BE52F8E30B3C6C4BCB21423FF380B1A1E07C2CE151F1989EFD"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3287,7 +3703,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 948aa7b7-4576-4c0c-8bf2-eb31e96287d2 + - 20f17d37-9c96-4438-9913-81afc002a6f8 status: code: 200 message: OK @@ -3295,34 +3711,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=672&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=622&$maxpagesize=50"}' headers: apim-request-id: - - 5a2751d9-477c-4935-a5ec-9a025d341475 + - b4c0e53f-5b9e-4d6a-ac30-c8c36163a9fd cache-control: - public,max-age=1 content-length: - - '289' + - '14793' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:37 GMT + - Thu, 06 May 2021 20:46:42 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"244FAF01D261F3C4BF6C54A6D7F957724F75F761118FDDB1BB9066990E740AD7"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3334,7 +3750,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5a2751d9-477c-4935-a5ec-9a025d341475 + - b4c0e53f-5b9e-4d6a-ac30-c8c36163a9fd status: code: 200 message: OK @@ -3342,34 +3758,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=622&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=572&$maxpagesize=50"}' headers: apim-request-id: - - 189df51d-9cc3-4bd9-aed0-efa314546fe7 + - 67f8e14e-e5f6-4bd6-9406-e312b19202e6 cache-control: - public,max-age=1 content-length: - - '289' + - '14798' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:38 GMT + - Thu, 06 May 2021 20:46:42 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"A40EB7B0EFABCAD511B5553FFC521086C80D7C40F5FBC2F77731BDD5AE3E33B7"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3381,7 +3797,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 189df51d-9cc3-4bd9-aed0-efa314546fe7 + - 67f8e14e-e5f6-4bd6-9406-e312b19202e6 status: code: 200 message: OK @@ -3389,34 +3805,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=572&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=522&$maxpagesize=50"}' headers: apim-request-id: - - b4934607-e8b7-466e-8c96-f15886d4a931 + - 342b7ebc-1d79-4b84-8482-a668acc3bc94 cache-control: - public,max-age=1 content-length: - - '289' + - '14801' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:39 GMT + - Thu, 06 May 2021 20:46:42 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"627E837390D72709BDFFC3CA2003650D91A94BE4BD577105A573AA176AD50063"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3428,7 +3844,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b4934607-e8b7-466e-8c96-f15886d4a931 + - 342b7ebc-1d79-4b84-8482-a668acc3bc94 status: code: 200 message: OK @@ -3436,34 +3852,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=522&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:29.3373177Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=472&$maxpagesize=50"}' headers: apim-request-id: - - 1d782cf8-ad3c-4747-9dd1-b99d217c672c + - 6656ec6e-e2ab-408b-a548-84c4f5c0c98b cache-control: - public,max-age=1 content-length: - - '289' + - '14799' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:41 GMT + - Thu, 06 May 2021 20:46:42 GMT etag: - - '"693D68B35A12FD20F39C6177065CF6EF3D97A85FA084DE8961AEB2A9B52F0FD9"' + - '"99273F26D20A9742D881E26A7F68263628FAF58C205FC745A232E28AD9BD6990"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3475,7 +3891,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1d782cf8-ad3c-4747-9dd1-b99d217c672c + - 6656ec6e-e2ab-408b-a548-84c4f5c0c98b status: code: 200 message: OK @@ -3483,34 +3899,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7b520f5a-5722-4a87-89ab-72b6ad0244ee + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=472&$maxpagesize=50 response: body: - string: '{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"value":[{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=422&$maxpagesize=50"}' headers: apim-request-id: - - a3b08525-b8ea-4072-9e6f-2717662f9de5 + - bd90bc95-8611-4ce4-a382-f35348973a6c cache-control: - public,max-age=1 content-length: - - '292' + - '14807' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:42 GMT + - Thu, 06 May 2021 20:46:43 GMT etag: - - '"8642750E0B89722BC19AD7616E23BA9A2B0F20883EDAE19CB163375DC320FC11"' + - '"AE28FEA54BAE121A30BC14C131718233DCB0FB5813ED89659E42D51023368F60"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3522,7 +3938,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a3b08525-b8ea-4072-9e6f-2717662f9de5 + - bd90bc95-8611-4ce4-a382-f35348973a6c status: code: 200 message: OK @@ -3536,28 +3952,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=422&$maxpagesize=50 response: body: - string: '{"value":[{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=367&$maxpagesize=50"}' + string: '{"value":[{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=372&$maxpagesize=50"}' headers: apim-request-id: - - 87ee27f9-0cd3-45b1-9c47-5fd2dfae2fff + - be8f9031-3e3b-4b27-85a4-a6e74302bedb cache-control: - public,max-age=1 content-length: - - '14791' + - '14794' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:42 GMT + - Thu, 06 May 2021 20:46:43 GMT etag: - - '"BA9A6F4D0A75E958B3376DB7CC1A7E26FBF6DF4D1A649FFB7FFDB1C8C5FA883E"' + - '"EFE69C502CDBCDBFBEDB238D40FFE73379BFD4E32B1013E23F4860A054DA52CB"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3569,7 +3985,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 87ee27f9-0cd3-45b1-9c47-5fd2dfae2fff + - be8f9031-3e3b-4b27-85a4-a6e74302bedb status: code: 200 message: OK @@ -3583,15 +3999,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=367&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=372&$maxpagesize=50 response: body: - string: '{"value":[{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=317&$maxpagesize=50"}' + string: '{"value":[{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=322&$maxpagesize=50"}' headers: apim-request-id: - - ba08aaaf-a4f0-43c5-b428-c7d011ee1e50 + - 947ada04-98c0-4e44-9199-e38677e89d31 cache-control: - public,max-age=1 content-length: @@ -3599,12 +4015,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:42 GMT + - Thu, 06 May 2021 20:46:43 GMT etag: - - '"7510C5662BFE2A84F3269AE41A063718237E1F947E4E93196FF1FFD3AF4782FE"' + - '"21BDFBBA331E2FB003849374358998B90F90118479A8E93EAA811AEBB1CCFECC"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3616,7 +4032,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ba08aaaf-a4f0-43c5-b428-c7d011ee1e50 + - 947ada04-98c0-4e44-9199-e38677e89d31 status: code: 200 message: OK @@ -3630,28 +4046,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=317&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=322&$maxpagesize=50 response: body: - string: '{"value":[{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=267&$maxpagesize=50"}' + string: '{"value":[{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=272&$maxpagesize=50"}' headers: apim-request-id: - - b953a62b-81eb-4350-9e81-b8e330dd0822 + - e9932608-b655-4c77-a41b-c60960cb6920 cache-control: - public,max-age=1 content-length: - - '14795' + - '14799' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:43 GMT + - Thu, 06 May 2021 20:46:44 GMT etag: - - '"8DDB359B8609365D8973F7CBD64FAA6007E9ADEFFD188708788BD74DEFD6E6B7"' + - '"BD1054E329B8C66AC6208B98CA5BC0D5219610DD502B90E69D9BAD64E704F56F"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3663,7 +4079,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b953a62b-81eb-4350-9e81-b8e330dd0822 + - e9932608-b655-4c77-a41b-c60960cb6920 status: code: 200 message: OK @@ -3677,28 +4093,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=267&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=272&$maxpagesize=50 response: body: - string: '{"value":[{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=217&$maxpagesize=50"}' + string: '{"value":[{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=222&$maxpagesize=50"}' headers: apim-request-id: - - 7b50c7a0-7eb2-489f-8c5d-241cc6fb8d4c + - 1a94441b-ad64-47ad-9975-41c84041b072 cache-control: - public,max-age=1 content-length: - - '14796' + - '14795' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:43 GMT + - Thu, 06 May 2021 20:46:44 GMT etag: - - '"4E46117DCAFDC4716523BB4C146DAEA635F7607E12BB58D176BD0124596B215C"' + - '"4102688C52C52DB2BBB279C63C888A15E7B3AE699F6567CCB08A86FB52ED38EA"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3710,7 +4126,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 7b50c7a0-7eb2-489f-8c5d-241cc6fb8d4c + - 1a94441b-ad64-47ad-9975-41c84041b072 status: code: 200 message: OK @@ -3724,28 +4140,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=217&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=222&$maxpagesize=50 response: body: - string: '{"value":[{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=167&$maxpagesize=50"}' + string: '{"value":[{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=172&$maxpagesize=50"}' headers: apim-request-id: - - 58976108-5969-415d-811b-561920b54f87 + - ef104ee7-dd4e-4051-9f6e-046680c220a5 cache-control: - public,max-age=1 content-length: - - '14802' + - '14804' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:43 GMT + - Thu, 06 May 2021 20:46:44 GMT etag: - - '"51B3E4A6706A4F46F23E7CA4A684A922E2D28A28350CEC6A65292E8AE34B4FFC"' + - '"9C24EFC5AFD9B061114A398AD4C6E97F0D3FD8ECD9049F0C835CE230DD623DC9"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3757,7 +4173,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 58976108-5969-415d-811b-561920b54f87 + - ef104ee7-dd4e-4051-9f6e-046680c220a5 status: code: 200 message: OK @@ -3771,30 +4187,30 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=167&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=172&$maxpagesize=50 response: body: - string: '{"value":[{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"value":[{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot - access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=117&$maxpagesize=50"}' + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=122&$maxpagesize=50"}' headers: apim-request-id: - - 6c00cdf1-be49-4e13-9f4d-5ed4718438af + - a293b95c-dd1d-49c3-8d20-33e3c67eaac2 cache-control: - public,max-age=1 content-length: - - '15072' + - '15073' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:44 GMT + - Thu, 06 May 2021 20:46:44 GMT etag: - - '"F707365D91100204E862B2AAC369BE578937B68A109B4FFA7E8ACCB420CE6DD7"' + - '"B6E13833411757BCDA517D660F7D408A08CADFB26284DB62ECCABB1E4E7ACC4B"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3806,7 +4222,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 6c00cdf1-be49-4e13-9f4d-5ed4718438af + - a293b95c-dd1d-49c3-8d20-33e3c67eaac2 status: code: 200 message: OK @@ -3820,30 +4236,30 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=117&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=122&$maxpagesize=50 response: body: - string: '{"value":[{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + string: '{"value":[{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No - document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=67&$maxpagesize=50"}' + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=72&$maxpagesize=50"}' headers: apim-request-id: - - d668798b-a657-413e-ac21-f8746edcfe20 + - b8f81a64-e045-449a-8a80-52bd9a09475f cache-control: - public,max-age=1 content-length: - - '15047' + - '15046' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:44 GMT + - Thu, 06 May 2021 20:46:45 GMT etag: - - '"C19935517B90320BA2AA1134FD462FA585BE7F71C4C0EBECEE1BE55B3EF0ABCA"' + - '"461DD49598A16C5FC0232529DBAB2FA4A36061DB6BB55BBA95ABF5C87FBCCA36"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3855,7 +4271,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d668798b-a657-413e-ac21-f8746edcfe20 + - b8f81a64-e045-449a-8a80-52bd9a09475f status: code: 200 message: OK @@ -3869,12 +4285,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=67&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=72&$maxpagesize=50 response: body: - string: '{"value":[{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"value":[{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot @@ -3902,27 +4318,23 @@ interactions: document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot - access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot - access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot - access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot - access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot - access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=17&$maxpagesize=50"}' + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=22&$maxpagesize=50"}' headers: apim-request-id: - - 5b62af88-645f-4995-87a2-664e219a55af + - 092cb1a2-52aa-433b-a814-b6b1acc70f0e cache-control: - public,max-age=1 content-length: - - '18982' + - '18434' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:44 GMT + - Thu, 06 May 2021 20:46:45 GMT etag: - - '"70DD6A9DF9D188D7D7F9F48C91566929618213041B9078DE535A41EAC7815601"' + - '"82C464013F0FC4C9A54AD18AB63019F578DAE423D4328A17163139AD2663F9FF"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3934,7 +4346,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5b62af88-645f-4995-87a2-664e219a55af + - 092cb1a2-52aa-433b-a814-b6b1acc70f0e status: code: 200 message: OK @@ -3948,12 +4360,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=17&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=22&$maxpagesize=50 response: body: - string: '{"value":[{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"ValidationFailed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"value":[{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot @@ -3966,20 +4382,20 @@ interactions: access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' headers: apim-request-id: - - 58022354-69cc-4072-a5f4-01001e489b11 + - 1f4f7d0a-5bc7-429b-bcee-f8c32e0ea7ee cache-control: - public,max-age=1 content-length: - - '6397' + - '8401' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:13:44 GMT + - Thu, 06 May 2021 20:46:45 GMT etag: - - '"E5F4F868F59E26F5344A507D716503D165B17E2FD407E25DDB1906E025B9E197"' + - '"3F7A5DD6F6C016D11F531B39C8B31B3ADB57FD4BD60B0B773CF51F3DE35E362C"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -3991,7 +4407,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 58022354-69cc-4072-a5f4-01001e489b11 + - 1f4f7d0a-5bc7-429b-bcee-f8c32e0ea7ee status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_created_after.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_created_after.yaml new file mode 100644 index 000000000000..8328fdab3ff7 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_created_after.yaml @@ -0,0 +1,853 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src05f5b289-50db-4a56-a55d-74b818e49752?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:46 GMT + etag: + - '"0x8D910D010F41D8A"' + last-modified: + - Thu, 06 May 2021 20:46:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src05f5b289-50db-4a56-a55d-74b818e49752/07e1fe50-3a8c-4197-9b1a-1c6b0cda0865.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:46 GMT + etag: + - '"0x8D910D011181697"' + last-modified: + - Thu, 06 May 2021 20:46:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src05f5b289-50db-4a56-a55d-74b818e49752/2ce0e866-3bb9-45fd-ad0a-96be42e4a3cf.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:46 GMT + etag: + - '"0x8D910D0113D3187"' + last-modified: + - Thu, 06 May 2021 20:46:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target9e995258-3803-4245-9137-0006cfa3e775?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:48 GMT + etag: + - '"0x8D910D011C6D793"' + last-modified: + - Thu, 06 May 2021 20:46:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src05f5b289-50db-4a56-a55d-74b818e49752?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9e995258-3803-4245-9137-0006cfa3e775?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - a3847da4-bdc4-4f7a-a0a4-7bc80d14c189 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:48 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ad4abcda-68f2-48d6-885b-753a9d9cc747 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a3847da4-bdc4-4f7a-a0a4-7bc80d14c189 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ad4abcda-68f2-48d6-885b-753a9d9cc747 + response: + body: + string: '{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:49.385941Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1b8c6a56-4efa-4e04-99e4-9f960b94623c + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:46:49 GMT + etag: + - '"7CBA1B4BC6D30F30D86F730F146464D532BB8C1067F4DF67366D979472655F5D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1b8c6a56-4efa-4e04-99e4-9f960b94623c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:49 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce8f3ed9b-a10f-4722-a7fa-abee2d56388c?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:49 GMT + etag: + - '"0x8D910D012CEE38A"' + last-modified: + - Thu, 06 May 2021 20:46:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:50 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce8f3ed9b-a10f-4722-a7fa-abee2d56388c/10a5758c-ae81-4950-9f87-4bad8fca6319.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:50 GMT + etag: + - '"0x8D910D012F431F0"' + last-modified: + - Thu, 06 May 2021 20:46:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:50 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce8f3ed9b-a10f-4722-a7fa-abee2d56388c/e132c454-07ae-4094-b7d2-cdd90953a9a7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:50 GMT + etag: + - '"0x8D910D013199B12"' + last-modified: + - Thu, 06 May 2021 20:46:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:51 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target60bc4dcd-c02d-4d00-9631-4adb3d79e7e4?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:51 GMT + etag: + - '"0x8D910D013A89FCA"' + last-modified: + - Thu, 06 May 2021 20:46:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce8f3ed9b-a10f-4722-a7fa-abee2d56388c?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target60bc4dcd-c02d-4d00-9631-4adb3d79e7e4?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 021110cc-ebc2-4424-b8f5-52ad9b9e9af8 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:51 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/277df52b-352c-4d78-82ef-707f5aaf6e5a + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 021110cc-ebc2-4424-b8f5-52ad9b9e9af8 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/277df52b-352c-4d78-82ef-707f5aaf6e5a + response: + body: + string: '{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:52.0664755Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 11120d29-ed83-4773-b5f7-b1781dd7052f + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:46:51 GMT + etag: + - '"CEDD76F1D95BA923A8F82E6D31436DB0C14229B1BC897B5082AB45BE281FA1D8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 11120d29-ed83-4773-b5f7-b1781dd7052f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:52 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src37395c33-1ca6-4e5a-b009-723893eef963?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:52 GMT + etag: + - '"0x8D910D0146826C2"' + last-modified: + - Thu, 06 May 2021 20:46:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:53 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src37395c33-1ca6-4e5a-b009-723893eef963/5e139751-6ffc-4629-a540-e6537089d6b8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:52 GMT + etag: + - '"0x8D910D0148C3352"' + last-modified: + - Thu, 06 May 2021 20:46:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:53 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src37395c33-1ca6-4e5a-b009-723893eef963/b0753671-f0bf-4780-b01b-15df1996b51f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:52 GMT + etag: + - '"0x8D910D014B0B1E1"' + last-modified: + - Thu, 06 May 2021 20:46:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:53 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target246e53de-a13a-4c53-bd63-413a0005ba6f?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:53 GMT + etag: + - '"0x8D910D01543D65E"' + last-modified: + - Thu, 06 May 2021 20:46:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src37395c33-1ca6-4e5a-b009-723893eef963?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target246e53de-a13a-4c53-bd63-413a0005ba6f?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 0ea0f5aa-7b89-4695-a75d-7b33a11b691a + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:53 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/889169cf-a97e-4a2b-985d-cfa933485354 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0ea0f5aa-7b89-4695-a75d-7b33a11b691a + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/889169cf-a97e-4a2b-985d-cfa933485354 + response: + body: + string: '{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.7788868Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 91c267e4-4629-4ce7-8c6e-87b5e755376c + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:46:54 GMT + etag: + - '"489BCB4D972FC3D432369AF2183F03B909589B47635266E462B4D50D3532B73E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 91c267e4-4629-4ce7-8c6e-87b5e755376c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&createdDateTimeUtcStart=2021-05-06T22%3A46%3A46.574219Z + response: + body: + string: '{"value":[]}' + headers: + apim-request-id: + - f0013371-8e8e-4aec-b82d-3def89cc7648 + cache-control: + - public,max-age=1 + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:46:54 GMT + etag: + - '"D4214466E6EBAF6BC3F72013C0657B1E9A44E863C0798D64426663A1D281A27B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f0013371-8e8e-4aec-b82d-3def89cc7648 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_created_before.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_created_before.yaml new file mode 100644 index 000000000000..b27f1977b9e1 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_created_before.yaml @@ -0,0 +1,6760 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:55 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src10a946f9-8da7-4e1e-b664-7717246472fb?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:55 GMT + etag: + - '"0x8D910D016271B1D"' + last-modified: + - Thu, 06 May 2021 20:46:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:46:56 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src10a946f9-8da7-4e1e-b664-7717246472fb/a9281a17-db20-4dd7-a6c3-8ba5d9854161.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:46:56 GMT + etag: + - '"0x8D910D0164B247B"' + last-modified: + - Thu, 06 May 2021 20:46:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:46:56 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targete542eb92-2c84-4ebd-bbc4-50bd20e46756?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:56 GMT + etag: + - '"0x8D910D016D6D26C"' + last-modified: + - Thu, 06 May 2021 20:46:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src10a946f9-8da7-4e1e-b664-7717246472fb?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targete542eb92-2c84-4ebd-bbc4-50bd20e46756?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 112319ef-66f0-49d6-8ccf-532e9ed05038 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:46:57 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/817733cb-ad05-4fe7-afba-dcfcd8dab6ab + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 112319ef-66f0-49d6-8ccf-532e9ed05038 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/817733cb-ad05-4fe7-afba-dcfcd8dab6ab + response: + body: + string: '{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.8414206Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 73e64322-35b6-4728-93a2-9f53dcd669c4 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:46:57 GMT + etag: + - '"E872190D61143695A5A888C130F17319C7E032CF9A11318992A5A9DFC5FFA3D1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 73e64322-35b6-4728-93a2-9f53dcd669c4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/817733cb-ad05-4fe7-afba-dcfcd8dab6ab + response: + body: + string: '{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.8414206Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - eac2d623-9e31-4b1c-9564-be25a493e836 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:46:57 GMT + etag: + - '"E872190D61143695A5A888C130F17319C7E032CF9A11318992A5A9DFC5FFA3D1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eac2d623-9e31-4b1c-9564-be25a493e836 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/817733cb-ad05-4fe7-afba-dcfcd8dab6ab + response: + body: + string: '{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:46:58.6980369Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f5f1b062-64c0-49bf-8ae2-2b1e8418bc36 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:46:58 GMT + etag: + - '"8D82FEA0D7E6D6E56AF8158C6A563825CDC7E57097D72D30B1AA615E084B5E49"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f5f1b062-64c0-49bf-8ae2-2b1e8418bc36 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/817733cb-ad05-4fe7-afba-dcfcd8dab6ab + response: + body: + string: '{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:46:58.6980369Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - eb8a7f6d-3db7-445d-a944-84eb701a654f + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:46:59 GMT + etag: + - '"8D82FEA0D7E6D6E56AF8158C6A563825CDC7E57097D72D30B1AA615E084B5E49"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eb8a7f6d-3db7-445d-a944-84eb701a654f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/817733cb-ad05-4fe7-afba-dcfcd8dab6ab + response: + body: + string: '{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 243cc025-316b-4816-8379-89dcd4f204c4 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:00 GMT + etag: + - '"86ADE8633FA4DF63558262730D72E37C081C52DCF474F535A48465C300277101"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 243cc025-316b-4816-8379-89dcd4f204c4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/817733cb-ad05-4fe7-afba-dcfcd8dab6ab + response: + body: + string: '{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - 680375fe-0a0b-476a-b7d3-2152e56e3b0d + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:02 GMT + etag: + - '"0C261A8F4B096B7E31CF0CBB014D2101ABAAE35F757BF574BB05AD05BBA6D3A7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 680375fe-0a0b-476a-b7d3-2152e56e3b0d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:02 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src388ff080-9adf-4b05-9040-a868f0bcb1a0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:02 GMT + etag: + - '"0x8D910D01AADFD13"' + last-modified: + - Thu, 06 May 2021 20:47:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:47:03 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src388ff080-9adf-4b05-9040-a868f0bcb1a0/15b3e1c7-352d-4e8c-b771-21546d67e7ac.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:47:03 GMT + etag: + - '"0x8D910D01AD1A644"' + last-modified: + - Thu, 06 May 2021 20:47:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:04 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetff39c41a-5a2a-455e-848d-bf46fc2901dd?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:04 GMT + etag: + - '"0x8D910D01B629068"' + last-modified: + - Thu, 06 May 2021 20:47:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src388ff080-9adf-4b05-9040-a868f0bcb1a0?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetff39c41a-5a2a-455e-848d-bf46fc2901dd?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 3babae2c-1a24-4bb9-8983-a6452f5b9593 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:04 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bf54bd2e-24e0-433f-8b7d-b971f6f1cad8 + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3babae2c-1a24-4bb9-8983-a6452f5b9593 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bf54bd2e-24e0-433f-8b7d-b971f6f1cad8 + response: + body: + string: '{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:05.0225148Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - ad4f1fa7-a99b-4fb2-84ba-1b4288028ab8 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:04 GMT + etag: + - '"33B4D38AB22525ACAA9BE166F0BDF501BE4E73C3A2542105259F8B37C38D60D9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ad4f1fa7-a99b-4fb2-84ba-1b4288028ab8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bf54bd2e-24e0-433f-8b7d-b971f6f1cad8 + response: + body: + string: '{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:05.0225148Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f2eb5e94-b352-4c26-8fdc-168c5d6ac0f9 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:04 GMT + etag: + - '"33B4D38AB22525ACAA9BE166F0BDF501BE4E73C3A2542105259F8B37C38D60D9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f2eb5e94-b352-4c26-8fdc-168c5d6ac0f9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bf54bd2e-24e0-433f-8b7d-b971f6f1cad8 + response: + body: + string: '{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:05.8949553Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 834fa5a2-e0b0-42ba-901e-bee60e8a96b3 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:05 GMT + etag: + - '"9EE1A83FF6CA07A61B5B427ADE6E672CC5B1EF3CD8B3B64350D61C17C243729A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 834fa5a2-e0b0-42ba-901e-bee60e8a96b3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bf54bd2e-24e0-433f-8b7d-b971f6f1cad8 + response: + body: + string: '{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - bddd70f8-39ba-4f2f-9ad6-54a29ec4ce11 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:06 GMT + etag: + - '"CA3CF02AFF6E7A9F234362DF894A344F1FB1512B8F4E55AB8EE7C450EE53ACC6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bddd70f8-39ba-4f2f-9ad6-54a29ec4ce11 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bf54bd2e-24e0-433f-8b7d-b971f6f1cad8 + response: + body: + string: '{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - ee22e216-2e00-4f91-b226-85ba58ed5c78 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:08 GMT + etag: + - '"CA3CF02AFF6E7A9F234362DF894A344F1FB1512B8F4E55AB8EE7C450EE53ACC6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ee22e216-2e00-4f91-b226-85ba58ed5c78 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bf54bd2e-24e0-433f-8b7d-b971f6f1cad8 + response: + body: + string: '{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - a6f90f1e-890c-4e82-aa58-4af85536bde9 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:09 GMT + etag: + - '"2966FA8AA838E18DCE75DC8A46208CA83051FCC3B0D674C1C44AA9AD4BCD10E0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a6f90f1e-890c-4e82-aa58-4af85536bde9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:10 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src67ead6e3-849e-4115-ab05-70a1faa28f99?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:10 GMT + etag: + - '"0x8D910D01F06EB27"' + last-modified: + - Thu, 06 May 2021 20:47:10 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:47:11 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src67ead6e3-849e-4115-ab05-70a1faa28f99/ab47d009-dec4-4c36-a1eb-8b5b8072a830.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:47:10 GMT + etag: + - '"0x8D910D01F2C0712"' + last-modified: + - Thu, 06 May 2021 20:47:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:11 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target7c3fdb61-e7c9-4d1c-9eeb-ec0cb6f6de95?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:11 GMT + etag: + - '"0x8D910D01FBD0817"' + last-modified: + - Thu, 06 May 2021 20:47:12 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src67ead6e3-849e-4115-ab05-70a1faa28f99?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target7c3fdb61-e7c9-4d1c-9eeb-ec0cb6f6de95?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 8392ea1c-f5a2-49f5-bd93-1c538cff9ca0 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:11 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6f18e554-8aa1-4117-ab77-98a1bb9b5cbd + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8392ea1c-f5a2-49f5-bd93-1c538cff9ca0 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6f18e554-8aa1-4117-ab77-98a1bb9b5cbd + response: + body: + string: '{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:12.3269082Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 0bda62b6-1068-4f53-8c33-7605070d882e + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:11 GMT + etag: + - '"F0730488DE95E0089812E353978464F48CBF25FDEE329F1C166225E11430E709"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0bda62b6-1068-4f53-8c33-7605070d882e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6f18e554-8aa1-4117-ab77-98a1bb9b5cbd + response: + body: + string: '{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:12.3269082Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 8c1d4913-2778-4cee-8dd2-ddda5843cdc1 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:11 GMT + etag: + - '"F0730488DE95E0089812E353978464F48CBF25FDEE329F1C166225E11430E709"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8c1d4913-2778-4cee-8dd2-ddda5843cdc1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6f18e554-8aa1-4117-ab77-98a1bb9b5cbd + response: + body: + string: '{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:13.264092Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 0814b677-81c5-4c39-a34c-005008046a98 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:13 GMT + etag: + - '"ED715184A54C0291B7FB2C0901C7C582FB629BE8F6C3C8BCD28CDB739AC24A91"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0814b677-81c5-4c39-a34c-005008046a98 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6f18e554-8aa1-4117-ab77-98a1bb9b5cbd + response: + body: + string: '{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - e23676d4-ccc7-49f5-bb55-991b73be9dc3 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:14 GMT + etag: + - '"C2EBB77C82014E82DDF2D6374B7C1530634277B222C94D690E5766468363E9AB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e23676d4-ccc7-49f5-bb55-991b73be9dc3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6f18e554-8aa1-4117-ab77-98a1bb9b5cbd + response: + body: + string: '{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - a4d1490e-00b2-439d-b4c5-8f9673e74023 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:15 GMT + etag: + - '"C2EBB77C82014E82DDF2D6374B7C1530634277B222C94D690E5766468363E9AB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a4d1490e-00b2-439d-b4c5-8f9673e74023 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6f18e554-8aa1-4117-ab77-98a1bb9b5cbd + response: + body: + string: '{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - 9c3daa9a-e640-4720-80eb-0a70c3613ccd + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:16 GMT + etag: + - '"C90293DAB685FBC5BC17E4A9361E948ED5707151E89914A9864EF511C2CF79C4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9c3daa9a-e640-4720-80eb-0a70c3613ccd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srccf565887-abcf-40c7-a296-9b14c349c280?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:17 GMT + etag: + - '"0x8D910D02360623A"' + last-modified: + - Thu, 06 May 2021 20:47:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:47:18 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srccf565887-abcf-40c7-a296-9b14c349c280/9cd20835-6370-44b5-9c0a-d06e714df898.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:47:18 GMT + etag: + - '"0x8D910D02387A0DB"' + last-modified: + - Thu, 06 May 2021 20:47:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:18 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target6b91f72e-be64-4b2d-8487-569c2a4893ad?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:18 GMT + etag: + - '"0x8D910D0241E2FBB"' + last-modified: + - Thu, 06 May 2021 20:47:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccf565887-abcf-40c7-a296-9b14c349c280?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6b91f72e-be64-4b2d-8487-569c2a4893ad?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 176f741f-b9b7-4dff-aea6-f2c1721e7e82 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:18 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6524a3ae-aaec-4664-b16b-0cfb4cdeedbb + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 176f741f-b9b7-4dff-aea6-f2c1721e7e82 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6524a3ae-aaec-4664-b16b-0cfb4cdeedbb + response: + body: + string: '{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:19.6833098Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - b2148746-2e62-4aa1-8952-0940e00a3f82 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:18 GMT + etag: + - '"7609A8006A6053CB5BA7182FD231C16750EE7658F945F628662D396D64EB8D88"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b2148746-2e62-4aa1-8952-0940e00a3f82 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6524a3ae-aaec-4664-b16b-0cfb4cdeedbb + response: + body: + string: '{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:19.6833098Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - dc300db5-a14b-4b88-97a0-8709167d482e + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:19 GMT + etag: + - '"7609A8006A6053CB5BA7182FD231C16750EE7658F945F628662D396D64EB8D88"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dc300db5-a14b-4b88-97a0-8709167d482e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6524a3ae-aaec-4664-b16b-0cfb4cdeedbb + response: + body: + string: '{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:20.5472302Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - e16323aa-385b-4cab-9f70-f2df39ed82b8 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:21 GMT + etag: + - '"1CAB91CF2287AFDDE82BFAEC9F9F25EF7F60B2B61CCF2A933D353548B0A1290A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e16323aa-385b-4cab-9f70-f2df39ed82b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6524a3ae-aaec-4664-b16b-0cfb4cdeedbb + response: + body: + string: '{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 5155e9f6-27f2-4e55-9810-2aebf5596064 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:22 GMT + etag: + - '"F9607DB7CF92519EA7FC4BB325468A6210C2D65B006987E93CB918AA85D70A5D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5155e9f6-27f2-4e55-9810-2aebf5596064 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6524a3ae-aaec-4664-b16b-0cfb4cdeedbb + response: + body: + string: '{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - 03ad316d-37c1-4eed-8525-a076ba3798af + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:23 GMT + etag: + - '"B0631849B3E24D2A559818EEDC481E5392AC50BD95C779713B78EB296AF2CD98"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 03ad316d-37c1-4eed-8525-a076ba3798af + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src38f5fb34-e2a7-4801-9e55-3051918c7f37?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:23 GMT + etag: + - '"0x8D910D0270D228C"' + last-modified: + - Thu, 06 May 2021 20:47:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:47:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src38f5fb34-e2a7-4801-9e55-3051918c7f37/abbc1016-1c00-4696-a5cd-c2e33c874b8b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:47:23 GMT + etag: + - '"0x8D910D027337976"' + last-modified: + - Thu, 06 May 2021 20:47:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targeta46699fb-c9c1-406c-9c71-e9722295146a?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:25 GMT + etag: + - '"0x8D910D027C034B1"' + last-modified: + - Thu, 06 May 2021 20:47:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src38f5fb34-e2a7-4801-9e55-3051918c7f37?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta46699fb-c9c1-406c-9c71-e9722295146a?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 80879f4c-908c-479a-aff2-ec8075bd93be + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:25 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c787e8c8-518f-4344-965e-990231e3f8c0 + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 80879f4c-908c-479a-aff2-ec8075bd93be + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c787e8c8-518f-4344-965e-990231e3f8c0 + response: + body: + string: '{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:25.8866082Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - a5fe08bc-dafd-4bd6-828c-3547b66b8b3e + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:25 GMT + etag: + - '"DED89B2E911E386030AB4E46896AB74750FEAB0AD84127CC0C6D6823FE63992C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a5fe08bc-dafd-4bd6-828c-3547b66b8b3e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c787e8c8-518f-4344-965e-990231e3f8c0 + response: + body: + string: '{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:25.8866082Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - cfa287a4-709d-4768-b5d8-47930eea4ad6 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:26 GMT + etag: + - '"DED89B2E911E386030AB4E46896AB74750FEAB0AD84127CC0C6D6823FE63992C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cfa287a4-709d-4768-b5d8-47930eea4ad6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c787e8c8-518f-4344-965e-990231e3f8c0 + response: + body: + string: '{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:26.8577252Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 71a61e77-911d-404b-b908-552e1ead8e98 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:27 GMT + etag: + - '"06B1F189B3E960BD0F041BC2882B0908265F56C3DD790153A429F7C814E90D9A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 71a61e77-911d-404b-b908-552e1ead8e98 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c787e8c8-518f-4344-965e-990231e3f8c0 + response: + body: + string: '{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:26.8577252Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 655640ba-d831-4d6e-9828-590d206ef536 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:28 GMT + etag: + - '"06B1F189B3E960BD0F041BC2882B0908265F56C3DD790153A429F7C814E90D9A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 655640ba-d831-4d6e-9828-590d206ef536 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c787e8c8-518f-4344-965e-990231e3f8c0 + response: + body: + string: '{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - e496fade-a0dd-4a14-aced-019f01f212d9 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:29 GMT + etag: + - '"D73BA02F8ABB4D6E12FE56CFBC692B55DF042AFE3B87297E026F363A90792299"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e496fade-a0dd-4a14-aced-019f01f212d9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c787e8c8-518f-4344-965e-990231e3f8c0 + response: + body: + string: '{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - d3138963-c957-4ff7-b014-5cab3005d589 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:30 GMT + etag: + - '"9A14DF593719D9916330164CF054B0F907AA7F19B7F0C5BB37315F6F1FF6BFCA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d3138963-c957-4ff7-b014-5cab3005d589 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src38064226-f003-4b30-ad4e-4ec90f8b1956?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:31 GMT + etag: + - '"0x8D910D02B76AE18"' + last-modified: + - Thu, 06 May 2021 20:47:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:47:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src38064226-f003-4b30-ad4e-4ec90f8b1956/38770771-fe64-460d-92e0-d105e53b7b26.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:47:31 GMT + etag: + - '"0x8D910D02B9C34BF"' + last-modified: + - Thu, 06 May 2021 20:47:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:32 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target91fcf497-cfb4-4321-8b5e-dba4f21adf33?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:32 GMT + etag: + - '"0x8D910D02C316479"' + last-modified: + - Thu, 06 May 2021 20:47:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src38064226-f003-4b30-ad4e-4ec90f8b1956?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target91fcf497-cfb4-4321-8b5e-dba4f21adf33?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - edafe1a5-9cde-4c35-bff0-483eaa751c4b + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:32 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/19bec24c-6b17-4d83-8666-5e448c058f2f + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - edafe1a5-9cde-4c35-bff0-483eaa751c4b + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/19bec24c-6b17-4d83-8666-5e448c058f2f + response: + body: + string: '{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:33.2287132Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 16e33173-b107-4db4-9a7c-7f5c8a44d8dd + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:33 GMT + etag: + - '"95D13041CB29382B83A4BF0CC00411B74004D31F4F2F58256471E6F04E01205B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 16e33173-b107-4db4-9a7c-7f5c8a44d8dd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/19bec24c-6b17-4d83-8666-5e448c058f2f + response: + body: + string: '{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:33.2287132Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 6a3110c8-22b3-4ca7-a1f7-b35d3e03f47a + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:33 GMT + etag: + - '"95D13041CB29382B83A4BF0CC00411B74004D31F4F2F58256471E6F04E01205B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6a3110c8-22b3-4ca7-a1f7-b35d3e03f47a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/19bec24c-6b17-4d83-8666-5e448c058f2f + response: + body: + string: '{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:34.1286532Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1eff6829-388e-4c5a-84da-eb46e17750d8 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:34 GMT + etag: + - '"A16C0D97425E675150BC712300A65CC055EC3644FE4F1DF7F69FF3F4752D0205"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1eff6829-388e-4c5a-84da-eb46e17750d8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/19bec24c-6b17-4d83-8666-5e448c058f2f + response: + body: + string: '{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 32ad6f35-b564-4a5f-b691-298be8c6c4ca + cache-control: + - public,max-age=1 + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:35 GMT + etag: + - '"DD0AD9CBD2EB237752345691676844B6679A2B64BEAC3AA24383BE930FFCE128"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 32ad6f35-b564-4a5f-b691-298be8c6c4ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/19bec24c-6b17-4d83-8666-5e448c058f2f + response: + body: + string: '{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 9cc0654f-d7a4-49b6-b1f9-0a600aefe6aa + cache-control: + - public,max-age=1 + content-length: + - '288' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:36 GMT + etag: + - '"DD0AD9CBD2EB237752345691676844B6679A2B64BEAC3AA24383BE930FFCE128"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9cc0654f-d7a4-49b6-b1f9-0a600aefe6aa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/19bec24c-6b17-4d83-8666-5e448c058f2f + response: + body: + string: '{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - 3af1de86-c799-447b-ab76-1bf254b58fb9 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:37 GMT + etag: + - '"B12DB91C3462158CE2179DBA7BECF7CBD3DB3172CE1E7F468FC954C88B2172FB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3af1de86-c799-447b-ab76-1bf254b58fb9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:38 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce0bd758f-c4f6-4c26-b9a1-87ea909bd1d6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:38 GMT + etag: + - '"0x8D910D02FCFDF73"' + last-modified: + - Thu, 06 May 2021 20:47:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:47:39 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce0bd758f-c4f6-4c26-b9a1-87ea909bd1d6/1e4a0700-bba6-4acb-a3e5-4fddbb36c6da.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:47:39 GMT + etag: + - '"0x8D910D02FF758FE"' + last-modified: + - Thu, 06 May 2021 20:47:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:39 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target35b73078-6fde-4b31-8829-409ce60093b0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:39 GMT + etag: + - '"0x8D910D03087955C"' + last-modified: + - Thu, 06 May 2021 20:47:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce0bd758f-c4f6-4c26-b9a1-87ea909bd1d6?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target35b73078-6fde-4b31-8829-409ce60093b0?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 0fd33d3c-1f8d-42ff-8687-00be07718c1d + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:40 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53 + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0fd33d3c-1f8d-42ff-8687-00be07718c1d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53 + response: + body: + string: '{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:40.5080141Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - b3515267-7e4a-46a9-966d-a9918186cd6e + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:40 GMT + etag: + - '"ADB35DFE2B1C7624B388294F4705D3595DEBF9B08C5D6BE2098FBF1F856670B7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b3515267-7e4a-46a9-966d-a9918186cd6e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53 + response: + body: + string: '{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:40.5080141Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 16f2e7d8-d839-4adf-92ae-d9d7e3738b37 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:40 GMT + etag: + - '"ADB35DFE2B1C7624B388294F4705D3595DEBF9B08C5D6BE2098FBF1F856670B7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 16f2e7d8-d839-4adf-92ae-d9d7e3738b37 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53 + response: + body: + string: '{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:41.5006019Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 814778a0-9ab0-49d5-a817-29f2d2a068fb + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:41 GMT + etag: + - '"7D1BAF1A75C30860D9E058FA9BA9837520945FB3556E7543319A41B1707887BE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 814778a0-9ab0-49d5-a817-29f2d2a068fb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53 + response: + body: + string: '{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 31071d20-7d92-42e5-87aa-5d817cdef0b4 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:42 GMT + etag: + - '"7A203C096CE6D7E62987CAFE68EBE81B5E57F033134C2CF24FC4231DDD2469B2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 31071d20-7d92-42e5-87aa-5d817cdef0b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53 + response: + body: + string: '{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 68063c45-edb4-423a-99b0-176a73899af0 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:43 GMT + etag: + - '"7A203C096CE6D7E62987CAFE68EBE81B5E57F033134C2CF24FC4231DDD2469B2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 68063c45-edb4-423a-99b0-176a73899af0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53 + response: + body: + string: '{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - c349e679-f3ee-476f-8cb9-3cdf8c7f659f + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:45 GMT + etag: + - '"176A7F6EBBD7CADBB7C9D21559DD6EA57592D2CDECA68CDFDEB8831FB884B0BE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c349e679-f3ee-476f-8cb9-3cdf8c7f659f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:45 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcecbe6d8f-d340-43c0-8048-89386b5b64c0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:46 GMT + etag: + - '"0x8D910D0342B20FF"' + last-modified: + - Thu, 06 May 2021 20:47:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:47:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcecbe6d8f-d340-43c0-8048-89386b5b64c0/86d6087d-ed80-48be-a477-038d3554ef61.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:47:46 GMT + etag: + - '"0x8D910D03450810F"' + last-modified: + - Thu, 06 May 2021 20:47:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target0d67aaab-c953-46da-982b-eb57f6b31266?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:46 GMT + etag: + - '"0x8D910D034DFE812"' + last-modified: + - Thu, 06 May 2021 20:47:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcecbe6d8f-d340-43c0-8048-89386b5b64c0?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0d67aaab-c953-46da-982b-eb57f6b31266?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 914ac916-122b-4e81-91a9-eb8644d196a9 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:47 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1533c7ea-f404-42a4-91ac-e779f36c2cf1 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 914ac916-122b-4e81-91a9-eb8644d196a9 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1533c7ea-f404-42a4-91ac-e779f36c2cf1 + response: + body: + string: '{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:47.7866857Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - b06af437-49c4-41c0-ab3e-fc9fbbbc0595 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:47 GMT + etag: + - '"7FE90372FF02BCD0213781C41086AA530FCC3B218532D0B9CEDA08D1EF93DD39"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b06af437-49c4-41c0-ab3e-fc9fbbbc0595 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1533c7ea-f404-42a4-91ac-e779f36c2cf1 + response: + body: + string: '{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:47.7866857Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 18cba4f9-9f58-4cdc-9265-9776f1c031cd + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:47 GMT + etag: + - '"7FE90372FF02BCD0213781C41086AA530FCC3B218532D0B9CEDA08D1EF93DD39"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 18cba4f9-9f58-4cdc-9265-9776f1c031cd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1533c7ea-f404-42a4-91ac-e779f36c2cf1 + response: + body: + string: '{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:48.7604933Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 2b85cf7a-0e27-44fc-abe2-e637a82d21b8 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:48 GMT + etag: + - '"40763D85DA5533059893E618B6E58704DF883915C0E02F17A5BF11E3CC58E290"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2b85cf7a-0e27-44fc-abe2-e637a82d21b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1533c7ea-f404-42a4-91ac-e779f36c2cf1 + response: + body: + string: '{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - ffa95d3b-20ac-48d7-aa91-6e7ee7608046 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:49 GMT + etag: + - '"EDBBBC2C468924FDB2531EF098604EBBBB2733541B915953A3CE0B1DFE7A5F42"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ffa95d3b-20ac-48d7-aa91-6e7ee7608046 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1533c7ea-f404-42a4-91ac-e779f36c2cf1 + response: + body: + string: '{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - 30863817-ea14-4b76-b23f-4abcaa41371d + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:51 GMT + etag: + - '"4F410CEBDDAF6E8DF8EC7640EABC521A0FE56851342F8299935F4B82598C3051"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 30863817-ea14-4b76-b23f-4abcaa41371d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:51 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcdfd65491-7da2-4d07-b045-68fede3a90cd?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:52 GMT + etag: + - '"0x8D910D037C9CA2B"' + last-modified: + - Thu, 06 May 2021 20:47:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:47:52 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcdfd65491-7da2-4d07-b045-68fede3a90cd/d1bbd319-9395-40a5-817e-3cefd07120a6.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:47:52 GMT + etag: + - '"0x8D910D037F10D13"' + last-modified: + - Thu, 06 May 2021 20:47:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:52 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetbf5d3d26-dc39-46d4-947f-14e63558ab55?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:52 GMT + etag: + - '"0x8D910D038801C9C"' + last-modified: + - Thu, 06 May 2021 20:47:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdfd65491-7da2-4d07-b045-68fede3a90cd?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbf5d3d26-dc39-46d4-947f-14e63558ab55?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - c82a7355-b287-4a23-a1ae-83c1c96dac43 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:53 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/db79e12c-7aef-47bc-b62f-0057e5e76ac7 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c82a7355-b287-4a23-a1ae-83c1c96dac43 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/db79e12c-7aef-47bc-b62f-0057e5e76ac7 + response: + body: + string: '{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:53.8795722Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 50de0609-b12f-4733-980e-f7b60779e2fe + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:53 GMT + etag: + - '"8FC7510061EDD2E6896D3A67E0164A90923E7996D92E76B4D571FB2B3C10CCE4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 50de0609-b12f-4733-980e-f7b60779e2fe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/db79e12c-7aef-47bc-b62f-0057e5e76ac7 + response: + body: + string: '{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:53.8795722Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 933cd604-99d2-44d4-bbf9-d26bb028f1a8 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:53 GMT + etag: + - '"8FC7510061EDD2E6896D3A67E0164A90923E7996D92E76B4D571FB2B3C10CCE4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 933cd604-99d2-44d4-bbf9-d26bb028f1a8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/db79e12c-7aef-47bc-b62f-0057e5e76ac7 + response: + body: + string: '{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:54.7424454Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 90f6feb4-6462-4c49-8443-4608ce8af64d + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:54 GMT + etag: + - '"E2621DC078AE34563DC777F62270E8A09F107790150226C08D39F21892BB67A0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 90f6feb4-6462-4c49-8443-4608ce8af64d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/db79e12c-7aef-47bc-b62f-0057e5e76ac7 + response: + body: + string: '{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:54.7424454Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f79a5ace-0a2a-449b-b560-4d79152b9b5b + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:55 GMT + etag: + - '"E2621DC078AE34563DC777F62270E8A09F107790150226C08D39F21892BB67A0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f79a5ace-0a2a-449b-b560-4d79152b9b5b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/db79e12c-7aef-47bc-b62f-0057e5e76ac7 + response: + body: + string: '{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 8d5910c9-24bf-4256-b790-f610f7d8e7f1 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:57 GMT + etag: + - '"8F2F2EC692CEF3DDC8AD4EAF5FF767138F8162551D90B5FF87EF8ED277930CBC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8d5910c9-24bf-4256-b790-f610f7d8e7f1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/db79e12c-7aef-47bc-b62f-0057e5e76ac7 + response: + body: + string: '{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - b66ea01a-9bfb-4b63-b1cb-321baa1422a3 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:47:58 GMT + etag: + - '"3A59F7B39C1A6CABD0E3D89385D995FE1EB8D88115DB18E71BAFA47845EA4669"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b66ea01a-9bfb-4b63-b1cb-321baa1422a3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:47:59 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3c5c06f4-c88c-476a-bd45-e9c9e655efe5?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:47:59 GMT + etag: + - '"0x8D910D03C31853C"' + last-modified: + - Thu, 06 May 2021 20:47:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:00 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3c5c06f4-c88c-476a-bd45-e9c9e655efe5/4a591845-7f2a-4d0e-bbbd-a7b3e7542477.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:47:59 GMT + etag: + - '"0x8D910D03C555AAE"' + last-modified: + - Thu, 06 May 2021 20:48:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:00 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target1d2c0b64-31cd-4bc8-af16-5c80798b6746?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:00 GMT + etag: + - '"0x8D910D03CE746C8"' + last-modified: + - Thu, 06 May 2021 20:48:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3c5c06f4-c88c-476a-bd45-e9c9e655efe5?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1d2c0b64-31cd-4bc8-af16-5c80798b6746?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 234c3917-f321-4611-984b-d7431a075357 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:00 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9c916cbd-bea2-46c0-ae76-e3ad88a0b30c + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 234c3917-f321-4611-984b-d7431a075357 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9c916cbd-bea2-46c0-ae76-e3ad88a0b30c + response: + body: + string: '{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:01.2578475Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f39754af-e235-408f-8608-2895c7a49add + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:00 GMT + etag: + - '"A29423A5A2B4F194FC55B4D5E869B4F65C2F742357C7862811E8E77FB2F6DA44"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f39754af-e235-408f-8608-2895c7a49add + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9c916cbd-bea2-46c0-ae76-e3ad88a0b30c + response: + body: + string: '{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:01.2578475Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 237f5a39-8c05-4d70-a098-cf5136c4c859 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:00 GMT + etag: + - '"A29423A5A2B4F194FC55B4D5E869B4F65C2F742357C7862811E8E77FB2F6DA44"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 237f5a39-8c05-4d70-a098-cf5136c4c859 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9c916cbd-bea2-46c0-ae76-e3ad88a0b30c + response: + body: + string: '{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:02.149263Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 5c5209b7-a96c-4928-b6d5-9880eb96e913 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:02 GMT + etag: + - '"251081236BFCA42ACB308C931E5BBA74BD9A2387A0F59E1FBCFC18B8C2212445"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5c5209b7-a96c-4928-b6d5-9880eb96e913 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9c916cbd-bea2-46c0-ae76-e3ad88a0b30c + response: + body: + string: '{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 7b530b0f-2268-4d98-a7f4-0cec4c7844d7 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:03 GMT + etag: + - '"38929084623DCFBC29960FF1EEF5542C97835471A94D730E7CDA6577114CAD69"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7b530b0f-2268-4d98-a7f4-0cec4c7844d7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9c916cbd-bea2-46c0-ae76-e3ad88a0b30c + response: + body: + string: '{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 7894abc8-9cd9-433c-b469-807019e95b29 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:04 GMT + etag: + - '"38929084623DCFBC29960FF1EEF5542C97835471A94D730E7CDA6577114CAD69"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7894abc8-9cd9-433c-b469-807019e95b29 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9c916cbd-bea2-46c0-ae76-e3ad88a0b30c + response: + body: + string: '{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - 53a8a224-33b8-4b3e-941c-718b1e0826d0 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:05 GMT + etag: + - '"2EECFB2D04E3FFA66680CDABA3B4EBE8DD37FFAAE737CEC939F8B008C876FC08"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 53a8a224-33b8-4b3e-941c-718b1e0826d0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&createdDateTimeUtcEnd=2021-05-06T20%3A47%3A31.020499Z + response: + body: + string: '{"value":[{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2330&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 2ece835b-0192-4824-8b66-0ae4e75be1be + cache-control: + - public,max-age=1 + content-length: + - '15139' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:05 GMT + etag: + - '"71F90D14FD0487DCD6F8702EC3DBF7BF0726DE4FF005301507BE44E1268305BD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2ece835b-0192-4824-8b66-0ae4e75be1be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2330&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2280&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 711ba0ec-97f8-44fe-94d6-d4cd8315e09a + cache-control: + - public,max-age=1 + content-length: + - '15129' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:06 GMT + etag: + - '"2BFD3B9F2C2DB7F238ACEE97F411A94A17EE5D0D5C2BD8BA3B5E17A9D636F31B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 711ba0ec-97f8-44fe-94d6-d4cd8315e09a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2280&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2230&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - e829d13f-2eb3-48f0-a4a4-b5f42c6da7a4 + cache-control: + - public,max-age=1 + content-length: + - '14856' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:06 GMT + etag: + - '"2CD2AA26F4DC9BD2946C40DC8E888FB60E1DF43AA68BE26B20CF04F9FC887411"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e829d13f-2eb3-48f0-a4a4-b5f42c6da7a4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2230&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2180&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - ab331c16-9aa2-4d03-b09f-9f5fc80570c7 + cache-control: + - public,max-age=1 + content-length: + - '15416' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:06 GMT + etag: + - '"55301612CF8EE63C757E22E8A19F11C7645AAB61E8A518D62BCB730ECD6DAD7A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ab331c16-9aa2-4d03-b09f-9f5fc80570c7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2180&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2130&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - d0fd6402-79a8-4af0-b10a-f847f61ac13a + cache-control: + - public,max-age=1 + content-length: + - '14859' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:07 GMT + etag: + - '"B096C682254597FF954746C192EFE88AEDD1186D5548A0C762B6CD4B4C9CD8DC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d0fd6402-79a8-4af0-b10a-f847f61ac13a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2130&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2080&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 6ad38774-264c-4853-9709-3c5fc15c4782 + cache-control: + - public,max-age=1 + content-length: + - '14857' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:07 GMT + etag: + - '"D7C6680EF1AE67E1E337D8D9DB0D7350FB6860296D417DA213808583BD550F18"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6ad38774-264c-4853-9709-3c5fc15c4782 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2080&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2030&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - ee659325-50c6-429c-8841-34c981c4df73 + cache-control: + - public,max-age=1 + content-length: + - '14872' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:07 GMT + etag: + - '"9F01A7BF9D247D767EF386E049163095010288BA45E979EE19FC9B3C287597A8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ee659325-50c6-429c-8841-34c981c4df73 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2030&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=1980&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 19136b6c-0699-4ea5-aaa3-b1dd3095203a + cache-control: + - public,max-age=1 + content-length: + - '14848' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:07 GMT + etag: + - '"59056A61DE3E0BE5231ACA26F5AD047F97D25EC6FA7223B9ED1AB744BF05010D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 19136b6c-0699-4ea5-aaa3-b1dd3095203a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=1980&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1930&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 5b499777-e999-4ebb-b371-bd656f7bcd64 + cache-control: + - public,max-age=1 + content-length: + - '14846' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:08 GMT + etag: + - '"C76B76A14D95EBC0FA410EDB3F8D1026584BCB5CF39B746964C8A6D69D9C8E92"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5b499777-e999-4ebb-b371-bd656f7bcd64 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1930&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1880&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 52c21a01-0f74-42d9-81eb-18278a486fb0 + cache-control: + - public,max-age=1 + content-length: + - '14851' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:08 GMT + etag: + - '"264349BBACC56EEBFB3DD14F8DF3246601363CE4433DAC76C4F79DF82C725C74"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 52c21a01-0f74-42d9-81eb-18278a486fb0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1880&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1830&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - f9869707-aec1-4718-b6b1-03e280a6f35f + cache-control: + - public,max-age=1 + content-length: + - '14856' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:08 GMT + etag: + - '"83900A864B38BD0B83DE5AF08577EA355B65BD2A0A618AA42A7F734C0C1D410C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f9869707-aec1-4718-b6b1-03e280a6f35f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1830&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1780&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 461f85fb-35a5-4329-9ab9-f8b305a5cb9a + cache-control: + - public,max-age=1 + content-length: + - '14849' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:09 GMT + etag: + - '"D9B044098106A164184D9961E1B752EB61676F2A046E7A9E5DC980DC331BB018"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 461f85fb-35a5-4329-9ab9-f8b305a5cb9a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1780&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1730&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 8589dadf-ed38-4820-8425-ea2375e3f0da + cache-control: + - public,max-age=1 + content-length: + - '14853' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:09 GMT + etag: + - '"AD91787B8B8375831FCB70788FDCFBE34CF439EDA43268D878E32866D5EF4CAC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8589dadf-ed38-4820-8425-ea2375e3f0da + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1730&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1680&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - b4bcda55-706d-4a80-83f8-c91a86ebff5a + cache-control: + - public,max-age=1 + content-length: + - '15382' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:09 GMT + etag: + - '"FB2C9B2C0980DA0D36A0D3C6D504D164CD5BFF326118112D818EA97E34668ADE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b4bcda55-706d-4a80-83f8-c91a86ebff5a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1680&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1630&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 9afc2e60-3c47-4767-b916-5f07bc18b4ac + cache-control: + - public,max-age=1 + content-length: + - '14841' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:10 GMT + etag: + - '"2C854D0065695ED8F0D4D23DDE4CD0A9D544613238E614AB8D957DD8DDDE6F72"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9afc2e60-3c47-4767-b916-5f07bc18b4ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1630&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1580&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - db80dd22-b007-4646-98ba-c35cbc75f019 + cache-control: + - public,max-age=1 + content-length: + - '14853' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:10 GMT + etag: + - '"0EA592D4FC1E9B906332F0E6A8C462F7CDAEDAF54B92AF42CC357D1CB586ECDA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - db80dd22-b007-4646-98ba-c35cbc75f019 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1580&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1530&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 5310b8ec-a260-454c-a62e-815350fae43c + cache-control: + - public,max-age=1 + content-length: + - '14864' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:10 GMT + etag: + - '"5FABE1D772710F32213275E2D42E7CFEA33EE66B694911A70CE7D4039E33901B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5310b8ec-a260-454c-a62e-815350fae43c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1530&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1480&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 42cebd6c-1972-42a9-88cb-e8a1d25172bf + cache-control: + - public,max-age=1 + content-length: + - '14846' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:11 GMT + etag: + - '"3F4507DB10C184B723FE635ABA3FF23646716B7185822D91B8E7463A8911C0F4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 42cebd6c-1972-42a9-88cb-e8a1d25172bf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1480&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1430&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 6c73e1cb-055b-4616-a131-0d97501da7b2 + cache-control: + - public,max-age=1 + content-length: + - '14838' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:11 GMT + etag: + - '"45D12FD4C758BD9CEB801BFEA5B4F5A77CA82B42F04F5461A7DBC87AC3FCE507"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6c73e1cb-055b-4616-a131-0d97501da7b2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1430&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1380&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - fa6afedd-e154-4c86-9d4b-d61c5392fee4 + cache-control: + - public,max-age=1 + content-length: + - '15379' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:11 GMT + etag: + - '"C15EDABA6E0AE4FD9F1B93F6D79E14A8B5344A471A729CE7DEA35F0B9D6F0BE7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fa6afedd-e154-4c86-9d4b-d61c5392fee4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1380&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1330&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 3ab0844c-d8c1-48e3-927e-abc53059ea86 + cache-control: + - public,max-age=1 + content-length: + - '14861' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:12 GMT + etag: + - '"9D1529E0EA06120063F54215206BBF11147F94F3AC9B004DC704DADF0CEC82AD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3ab0844c-d8c1-48e3-927e-abc53059ea86 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1330&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1280&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 29b241f1-24df-48cc-b751-12626b35b15c + cache-control: + - public,max-age=1 + content-length: + - '15381' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:12 GMT + etag: + - '"8F4F87BFB563E5033A4FB2171DFE1C7DA4E70A403679C7C71B6FC496C6975EC9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 29b241f1-24df-48cc-b751-12626b35b15c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1280&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1230&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 8a142ef7-4bb1-4bfa-a168-c11a284942e7 + cache-control: + - public,max-age=1 + content-length: + - '14914' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:12 GMT + etag: + - '"A23AB9B391E4E8E30FFA31CB3FA23F37F8D26C08F40D43B599A9930FEFC6E13D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8a142ef7-4bb1-4bfa-a168-c11a284942e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1230&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1180&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - fb8f5df9-168e-48e0-9b9b-fc14ff76d0a8 + cache-control: + - public,max-age=1 + content-length: + - '14937' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:14 GMT + etag: + - '"4D5665F5E4059AE7722424E17B653841FD24AC9A2862286ED35D9A45C4751BF1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fb8f5df9-168e-48e0-9b9b-fc14ff76d0a8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1180&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1130&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 45e22739-4b51-48ff-9088-76028125edc5 + cache-control: + - public,max-age=1 + content-length: + - '14853' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:14 GMT + etag: + - '"0FEDD9936219404CF1BFD7116347C886076606FF5A864B3F7499ECFFA90B9272"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 45e22739-4b51-48ff-9088-76028125edc5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1130&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1080&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - d81ed7bb-369f-4006-b3a1-e0c50ec2d352 + cache-control: + - public,max-age=1 + content-length: + - '14848' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:14 GMT + etag: + - '"3FDD31FA8CEFEDDA89EA85159019E07CD3EC454B9CBE580421BA336E62DC741A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d81ed7bb-369f-4006-b3a1-e0c50ec2d352 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1080&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1030&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - b92a05ad-2594-44a0-86f0-856405228007 + cache-control: + - public,max-age=1 + content-length: + - '14843' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:14 GMT + etag: + - '"5180992C6CC9F3D49C5FB7AD383B2C80F2BD2BF314B7DDE1C0B4A5FF14C24DFC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b92a05ad-2594-44a0-86f0-856405228007 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1030&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=980&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - a1a029a6-6954-4b2b-ae08-3f9fc5bdbdc4 + cache-control: + - public,max-age=1 + content-length: + - '14872' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:15 GMT + etag: + - '"0F3590BBD475B9C880B4E9A6D31DD559580749B352F65A96DE5656E1AD311044"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1a029a6-6954-4b2b-ae08-3f9fc5bdbdc4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=980&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=930&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 1d57a8ea-8f2c-4fde-9fbd-8c37a8800576 + cache-control: + - public,max-age=1 + content-length: + - '14842' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:15 GMT + etag: + - '"EE5FCE9A43F052815A07A68FFB0762D2D9A1D8A5C62AFDEDE0DC968A8C934088"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1d57a8ea-8f2c-4fde-9fbd-8c37a8800576 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=930&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=880&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 124146ef-eee3-49e0-93f2-db23ce6f7923 + cache-control: + - public,max-age=1 + content-length: + - '14843' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:15 GMT + etag: + - '"79F21E0A7EB0BADD120C4A9D7BCD8779F5F91D4F828E514F3A93B32EFFC03A09"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 124146ef-eee3-49e0-93f2-db23ce6f7923 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=880&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=830&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - f75f81b3-d0ac-49f9-8280-9e42cba6a56c + cache-control: + - public,max-age=1 + content-length: + - '14844' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:16 GMT + etag: + - '"B82D88126AF6075EA896F28BB2AFA3293E8893680C51462109555B05FFB15F47"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f75f81b3-d0ac-49f9-8280-9e42cba6a56c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=830&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=780&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - d4b95360-8f01-4bb0-9eeb-1598bc202494 + cache-control: + - public,max-age=1 + content-length: + - '14846' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:16 GMT + etag: + - '"C49B08AF072610976086289AC48096651CDCDF48717DD6CB40D0682BE955DB0E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d4b95360-8f01-4bb0-9eeb-1598bc202494 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=780&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=730&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 56c1ebcf-a57d-46bd-b5a6-eaba9ac88b00 + cache-control: + - public,max-age=1 + content-length: + - '14850' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:16 GMT + etag: + - '"94B6285A523B16C227BCF833D06F377BA292C0D9E1A0EF7B550A58DF1D202381"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 56c1ebcf-a57d-46bd-b5a6-eaba9ac88b00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=730&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=680&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 04c55ed5-5502-4d52-b373-eb9c8ec4a663 + cache-control: + - public,max-age=1 + content-length: + - '14847' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:17 GMT + etag: + - '"9CACFDECB379D41E3BE420615BC9C9565F82FFD8349CE53DC927B1A6012A858F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 04c55ed5-5502-4d52-b373-eb9c8ec4a663 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=680&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=630&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - d65bbe41-c0ff-44ae-a0b1-1fc71babf7e4 + cache-control: + - public,max-age=1 + content-length: + - '14844' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:17 GMT + etag: + - '"4934747BAD85E27C4A783A82C5F4A1B31C523978B4EDC67BEB44C6580665D5DC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d65bbe41-c0ff-44ae-a0b1-1fc71babf7e4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=630&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=580&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - f276a72d-cd0f-4f7d-8af8-f203651e2603 + cache-control: + - public,max-age=1 + content-length: + - '14846' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:17 GMT + etag: + - '"A11EC7151BB78247988B08EB9ABCDBE2BEBB04E1AB35188101E7456CF20683D9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f276a72d-cd0f-4f7d-8af8-f203651e2603 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=580&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=530&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - a4a8f619-e8bb-4469-94b6-0a873ed8ea3a + cache-control: + - public,max-age=1 + content-length: + - '14854' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:17 GMT + etag: + - '"0348ECD16C2AF05C460FFC1666CA8B643CA6A28AAA9824FE9CF31CD676E8834B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a4a8f619-e8bb-4469-94b6-0a873ed8ea3a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=530&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=480&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 92d88ea3-c251-45b7-97eb-6b121ed05de3 + cache-control: + - public,max-age=1 + content-length: + - '14851' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:18 GMT + etag: + - '"C3013350356DED89305A371B402EC4D623063E95C0A223BE327C21A4CFB4B5F4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 92d88ea3-c251-45b7-97eb-6b121ed05de3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=480&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=430&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - c08fd543-ff1b-4fd6-9ad9-3c57f5312f2d + cache-control: + - public,max-age=1 + content-length: + - '14856' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:18 GMT + etag: + - '"BEDA13B40070442EF4E970BCFE28685D44785C56557AFA2A46AA17D45CD56938"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c08fd543-ff1b-4fd6-9ad9-3c57f5312f2d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=430&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=380&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 8fc64d4f-23ef-4259-bb37-d9ac84e3acbd + cache-control: + - public,max-age=1 + content-length: + - '14846' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:18 GMT + etag: + - '"0A4115902E7EA64C19452BB3BFE13677A261ADF44E18EF0660467DDDA22933AB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8fc64d4f-23ef-4259-bb37-d9ac84e3acbd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=380&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=330&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 9a3fe876-f624-4ea8-a604-6b3220dbb18e + cache-control: + - public,max-age=1 + content-length: + - '14844' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:19 GMT + etag: + - '"B3199A4F73A9F40AF6FC4EB0D93600FE8660F9A134BA359EAD5813102C084D05"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9a3fe876-f624-4ea8-a604-6b3220dbb18e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=330&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=280&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - d5b2ece9-e760-4981-8584-b1ee6c82903d + cache-control: + - public,max-age=1 + content-length: + - '14843' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:19 GMT + etag: + - '"0C46037F6CC79CF964D8206D1A966615763B77094974A16AB07B47B0DD429762"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d5b2ece9-e760-4981-8584-b1ee6c82903d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=280&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=230&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 67e9485a-06ab-434e-8803-c49d35120bf8 + cache-control: + - public,max-age=1 + content-length: + - '14848' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:19 GMT + etag: + - '"06D2066C971864E224E1FFFE11A06DFB0C977440F9F12DAF411BE02EF8D6DDF5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 67e9485a-06ab-434e-8803-c49d35120bf8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=230&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=180&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - cb2a4e22-babc-4dcb-b92e-241f3b2755b0 + cache-control: + - public,max-age=1 + content-length: + - '14854' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:19 GMT + etag: + - '"2C0C52DD19573202DE69EAAE6582EAFCD3BCBE71020D5A0D26529D5B5CBBC453"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cb2a4e22-babc-4dcb-b92e-241f3b2755b0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=180&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=130&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 9e72013a-52b0-4328-b20c-e16bd8d74602 + cache-control: + - public,max-age=1 + content-length: + - '15125' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:20 GMT + etag: + - '"E667096D78A4B43CD904DAF38D5ACAFB58EFA90C30DA8C62D68555055FCF3FBD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9e72013a-52b0-4328-b20c-e16bd8d74602 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=130&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=80&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 413b543b-675d-46f4-84c4-16f309b0f10e + cache-control: + - public,max-age=1 + content-length: + - '15098' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:20 GMT + etag: + - '"02BF801B1D93A638FE276BE644405960BC84FCED0AECF7181A0A073572390CD7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 413b543b-675d-46f4-84c4-16f309b0f10e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=80&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=30&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z"}' + headers: + apim-request-id: + - 9c3ebe1c-3476-40a9-9e28-17e02a89b6de + cache-control: + - public,max-age=1 + content-length: + - '17710' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:20 GMT + etag: + - '"935CAC26EDF2903E599FF25F5EC87832A25B25B11B229FDBD5BF2236659D2E5A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9c3ebe1c-3476-40a9-9e28-17e02a89b6de + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=30&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:47:31.0204990Z + response: + body: + string: '{"value":[{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: + - 7facd45f-e77b-4da4-8d65-9cc6d546feb8 + cache-control: + - public,max-age=1 + content-length: + - '11517' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:20 GMT + etag: + - '"20921DF46FA704DF06D04C33BE9E9DEC53E7597AF8662A31A1649FDF8A7CBB84"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7facd45f-e77b-4da4-8d65-9cc6d546feb8 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_ids.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_ids.yaml new file mode 100644 index 000000000000..352934fac55c --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_ids.yaml @@ -0,0 +1,853 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srca52570e1-8db5-45e9-ba54-c799900992c8?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:21 GMT + etag: + - '"0x8D910D04981C43B"' + last-modified: + - Thu, 06 May 2021 20:48:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srca52570e1-8db5-45e9-ba54-c799900992c8/aa1ba1e8-a53b-4b62-b8d7-e2c1ca29f676.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:48:22 GMT + etag: + - '"0x8D910D049A62616"' + last-modified: + - Thu, 06 May 2021 20:48:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srca52570e1-8db5-45e9-ba54-c799900992c8/7a5faead-af53-41d8-90e4-afb6e8302f4e.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:48:22 GMT + etag: + - '"0x8D910D049CA0851"' + last-modified: + - Thu, 06 May 2021 20:48:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetc70aa014-1653-4f2a-8031-8381420470ae?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:23 GMT + etag: + - '"0x8D910D04A540EAC"' + last-modified: + - Thu, 06 May 2021 20:48:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca52570e1-8db5-45e9-ba54-c799900992c8?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc70aa014-1653-4f2a-8031-8381420470ae?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 29a7f102-7ef1-44cb-81f5-10f1d7945df2 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:23 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8d5887d1-ba65-4cbe-ada7-590d3cf06d67 + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 29a7f102-7ef1-44cb-81f5-10f1d7945df2 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8d5887d1-ba65-4cbe-ada7-590d3cf06d67 + response: + body: + string: '{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:24.3337892Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 59866b69-fad4-4ae6-88fe-64f3cfcff9f6 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:23 GMT + etag: + - '"8B66C05BE1EA6C4C99718BB1C24D7CA2DF12775AE3EC1553535FF0ACBF263D0A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 59866b69-fad4-4ae6-88fe-64f3cfcff9f6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3f84f36c-3e91-47c7-be0a-6e455792743e?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:25 GMT + etag: + - '"0x8D910D04B604111"' + last-modified: + - Thu, 06 May 2021 20:48:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3f84f36c-3e91-47c7-be0a-6e455792743e/3601030b-281e-43d1-af16-55fcf46326d8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:48:25 GMT + etag: + - '"0x8D910D04B843DBB"' + last-modified: + - Thu, 06 May 2021 20:48:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3f84f36c-3e91-47c7-be0a-6e455792743e/c7e8210a-c20b-448d-8eab-14a1375b5fdd.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:48:25 GMT + etag: + - '"0x8D910D04BA7AAB0"' + last-modified: + - Thu, 06 May 2021 20:48:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetd8fd0616-da49-4821-ae21-8afb5b2f2df2?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:26 GMT + etag: + - '"0x8D910D04C307BE8"' + last-modified: + - Thu, 06 May 2021 20:48:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3f84f36c-3e91-47c7-be0a-6e455792743e?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd8fd0616-da49-4821-ae21-8afb5b2f2df2?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 3da4f8e0-7a46-4768-91a3-c605a4164a28 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:26 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8afe28f1-3ddd-4a53-be69-a52e14a17051 + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3da4f8e0-7a46-4768-91a3-c605a4164a28 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8afe28f1-3ddd-4a53-be69-a52e14a17051 + response: + body: + string: '{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:26.9020107Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 63db6c7c-3ea5-45f9-adbb-d74da7eafa85 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:26 GMT + etag: + - '"69C2219B1A3254AF316DDB738B6DBA5291D0DB0BAC4B92B4C5E35C1001B12141"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 63db6c7c-3ea5-45f9-adbb-d74da7eafa85 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce000825c-878c-446f-9f63-7d22e21503ee?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:27 GMT + etag: + - '"0x8D910D04CEAF606"' + last-modified: + - Thu, 06 May 2021 20:48:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce000825c-878c-446f-9f63-7d22e21503ee/ae249bdc-251f-47ce-ba73-bf9a9f1b64bc.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:48:27 GMT + etag: + - '"0x8D910D04D0F445B"' + last-modified: + - Thu, 06 May 2021 20:48:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce000825c-878c-446f-9f63-7d22e21503ee/ac087235-b8ec-4239-b06c-166140ce478a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:48:28 GMT + etag: + - '"0x8D910D04D33C2DC"' + last-modified: + - Thu, 06 May 2021 20:48:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetc03860df-2480-40fe-ad5a-cb15f76814cf?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:28 GMT + etag: + - '"0x8D910D04DC2E9FB"' + last-modified: + - Thu, 06 May 2021 20:48:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce000825c-878c-446f-9f63-7d22e21503ee?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc03860df-2480-40fe-ad5a-cb15f76814cf?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 505dbc52-5094-44f3-8db9-80f9b5257bf9 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:28 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/84b04606-6785-4c1f-b089-153c9ec64b79 + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 505dbc52-5094-44f3-8db9-80f9b5257bf9 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/84b04606-6785-4c1f-b089-153c9ec64b79 + response: + body: + string: '{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.5424683Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 249c1bd4-b16f-4ddf-8178-2947cbc05f44 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:28 GMT + etag: + - '"331FC48AA51708A8214AA4F3E1F9070586D2AC3C2134E9DAFFFE2A8BF2E96F36"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 249c1bd4-b16f-4ddf-8178-2947cbc05f44 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&ids=8d5887d1-ba65-4cbe-ada7-590d3cf06d67,8afe28f1-3ddd-4a53-be69-a52e14a17051,84b04606-6785-4c1f-b089-153c9ec64b79 + response: + body: + string: '{"value":[{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.5424683Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.3146235Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: + - 8907b467-887c-4e3b-a2da-0d0fbd65ce39 + cache-control: + - public,max-age=1 + content-length: + - '886' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:29 GMT + etag: + - '"FB1C52BBDFE5841A4C591D1DEB5CA43024220F871937A01ACDB37473EEE9DEEF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8907b467-887c-4e3b-a2da-0d0fbd65ce39 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_status.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_status.yaml new file mode 100644 index 000000000000..211d70b350b4 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_filter_by_status.yaml @@ -0,0 +1,3629 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:30 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf09148df-b52a-4df7-ba9b-645f6db058c5?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:30 GMT + etag: + - '"0x8D910D04EA0D136"' + last-modified: + - Thu, 06 May 2021 20:48:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:30 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf09148df-b52a-4df7-ba9b-645f6db058c5/ffd294bc-5fcc-4390-b40d-df05e9dba934.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:48:30 GMT + etag: + - '"0x8D910D04EC46FAB"' + last-modified: + - Thu, 06 May 2021 20:48:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target7fef2712-3d2b-423d-b3f8-badc7205edb0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:31 GMT + etag: + - '"0x8D910D04F529DCE"' + last-modified: + - Thu, 06 May 2021 20:48:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf09148df-b52a-4df7-ba9b-645f6db058c5?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target7fef2712-3d2b-423d-b3f8-badc7205edb0?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 928296c7-7a94-48aa-9a57-58cb9d3fe1da + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:32 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/dfb0a85b-f0d5-4ed9-8e64-acb36044e72a + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 928296c7-7a94-48aa-9a57-58cb9d3fe1da + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dfb0a85b-f0d5-4ed9-8e64-acb36044e72a + response: + body: + string: '{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.5300012Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - c6113031-d01d-4f4f-8bce-4fe8b1295c9d + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:32 GMT + etag: + - '"904C8333730F55CFB5938342C4A4465D3012BAC1770EB7B3B67D109604EE8513"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c6113031-d01d-4f4f-8bce-4fe8b1295c9d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dfb0a85b-f0d5-4ed9-8e64-acb36044e72a + response: + body: + string: '{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.5300012Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - ab28f702-2c41-435b-acd5-84057959d2a0 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:32 GMT + etag: + - '"904C8333730F55CFB5938342C4A4465D3012BAC1770EB7B3B67D109604EE8513"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ab28f702-2c41-435b-acd5-84057959d2a0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dfb0a85b-f0d5-4ed9-8e64-acb36044e72a + response: + body: + string: '{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:33.4059075Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - a4b70350-e051-46d5-a0d5-6cb3a5c35166 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:33 GMT + etag: + - '"E654BDA1C5FCB6B84510D39A9712422E9C745546BFE3425E2707EDDB79F50D25"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a4b70350-e051-46d5-a0d5-6cb3a5c35166 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dfb0a85b-f0d5-4ed9-8e64-acb36044e72a + response: + body: + string: '{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:33.4059075Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1b5e539c-8995-473b-a1d6-2af0fc93b226 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:34 GMT + etag: + - '"E654BDA1C5FCB6B84510D39A9712422E9C745546BFE3425E2707EDDB79F50D25"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1b5e539c-8995-473b-a1d6-2af0fc93b226 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dfb0a85b-f0d5-4ed9-8e64-acb36044e72a + response: + body: + string: '{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - dcc36d97-f90b-48bd-84f6-2bf82984b31a + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:35 GMT + etag: + - '"F8D587EF00613FC053A5ED3D68CB75EE9FFA7B710CAB04B6A2480D9AD9FB1D17"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dcc36d97-f90b-48bd-84f6-2bf82984b31a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dfb0a85b-f0d5-4ed9-8e64-acb36044e72a + response: + body: + string: '{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - 040149db-1d79-4d93-894e-5670ec5b6ded + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:36 GMT + etag: + - '"BCE6409E511B3E8CC8B5E6C66E505C39518C2800686466ACD4F718269C31B566"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 040149db-1d79-4d93-894e-5670ec5b6ded + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:37 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd3bb7eb9-e32b-41ec-abc7-9a07892d61c9?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:37 GMT + etag: + - '"0x8D910D05343C1D6"' + last-modified: + - Thu, 06 May 2021 20:48:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:38 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd3bb7eb9-e32b-41ec-abc7-9a07892d61c9/d212ad96-731d-4db7-b26a-ffc6ed95dd1a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:48:37 GMT + etag: + - '"0x8D910D053689146"' + last-modified: + - Thu, 06 May 2021 20:48:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:38 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targeteb92be70-6584-4341-bef4-7c0889ff06ff?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:39 GMT + etag: + - '"0x8D910D053F77117"' + last-modified: + - Thu, 06 May 2021 20:48:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd3bb7eb9-e32b-41ec-abc7-9a07892d61c9?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeteb92be70-6584-4341-bef4-7c0889ff06ff?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - ed745b3e-ebb0-4053-b15c-19661f3f7085 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:39 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2a464eff-3e22-45af-9646-53ef84149ff8 + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ed745b3e-ebb0-4053-b15c-19661f3f7085 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2a464eff-3e22-45af-9646-53ef84149ff8 + response: + body: + string: '{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:39.9559408Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 08e14214-199a-40cb-9afa-e6c12901b867 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:39 GMT + etag: + - '"2368E484409B6C995A524C0EC45CFDC655D5F9D01DEB1BD7A5E48EE3BFB7B5F6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 08e14214-199a-40cb-9afa-e6c12901b867 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2a464eff-3e22-45af-9646-53ef84149ff8 + response: + body: + string: '{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:39.9559408Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 24280479-c5d7-491c-924f-7d810d0110fd + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:39 GMT + etag: + - '"2368E484409B6C995A524C0EC45CFDC655D5F9D01DEB1BD7A5E48EE3BFB7B5F6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 24280479-c5d7-491c-924f-7d810d0110fd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2a464eff-3e22-45af-9646-53ef84149ff8 + response: + body: + string: '{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:40.8154982Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 502bf146-db32-471f-b817-442192dbd69b + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:40 GMT + etag: + - '"39C273806436F574A7D5AF4A03CB236F94754F87E3342249109C60976004D9E4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 502bf146-db32-471f-b817-442192dbd69b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2a464eff-3e22-45af-9646-53ef84149ff8 + response: + body: + string: '{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:40.8154982Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1b0081de-3ee6-4d90-b1c8-0231ea39f89d + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:41 GMT + etag: + - '"39C273806436F574A7D5AF4A03CB236F94754F87E3342249109C60976004D9E4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1b0081de-3ee6-4d90-b1c8-0231ea39f89d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2a464eff-3e22-45af-9646-53ef84149ff8 + response: + body: + string: '{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - cfdc1e97-e1d6-4635-9569-c2aaa5c2b785 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:42 GMT + etag: + - '"FBD4D382C47E2F06FA00D323265E5D851D945DC9CC73F6793AD2AD6A47D3F8CD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cfdc1e97-e1d6-4635-9569-c2aaa5c2b785 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2a464eff-3e22-45af-9646-53ef84149ff8 + response: + body: + string: '{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - a7d45aea-dc27-49bd-adb6-f508a4302f35 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:43 GMT + etag: + - '"4081E097F27FECF83D440ABA370502867036AF4EE43A1B0C6B24D3C62EA40409"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a7d45aea-dc27-49bd-adb6-f508a4302f35 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:45 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src78ed26ea-21ce-4b01-a52b-78d8342afeff?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:45 GMT + etag: + - '"0x8D910D05796BC1A"' + last-modified: + - Thu, 06 May 2021 20:48:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src78ed26ea-21ce-4b01-a52b-78d8342afeff/6c3c94b0-7232-4d96-8f5c-3067c708b8bb.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:48:45 GMT + etag: + - '"0x8D910D057BC1306"' + last-modified: + - Thu, 06 May 2021 20:48:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetd1a7d23f-4bd4-4abf-9902-bf294b70ced7?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:46 GMT + etag: + - '"0x8D910D0584CFB90"' + last-modified: + - Thu, 06 May 2021 20:48:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src78ed26ea-21ce-4b01-a52b-78d8342afeff?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd1a7d23f-4bd4-4abf-9902-bf294b70ced7?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 953f7543-5367-49b5-be77-9bb44b5a3e00 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:47 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/989f76ec-18d8-4f43-aa51-ad2ea3441bb9 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 953f7543-5367-49b5-be77-9bb44b5a3e00 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/989f76ec-18d8-4f43-aa51-ad2ea3441bb9 + response: + body: + string: '{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:47.2256849Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 77aea5e0-b8ef-495f-8890-438137d36ebd + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:47 GMT + etag: + - '"EFA148FACB2ED5DF4BE2A0451A52E9975AE622CB922E0CBB5A79BB9FD79DDE99"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 77aea5e0-b8ef-495f-8890-438137d36ebd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/989f76ec-18d8-4f43-aa51-ad2ea3441bb9 + response: + body: + string: '{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:47.2256849Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 29cb71bf-228d-43ff-8047-5effdc5a0fb3 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:47 GMT + etag: + - '"EFA148FACB2ED5DF4BE2A0451A52E9975AE622CB922E0CBB5A79BB9FD79DDE99"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 29cb71bf-228d-43ff-8047-5effdc5a0fb3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/989f76ec-18d8-4f43-aa51-ad2ea3441bb9 + response: + body: + string: '{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:48.1090714Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - fcc7383b-b9c1-488d-97d6-7bc1a7a447e1 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:48 GMT + etag: + - '"C21A5361FBFD32E5142F8DB1AA2AE5CC12CF59B82D2E9EEC1F24221504C78A81"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fcc7383b-b9c1-488d-97d6-7bc1a7a447e1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/989f76ec-18d8-4f43-aa51-ad2ea3441bb9 + response: + body: + string: '{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - fa79833b-017a-4914-805f-831a0b7e2c87 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:49 GMT + etag: + - '"50D9B85C7AF7544FF09BBCF5CA9FC6475B14C9BCBB63EBBA7D5CDF0C6ED50217"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fa79833b-017a-4914-805f-831a0b7e2c87 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/989f76ec-18d8-4f43-aa51-ad2ea3441bb9 + response: + body: + string: '{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - cded00c1-0241-4a84-bc1e-7f3637b29a5a + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:51 GMT + etag: + - '"50D9B85C7AF7544FF09BBCF5CA9FC6475B14C9BCBB63EBBA7D5CDF0C6ED50217"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cded00c1-0241-4a84-bc1e-7f3637b29a5a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/989f76ec-18d8-4f43-aa51-ad2ea3441bb9 + response: + body: + string: '{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - a1a32b27-ffef-4930-bf3a-0c13f52b6fa8 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:52 GMT + etag: + - '"79AEE8BEC59323DBA930F1DAD2A9C380F4B214A73F71BECA8B331EACB7B2A66E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1a32b27-ffef-4930-bf3a-0c13f52b6fa8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:52 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc7fae921-450b-435b-89c8-2a3a7d7906c0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:52 GMT + etag: + - '"0x8D910D05C01A708"' + last-modified: + - Thu, 06 May 2021 20:48:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:48:53 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc7fae921-450b-435b-89c8-2a3a7d7906c0/730387c5-b97c-4551-84e7-90b890d8d481.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:48:52 GMT + etag: + - '"0x8D910D05C2718A3"' + last-modified: + - Thu, 06 May 2021 20:48:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:53 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetcbddee5f-9ffd-4208-b1e3-eebbc0264ee6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:53 GMT + etag: + - '"0x8D910D05CB68E87"' + last-modified: + - Thu, 06 May 2021 20:48:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc7fae921-450b-435b-89c8-2a3a7d7906c0?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetcbddee5f-9ffd-4208-b1e3-eebbc0264ee6?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 038a953c-0f5d-40b4-8706-8f1ce8fd4e37 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:48:54 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/5e729aa0-e742-4f53-b5de-7d3b1607e029 + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 038a953c-0f5d-40b4-8706-8f1ce8fd4e37 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5e729aa0-e742-4f53-b5de-7d3b1607e029 + response: + body: + string: '{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:54.6183931Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 0b768bd9-2fc3-4ce9-b1f6-7b4dccaae047 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:54 GMT + etag: + - '"36DC680F3FA1AB31F5995F437018617B3F9524A01032B299D8842101C4804F0A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0b768bd9-2fc3-4ce9-b1f6-7b4dccaae047 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5e729aa0-e742-4f53-b5de-7d3b1607e029 + response: + body: + string: '{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:54.6183931Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 6b8a97bb-0acf-485b-ba95-ab8852b9e422 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:54 GMT + etag: + - '"36DC680F3FA1AB31F5995F437018617B3F9524A01032B299D8842101C4804F0A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6b8a97bb-0acf-485b-ba95-ab8852b9e422 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5e729aa0-e742-4f53-b5de-7d3b1607e029 + response: + body: + string: '{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:55.5326554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 76a6f713-609e-4715-8b0e-8313418c19e2 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:55 GMT + etag: + - '"DEDD59B61B3DC5495AE3C4B78D4472F7FC0025CB029E9155FE8E6603B93F034A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 76a6f713-609e-4715-8b0e-8313418c19e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5e729aa0-e742-4f53-b5de-7d3b1607e029 + response: + body: + string: '{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 89b537a0-5731-4dbb-afa4-1ad19eff334e + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:57 GMT + etag: + - '"A953C4D7D3006DE875598CE4590837E331499A0A239864066478B787AAD6C78E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 89b537a0-5731-4dbb-afa4-1ad19eff334e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5e729aa0-e742-4f53-b5de-7d3b1607e029 + response: + body: + string: '{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 281b9ea1-060a-4450-9a90-bda70ee3abc2 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:58 GMT + etag: + - '"A953C4D7D3006DE875598CE4590837E331499A0A239864066478B787AAD6C78E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 281b9ea1-060a-4450-9a90-bda70ee3abc2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5e729aa0-e742-4f53-b5de-7d3b1607e029 + response: + body: + string: '{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - 7429ce08-bf68-45d5-ad20-b1b69f977650 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:48:59 GMT + etag: + - '"4F71EC0C60E8467E8FAA8FE35BBED3FF6C67758BFC4DA9D8A618F9DC5452DB91"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7429ce08-bf68-45d5-ad20-b1b69f977650 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:48:59 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src4a331e2b-ccd0-4e25-ae3b-b98ac801ff06?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:00 GMT + etag: + - '"0x8D910D0605B3983"' + last-modified: + - Thu, 06 May 2021 20:49:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:00 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src4a331e2b-ccd0-4e25-ae3b-b98ac801ff06/1fca894a-a12f-40f8-be6d-a175b8616866.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:00 GMT + etag: + - '"0x8D910D06081A081"' + last-modified: + - Thu, 06 May 2021 20:49:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:00 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetcf2ab4b4-4ad1-4326-9b2c-6c41332aa850?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:01 GMT + etag: + - '"0x8D910D06118CE82"' + last-modified: + - Thu, 06 May 2021 20:49:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4a331e2b-ccd0-4e25-ae3b-b98ac801ff06?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetcf2ab4b4-4ad1-4326-9b2c-6c41332aa850?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - c4af8195-97db-4ff3-927e-d49a1ecc9c0d + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:01 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/f118b6d0-54ae-4148-89eb-ee9cba947c24 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c4af8195-97db-4ff3-927e-d49a1ecc9c0d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f118b6d0-54ae-4148-89eb-ee9cba947c24 + response: + body: + string: '{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:02.0062073Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 8b518f3a-422f-480a-96f7-5d08b49dacef + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:01 GMT + etag: + - '"997B661EFF3D7C1197BA3D4F521AECB64E35A91899D3223D608574C0A8B97B31"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8b518f3a-422f-480a-96f7-5d08b49dacef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f118b6d0-54ae-4148-89eb-ee9cba947c24 + response: + body: + string: '{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:02.0062073Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - df122bf5-f7b8-492e-99f3-c448725a2b88 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:01 GMT + etag: + - '"997B661EFF3D7C1197BA3D4F521AECB64E35A91899D3223D608574C0A8B97B31"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - df122bf5-f7b8-492e-99f3-c448725a2b88 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f118b6d0-54ae-4148-89eb-ee9cba947c24 + response: + body: + string: '{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:02.9383615Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 2d475e17-6efc-4f4e-9ad5-b84d84ba9f7c + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:02 GMT + etag: + - '"50F648253DDB1A957CB6086AF1C34C0AC9F5E75761F019AA8EB219FCDC287AF7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2d475e17-6efc-4f4e-9ad5-b84d84ba9f7c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f118b6d0-54ae-4148-89eb-ee9cba947c24 + response: + body: + string: '{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 9576d78b-d601-40d1-8de8-1021b919c249 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:04 GMT + etag: + - '"DFEAF594357094FB12543D6418B22F20B478632B5BCB57F1559A5074507722E1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9576d78b-d601-40d1-8de8-1021b919c249 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f118b6d0-54ae-4148-89eb-ee9cba947c24 + response: + body: + string: '{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - e29e0263-7a2e-423e-800a-d41e56531341 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:05 GMT + etag: + - '"3E949B5ED415AF992CD0B48E7BFD280A3C2CB34209A1E395CA5806418773A2A7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e29e0263-7a2e-423e-800a-d41e56531341 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:06 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcba33aeea-6a4a-4634-b321-39b1a267a034?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:06 GMT + etag: + - '"0x8D910D06411EBD8"' + last-modified: + - Thu, 06 May 2021 20:49:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:06 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcba33aeea-6a4a-4634-b321-39b1a267a034/537186e5-954c-4efc-882a-fe86d8da6439.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:06 GMT + etag: + - '"0x8D910D06438C5E5"' + last-modified: + - Thu, 06 May 2021 20:49:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:07 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetb19a282b-b191-4ae4-88bd-ae8cfab19daf?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:07 GMT + etag: + - '"0x8D910D064C87D13"' + last-modified: + - Thu, 06 May 2021 20:49:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcba33aeea-6a4a-4634-b321-39b1a267a034?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb19a282b-b191-4ae4-88bd-ae8cfab19daf?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - ba2246db-669b-4e52-9639-1c12404b743b + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:07 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ade8ab17-08cb-4e2a-aa83-a383c442b6d5 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ba2246db-669b-4e52-9639-1c12404b743b + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ade8ab17-08cb-4e2a-aa83-a383c442b6d5 + response: + body: + string: '{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:08.192977Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - d9c3d34c-c6ee-48b2-a69a-da675da6545a + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:07 GMT + etag: + - '"C66198226FEDC1E388F0BC2A78082D7F24ED7BD7FD82B83FF117C8BBF2304A5A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d9c3d34c-c6ee-48b2-a69a-da675da6545a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:08 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src7877ecb3-96a3-4c24-a8ea-8603967bcf11?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:08 GMT + etag: + - '"0x8D910D06595B453"' + last-modified: + - Thu, 06 May 2021 20:49:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src7877ecb3-96a3-4c24-a8ea-8603967bcf11/e99e297f-e89d-42df-b1cb-543767c376ae.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:08 GMT + etag: + - '"0x8D910D065BAF154"' + last-modified: + - Thu, 06 May 2021 20:49:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target75940f87-41c9-43bd-98cd-3ef39d7fb085?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:09 GMT + etag: + - '"0x8D910D06655B252"' + last-modified: + - Thu, 06 May 2021 20:49:10 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7877ecb3-96a3-4c24-a8ea-8603967bcf11?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target75940f87-41c9-43bd-98cd-3ef39d7fb085?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 3d08d8e4-7e82-416a-858a-b57f9fbe5395 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:10 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ea9a93cb-fb90-4935-8c52-3943a680dc7d + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3d08d8e4-7e82-416a-858a-b57f9fbe5395 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ea9a93cb-fb90-4935-8c52-3943a680dc7d + response: + body: + string: '{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:10.7694032Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 739967d4-5c1f-4b5d-b120-e43ca48f5edc + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:10 GMT + etag: + - '"526C02B088DF84BED9DF50FC54C881DD3846320F3FAB8F12522558F8B9042958"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 739967d4-5c1f-4b5d-b120-e43ca48f5edc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:11 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3130ff30-b919-47b0-b20e-63ee77be2cc8?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:11 GMT + etag: + - '"0x8D910D0671CA8E8"' + last-modified: + - Thu, 06 May 2021 20:49:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:12 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3130ff30-b919-47b0-b20e-63ee77be2cc8/84f69b53-f750-4460-acfb-07259bf5a922.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:11 GMT + etag: + - '"0x8D910D067429BC1"' + last-modified: + - Thu, 06 May 2021 20:49:12 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:12 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target9c234fcd-2f28-482c-b3b1-9724f1617dc2?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:12 GMT + etag: + - '"0x8D910D067D4217F"' + last-modified: + - Thu, 06 May 2021 20:49:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3130ff30-b919-47b0-b20e-63ee77be2cc8?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9c234fcd-2f28-482c-b3b1-9724f1617dc2?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 59b542c9-dc41-48d2-b2b5-5e85e2e181c2 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:12 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/95e9d75a-fc4c-428f-b673-709a556d78ec + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 59b542c9-dc41-48d2-b2b5-5e85e2e181c2 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/95e9d75a-fc4c-428f-b673-709a556d78ec + response: + body: + string: '{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:13.2937051Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 01cfa1dc-8730-440f-ae7f-83ab2e678cc0 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:12 GMT + etag: + - '"62B247157B80EDF1CB1142C216C0E264986F60D52FF7FF17BFCA4C96CF3BF286"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 01cfa1dc-8730-440f-ae7f-83ab2e678cc0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:13 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc1f99976-b300-4afc-9770-747c1ef5eaee?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:13 GMT + etag: + - '"0x8D910D0689B517C"' + last-modified: + - Thu, 06 May 2021 20:49:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:14 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc1f99976-b300-4afc-9770-747c1ef5eaee/3029829d-4e97-45d3-8cd1-f4c7f507d1bf.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:13 GMT + etag: + - '"0x8D910D068C20763"' + last-modified: + - Thu, 06 May 2021 20:49:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:14 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target6632fdf7-6bdb-43ff-bf9b-060598341f92?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:14 GMT + etag: + - '"0x8D910D06958B51A"' + last-modified: + - Thu, 06 May 2021 20:49:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc1f99976-b300-4afc-9770-747c1ef5eaee?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6632fdf7-6bdb-43ff-bf9b-060598341f92?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - b1de422e-055b-4737-b9c4-765432bf1576 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:15 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d5dc1957-827e-4b26-a495-830028fc8e66 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b1de422e-055b-4737-b9c4-765432bf1576 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d5dc1957-827e-4b26-a495-830028fc8e66 + response: + body: + string: '{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:15.8314542Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 0bebe1b1-0d1f-46b3-ac40-f5fd4f103928 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:15 GMT + etag: + - '"EC95B0D296A40DB71B3BFBE830DD770633214055320C70D1016D8D3D1EE36B98"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0bebe1b1-0d1f-46b3-ac40-f5fd4f103928 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src34721cf8-b954-4f7b-a236-2bbd184323bb?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:16 GMT + etag: + - '"0x8D910D06A1E7AE2"' + last-modified: + - Thu, 06 May 2021 20:49:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src34721cf8-b954-4f7b-a236-2bbd184323bb/b6a93356-2ce1-4f1f-9a9e-d12e7b877168.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:16 GMT + etag: + - '"0x8D910D06A4607DB"' + last-modified: + - Thu, 06 May 2021 20:49:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target4c0a2251-fa2c-4ed3-8f2c-e7747bcb555f?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:17 GMT + etag: + - '"0x8D910D06AD8EF43"' + last-modified: + - Thu, 06 May 2021 20:49:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src34721cf8-b954-4f7b-a236-2bbd184323bb?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4c0a2251-fa2c-4ed3-8f2c-e7747bcb555f?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 759b0b4d-15eb-41c1-84d3-0dfcefbc7030 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:18 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 759b0b4d-15eb-41c1-84d3-0dfcefbc7030 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2 + response: + body: + string: '{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.3740927Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - ad659740-b8b2-404f-a8da-0681c4a39e7e + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:18 GMT + etag: + - '"EDCA76A4A1EB7EDCEAA3EF437903A430D06AF41105156F310D12717DAD644C48"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ad659740-b8b2-404f-a8da-0681c4a39e7e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ade8ab17-08cb-4e2a-aa83-a383c442b6d5 + response: + body: + string: '{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - 913a1890-c0cc-4500-87ae-e673d98b4ace + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:18 GMT + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 913a1890-c0cc-4500-87ae-e673d98b4ace + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ea9a93cb-fb90-4935-8c52-3943a680dc7d + response: + body: + string: '{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - 98a570f8-f754-40cb-b152-ce49705a2038 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:18 GMT + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 98a570f8-f754-40cb-b152-ce49705a2038 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/95e9d75a-fc4c-428f-b673-709a556d78ec + response: + body: + string: '{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: + - d5a2d358-26f5-4888-8782-9cb7e7f37d7c + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:18 GMT + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d5a2d358-26f5-4888-8782-9cb7e7f37d7c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d5dc1957-827e-4b26-a495-830028fc8e66 + response: + body: + string: '{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - cca23085-debe-45b5-b08d-7b1b49c85a36 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:19 GMT + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cca23085-debe-45b5-b08d-7b1b49c85a36 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2 + response: + body: + string: '{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.4386523Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - e2ad0fd4-b913-4913-8278-f86fbec25158 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:19 GMT + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e2ad0fd4-b913-4913-8278-f86fbec25158 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&statuses=Cancelled + response: + body: + string: '{"value":[{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=15&$maxpagesize=50&statuses=Cancelled"}' + headers: + apim-request-id: + - cc62c581-6e54-4471-a557-235d486cc2d7 + cache-control: + - public,max-age=1 + content-length: + - '14783' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:29 GMT + etag: + - '"0379CDEE80236F82147F7C3474BA0971A939D74A3CCABC0F45CE21AF694453B3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cc62c581-6e54-4471-a557-235d486cc2d7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=15&$maxpagesize=50&statuses=Cancelled + response: + body: + string: '{"value":[{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: + - 69196ba1-024a-4146-8f2e-0b39bca81bb1 + cache-control: + - public,max-age=1 + content-length: + - '4389' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:29 GMT + etag: + - '"80AAC332659647501109D548B429BBAB8E525D4D74B4FD2E1B45881E2C3D31B1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 69196ba1-024a-4146-8f2e-0b39bca81bb1 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_order_by_creation_time_asc.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_order_by_creation_time_asc.yaml new file mode 100644 index 000000000000..331be00bf6d5 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_order_by_creation_time_asc.yaml @@ -0,0 +1,3223 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:30 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src574b029f-7023-4e24-ab6c-ebce74a7fb36?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:30 GMT + etag: + - '"0x8D910D0729C689D"' + last-modified: + - Thu, 06 May 2021 20:49:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src574b029f-7023-4e24-ab6c-ebce74a7fb36/7f102959-4e07-474b-afa3-2898488f3760.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:30 GMT + etag: + - '"0x8D910D072BF6356"' + last-modified: + - Thu, 06 May 2021 20:49:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src574b029f-7023-4e24-ab6c-ebce74a7fb36/db83d1fa-88c5-441e-be86-a6123dbd9eeb.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:30 GMT + etag: + - '"0x8D910D072E2D045"' + last-modified: + - Thu, 06 May 2021 20:49:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target39ef8de9-0a05-45f3-a862-39c7c68368fe?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:32 GMT + etag: + - '"0x8D910D073701F7C"' + last-modified: + - Thu, 06 May 2021 20:49:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src574b029f-7023-4e24-ab6c-ebce74a7fb36?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target39ef8de9-0a05-45f3-a862-39c7c68368fe?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - c4c9c8e9-d0b0-48dc-8806-b0c9b20608ab + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:33 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2349f4a7-f128-4265-8d3f-afc3930493d0 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c4c9c8e9-d0b0-48dc-8806-b0c9b20608ab + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2349f4a7-f128-4265-8d3f-afc3930493d0 + response: + body: + string: '{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:33.3469965Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 26b0edee-7e87-4d40-b6ca-8c224ba5b7ff + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:33 GMT + etag: + - '"5301E8D9FF68FAE4680E963FBE0B10125DFC7A4A161013B091949C8DDB52F78F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 26b0edee-7e87-4d40-b6ca-8c224ba5b7ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:33 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3d75ffc9-4d09-4589-b743-9996b0696c48?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:33 GMT + etag: + - '"0x8D910D07487E0BF"' + last-modified: + - Thu, 06 May 2021 20:49:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:34 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3d75ffc9-4d09-4589-b743-9996b0696c48/7f6a2693-684e-4d3c-84b5-675a98460193.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:33 GMT + etag: + - '"0x8D910D074AB3940"' + last-modified: + - Thu, 06 May 2021 20:49:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:34 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3d75ffc9-4d09-4589-b743-9996b0696c48/354df87d-f57f-4179-8452-3b6430069416.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:34 GMT + etag: + - '"0x8D910D074D18CE4"' + last-modified: + - Thu, 06 May 2021 20:49:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:35 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target0e68035b-ab6d-48a3-b1fa-d626b91a4896?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:34 GMT + etag: + - '"0x8D910D075618D80"' + last-modified: + - Thu, 06 May 2021 20:49:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3d75ffc9-4d09-4589-b743-9996b0696c48?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0e68035b-ab6d-48a3-b1fa-d626b91a4896?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - b101fb2b-50f2-40ae-b006-7342dddb4a14 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:35 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/56d8a3b2-3c42-4416-a410-653a32710dec + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b101fb2b-50f2-40ae-b006-7342dddb4a14 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/56d8a3b2-3c42-4416-a410-653a32710dec + response: + body: + string: '{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.0191799Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 101495ae-74e6-40c2-9dbb-a0baa3a2d48c + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:36 GMT + etag: + - '"97FCDD1E16C604C4527A519B284A53933F67D5F1F1E8BF7FF5D4FF077685DDB9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 101495ae-74e6-40c2-9dbb-a0baa3a2d48c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:36 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srccf9a2a7d-8243-49d3-a91e-27fbf10de930?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:36 GMT + etag: + - '"0x8D910D07625B529"' + last-modified: + - Thu, 06 May 2021 20:49:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:37 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srccf9a2a7d-8243-49d3-a91e-27fbf10de930/b74aca22-bac2-4d4f-918b-9ce61b27bc2c.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:37 GMT + etag: + - '"0x8D910D0764A1968"' + last-modified: + - Thu, 06 May 2021 20:49:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:37 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srccf9a2a7d-8243-49d3-a91e-27fbf10de930/afa242a1-6a5c-40ff-b4c3-b10eef327796.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:37 GMT + etag: + - '"0x8D910D076710964"' + last-modified: + - Thu, 06 May 2021 20:49:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:37 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetb2bf96d3-3162-4949-9321-91588b16a627?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:38 GMT + etag: + - '"0x8D910D07704EA51"' + last-modified: + - Thu, 06 May 2021 20:49:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccf9a2a7d-8243-49d3-a91e-27fbf10de930?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb2bf96d3-3162-4949-9321-91588b16a627?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 462d1f56-c73c-4224-b795-12cf960549cc + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:38 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/efb0b1b5-17d0-4e69-9026-88779f0cdc3c + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 462d1f56-c73c-4224-b795-12cf960549cc + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/efb0b1b5-17d0-4e69-9026-88779f0cdc3c + response: + body: + string: '{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.7597331Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f9dce3b8-5602-4f7f-8113-7ceddf54f97c + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:38 GMT + etag: + - '"83D31121D882BF6674805D467F945AE983661556324E400432EF2287AB12713F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f9dce3b8-5602-4f7f-8113-7ceddf54f97c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2351&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 252f11ca-9095-44f1-8869-7ead291fca53 + cache-control: + - public,max-age=1 + content-length: + - '20415' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:38 GMT + etag: + - '"5CE7C501DF34B92D2AF091DF72702DA9D8612AB2472270B65D2607C3AC9D4854"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 252f11ca-9095-44f1-8869-7ead291fca53 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2351&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2301&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 2e9e29cc-e9b6-4e9d-b0a0-191b035e78c8 + cache-control: + - public,max-age=1 + content-length: + - '15082' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:39 GMT + etag: + - '"EEA032FCA579B0AFB5FA3E4128D1E5127C7D3C5CAFC110A709155192F7713DB1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2e9e29cc-e9b6-4e9d-b0a0-191b035e78c8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2301&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2251&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - d1638c6b-920c-41da-ac3f-1b5f6d483663 + cache-control: + - public,max-age=1 + content-length: + - '15105' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:39 GMT + etag: + - '"78FCA0B720AEF2CC778DDC1876D08F4951F5D837C143B6EE5656447782E5BF50"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d1638c6b-920c-41da-ac3f-1b5f6d483663 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2251&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2201&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - bafa89e7-3d4d-4b5e-aa3b-118ec87dc7a4 + cache-control: + - public,max-age=1 + content-length: + - '14830' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:40 GMT + etag: + - '"94226CE49C5CC87CB4E7A4DA7E5700E51F1D31171D31E9409CF559DB16E0F57C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bafa89e7-3d4d-4b5e-aa3b-118ec87dc7a4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2201&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2151&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 6db9ed25-eee8-47a2-8fdf-bdfa1eda6e06 + cache-control: + - public,max-age=1 + content-length: + - '14830' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:40 GMT + etag: + - '"7E1C9E1059ED2B3D14FE5B9921B6F297A678C4C6CD88C5B6E5AC43BF5E9B2CCD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6db9ed25-eee8-47a2-8fdf-bdfa1eda6e06 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2151&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2101&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 0f9ba1f5-2a45-4ac8-b5c4-c0198bf4756d + cache-control: + - public,max-age=1 + content-length: + - '14830' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:40 GMT + etag: + - '"7B507E6902A45FC9EFDC88FA680996729F9682A941EA1A8936535383558F1C7B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0f9ba1f5-2a45-4ac8-b5c4-c0198bf4756d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2101&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2051&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - bdd89565-5ed2-45ac-87a9-208bc4c999c2 + cache-control: + - public,max-age=1 + content-length: + - '14823' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:40 GMT + etag: + - '"0DA4FD62263C0865B957A71F7A8B5405DE0B78DDBE61DB681A3216EF660E7569"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bdd89565-5ed2-45ac-87a9-208bc4c999c2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2051&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2001&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 24ea251f-d2c4-4b58-9b5c-dc5abdd4bd7d + cache-control: + - public,max-age=1 + content-length: + - '14824' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:41 GMT + etag: + - '"AD540DB110CF4BB2FAE499C4AA5A535E6550A2DE6BB793559F237EB89D8C78E4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 24ea251f-d2c4-4b58-9b5c-dc5abdd4bd7d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2001&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1951&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 120dad61-1753-4ba5-8583-ac212c996365 + cache-control: + - public,max-age=1 + content-length: + - '14837' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:41 GMT + etag: + - '"3707B7E5D29D62919E0E275727385570308142BA6E59904992911D1FD855CCF6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 120dad61-1753-4ba5-8583-ac212c996365 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1951&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1901&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 857a1dbb-8c46-473c-800c-54b996618a81 + cache-control: + - public,max-age=1 + content-length: + - '14834' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:41 GMT + etag: + - '"98B208F85945A554DAAD6B9F92D1F75E6CC59FEC9569A6CD266ECB9FD7593DB5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 857a1dbb-8c46-473c-800c-54b996618a81 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1901&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1851&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 3779a665-6816-4374-ae27-67e7ce7db6ff + cache-control: + - public,max-age=1 + content-length: + - '14834' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:42 GMT + etag: + - '"B86C33E1E29B620363CD147B6633719141AEDE72834D332C0066F7D236D255EC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3779a665-6816-4374-ae27-67e7ce7db6ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1851&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1801&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - a2a2360c-c33a-4c09-b915-bc1cf2f81de5 + cache-control: + - public,max-age=1 + content-length: + - '14830' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:42 GMT + etag: + - '"226E15A0CDB3304397F6AC256CED96F0A61273D49277CD9F6F35A06C49868A37"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a2a2360c-c33a-4c09-b915-bc1cf2f81de5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1801&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1751&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 30553703-13a6-44c0-8837-a9a5c450f7d1 + cache-control: + - public,max-age=1 + content-length: + - '14828' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:42 GMT + etag: + - '"133047C8FF5629CC0364EF32D65AF0F965FA181B03BEC33B2DFF1B1FFC927746"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 30553703-13a6-44c0-8837-a9a5c450f7d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1751&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1701&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - e29b897e-d27c-4a65-a4cd-954c2e6ff4b5 + cache-control: + - public,max-age=1 + content-length: + - '14824' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:42 GMT + etag: + - '"226A14EE1ABCECDD04E3315628E688BE94C13C2F463FFC54D24AD53DDFE5FDB6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e29b897e-d27c-4a65-a4cd-954c2e6ff4b5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1701&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1651&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 11ba0d28-1528-4d7a-8874-c8496f2f14b4 + cache-control: + - public,max-age=1 + content-length: + - '14831' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:43 GMT + etag: + - '"391F38AE742928A3BDBA61A42489348D166A699A5AD039AFEA1A3F0A82460ABE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 11ba0d28-1528-4d7a-8874-c8496f2f14b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1651&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1601&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 7df711ef-f0ce-4db1-8e68-dd7ca8e4ce1c + cache-control: + - public,max-age=1 + content-length: + - '14832' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:43 GMT + etag: + - '"41D2D16F5F7A436C3B6935C3D9F58D397B6CC88326296A14E3F12EC8A9F21400"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7df711ef-f0ce-4db1-8e68-dd7ca8e4ce1c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1601&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1551&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 3f3ac952-4c72-4b5c-a599-df582d6ecaaa + cache-control: + - public,max-age=1 + content-length: + - '14815' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:43 GMT + etag: + - '"1CF308AA95723CE659D33F34BA36E583836F62E5AC362D9BE499031F79AB9D7D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3f3ac952-4c72-4b5c-a599-df582d6ecaaa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1551&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1501&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 8229d6e7-274c-4308-a5be-45451d92cf55 + cache-control: + - public,max-age=1 + content-length: + - '14840' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:44 GMT + etag: + - '"7A84401DAE9DBCC9B29C9AC49ADA58656726B1A64C20ACF370C22A5B98E1012F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8229d6e7-274c-4308-a5be-45451d92cf55 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1501&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1451&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 3843c401-85f7-47d2-93cd-5a99130a0ca6 + cache-control: + - public,max-age=1 + content-length: + - '14813' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:44 GMT + etag: + - '"EAA9DCF9676B114E57654E143432EA3BF92E4CB236878575D01DE5CBDF58B425"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3843c401-85f7-47d2-93cd-5a99130a0ca6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1451&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1401&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - dad52b7c-27bc-43f4-b298-b099f08008c3 + cache-control: + - public,max-age=1 + content-length: + - '14853' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:44 GMT + etag: + - '"3D2048B8BA47CE840A6FB37876C23405872D0A05097550DF811F6B94CF4625AA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dad52b7c-27bc-43f4-b298-b099f08008c3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1401&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1351&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - a77fc576-12f8-49d1-a5ec-45347f540823 + cache-control: + - public,max-age=1 + content-length: + - '14819' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:44 GMT + etag: + - '"E9CE2A459DC56E69DFD8798622DEDE6FBEFC8A5B18B5AE69C79E8B529E98C333"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a77fc576-12f8-49d1-a5ec-45347f540823 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1351&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1301&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - b20be56d-2125-4c94-9bb4-8ee01a50aebb + cache-control: + - public,max-age=1 + content-length: + - '14836' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:45 GMT + etag: + - '"C6315C6B6F111C9EEBE64D15AC3AC97BBFF80B92C914C30ADE2A47834BD71F33"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b20be56d-2125-4c94-9bb4-8ee01a50aebb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1301&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1251&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 2c5ea646-b004-499f-a7d4-db0fa2284fc4 + cache-control: + - public,max-age=1 + content-length: + - '14825' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:45 GMT + etag: + - '"FAFC237FCFC2026401F6D2151618187FA539A1C64D59BD794AA3D25BD642C789"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2c5ea646-b004-499f-a7d4-db0fa2284fc4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1251&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1201&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - b1c7d5c9-aaad-47b9-9101-3584c8751f5f + cache-control: + - public,max-age=1 + content-length: + - '14858' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:45 GMT + etag: + - '"36DEC90CB0C0BB0BC1BA2CA03E1EACBC81B263807FB4BC08CE5A8B86321526F8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b1c7d5c9-aaad-47b9-9101-3584c8751f5f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1201&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1151&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 7162d658-4f12-4d56-bcef-e42e3af67a48 + cache-control: + - public,max-age=1 + content-length: + - '14932' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:45 GMT + etag: + - '"F8410C576260663333F2B7E0AFC24016D8EC74F108DC3C4220486233A53A2D99"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7162d658-4f12-4d56-bcef-e42e3af67a48 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1151&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1101&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - a4016c7d-1fe7-47d6-9dd3-bc34a3fe0061 + cache-control: + - public,max-age=1 + content-length: + - '14862' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:46 GMT + etag: + - '"383991164C332BF3EFB7E21EE53714DDC03C2004C076FEF5E850FA5CD19CB00C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a4016c7d-1fe7-47d6-9dd3-bc34a3fe0061 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1101&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1051&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 9f889661-54f8-420b-b305-07a6cc0aece3 + cache-control: + - public,max-age=1 + content-length: + - '15380' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:46 GMT + etag: + - '"59003CA322710BA6170EFC2379958E3B7BA661796397C34C7E2544CB4BED9E02"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9f889661-54f8-420b-b305-07a6cc0aece3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1051&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1001&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 1f220f01-c839-40b3-9061-b25c7ec65f3f + cache-control: + - public,max-age=1 + content-length: + - '15093' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:46 GMT + etag: + - '"F20FAA9D34A2CD5CD26F8417023B9B5F14133C53AD0E657CFC752E402DBBAF21"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1f220f01-c839-40b3-9061-b25c7ec65f3f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1001&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=951&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - d67c7323-36c7-412e-b707-50aa5acbb1c3 + cache-control: + - public,max-age=1 + content-length: + - '15086' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:47 GMT + etag: + - '"733DF94512A2E9389B6E5CB9A4946DD3CD49D33D504273C28073E4F3D75AD4BC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d67c7323-36c7-412e-b707-50aa5acbb1c3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=951&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=901&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 27c3745b-fb05-49d5-be1f-ae1bdb8fdaa9 + cache-control: + - public,max-age=1 + content-length: + - '14818' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:47 GMT + etag: + - '"FF4A8C1A85567A700E93379324CCC62C53E2ACDFF134BA55392D2CDCFE5D2E69"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 27c3745b-fb05-49d5-be1f-ae1bdb8fdaa9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=901&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=851&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 36e4531d-656e-47de-979d-295356cef16f + cache-control: + - public,max-age=1 + content-length: + - '14847' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:47 GMT + etag: + - '"2E85B9AC61C6DDA7A8333D69161311B8F5C9012D6DA66E7DA6A0BDEC6D7A8A79"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 36e4531d-656e-47de-979d-295356cef16f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=851&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=801&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 33a4ef37-d034-470c-b6d4-88f4d487ea18 + cache-control: + - public,max-age=1 + content-length: + - '14827' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:47 GMT + etag: + - '"03A58841C8FDCE2022B79C1292AF125D67C1E1C49832E83BB766A7E470F699ED"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 33a4ef37-d034-470c-b6d4-88f4d487ea18 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=801&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=751&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - d85f4b8f-6f49-4203-a348-fdfb819995a6 + cache-control: + - public,max-age=1 + content-length: + - '14835' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:48 GMT + etag: + - '"38208F1009912CA87AF36EA9E1C75A463A89D960B80AE65FB948C77208AACBE6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d85f4b8f-6f49-4203-a348-fdfb819995a6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=751&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=701&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 659269ce-873f-4f50-91d0-46044cc264a2 + cache-control: + - public,max-age=1 + content-length: + - '15085' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:48 GMT + etag: + - '"393AFDC597C84F565E514B0BB8109434AB42AB173AD099700F55EA8A127B532F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 659269ce-873f-4f50-91d0-46044cc264a2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=701&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=651&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 7751b409-73d9-4708-88fd-42180633836a + cache-control: + - public,max-age=1 + content-length: + - '15099' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:48 GMT + etag: + - '"09F72959C2C41F3281C7C1A3E85CDC3E5B8FC3187D245050BFAFDEAF4E94A2F7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7751b409-73d9-4708-88fd-42180633836a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=651&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=601&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 2512d9a6-61de-4398-8c25-dc561d7339dc + cache-control: + - public,max-age=1 + content-length: + - '14836' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:49 GMT + etag: + - '"46834DB98481F7544E294C2CCF49487F59336D8AE45B434B9E7E1DFFE0AA6D6C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2512d9a6-61de-4398-8c25-dc561d7339dc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=601&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=551&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - dc3c15ca-b35b-4843-8773-8c4321caa184 + cache-control: + - public,max-age=1 + content-length: + - '14833' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:49 GMT + etag: + - '"64F714B339F5679BA5522311D4D8816D6E1A4E3DBF58658B61E4ABC8EA8CF732"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dc3c15ca-b35b-4843-8773-8c4321caa184 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=551&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=501&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - cf010e79-2986-4c8a-bc2d-ad570717ae9d + cache-control: + - public,max-age=1 + content-length: + - '14837' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:49 GMT + etag: + - '"D21C4FFBF682A85BFE21F5A943A6276E84BB6688BF65E66014C723389FF728D8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cf010e79-2986-4c8a-bc2d-ad570717ae9d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=501&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=451&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - abef9432-2dcf-4ddf-bf16-503727983fe8 + cache-control: + - public,max-age=1 + content-length: + - '14828' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:49 GMT + etag: + - '"AC6E1F49BFEAED827D8F16B64BB6D8A1B4E6BCF6EE851FCE37ECEC72437EFA66"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - abef9432-2dcf-4ddf-bf16-503727983fe8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=451&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=401&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 3f9ea08a-d91f-4401-aa2d-8c23e507d2ea + cache-control: + - public,max-age=1 + content-length: + - '14827' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:50 GMT + etag: + - '"A5449096256788FB5822A3EFA58C674C9B7F87349DBA53B033DE9E2346F51804"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3f9ea08a-d91f-4401-aa2d-8c23e507d2ea + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=401&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=351&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - f0f0b24a-2538-4a49-b421-cb40454400fb + cache-control: + - public,max-age=1 + content-length: + - '14831' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:50 GMT + etag: + - '"91CA10609FA6D3E00EA8A84B58E3601F06E207DBAF134967CD12C2D3B7E5A882"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f0f0b24a-2538-4a49-b421-cb40454400fb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=351&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=301&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 5c40053e-cec2-47ad-a10c-47393e65ef36 + cache-control: + - public,max-age=1 + content-length: + - '14856' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:50 GMT + etag: + - '"BBC4C915345DCB3FF14B9524328CCFE8E9F795A38142FEF90C2C40E16ABDE03C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5c40053e-cec2-47ad-a10c-47393e65ef36 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=301&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=251&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 8a313ee5-ff88-450f-8fab-194df244b024 + cache-control: + - public,max-age=1 + content-length: + - '14838' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:51 GMT + etag: + - '"EA27B5276FCD81E107F54E901CB624948CDFE29D0EAB1A7BBB3C904576C9F974"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8a313ee5-ff88-450f-8fab-194df244b024 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=251&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=201&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - cc15c01d-6c30-4beb-8bb7-5ba982e61ad2 + cache-control: + - public,max-age=1 + content-length: + - '15371' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:51 GMT + etag: + - '"FCE631A87F54585029AF0019B75E52FB99D91A403E78FA21A256240C327B592B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cc15c01d-6c30-4beb-8bb7-5ba982e61ad2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=201&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=151&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 22b4e727-9191-405b-a4b4-e4a93aee0608 + cache-control: + - public,max-age=1 + content-length: + - '14862' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:51 GMT + etag: + - '"4777E993CC6A1A50AA337A9D18CEEE5FD6AA26E42DB5808EFFE4CD622FC17A9E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 22b4e727-9191-405b-a4b4-e4a93aee0608 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=151&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=101&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - a9fdd535-5d32-44cb-8cb7-6b907b0b032c + cache-control: + - public,max-age=1 + content-length: + - '14841' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:51 GMT + etag: + - '"A7F216EED3B359952ADFE961CF2053170ECE04A026E342E9D098F94AE2632E9A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a9fdd535-5d32-44cb-8cb7-6b907b0b032c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=101&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=51&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - 12df2fc6-a497-4325-8359-d0a19c6aec41 + cache-control: + - public,max-age=1 + content-length: + - '15365' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:52 GMT + etag: + - '"F803ED141287B98EC8C5467F099BBE07261DFE91B5BB173E58A544673FC2DC6F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 12df2fc6-a497-4325-8359-d0a19c6aec41 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=51&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=1&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: + - dc3d9c81-5a85-4f75-b618-0591845a4444 + cache-control: + - public,max-age=1 + content-length: + - '14858' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:52 GMT + etag: + - '"890F4D3D18E0A5DB5C96D0BDAC4A81CA5F71DF6ED56357B63B62FA432A63373C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dc3d9c81-5a85-4f75-b618-0591845a4444 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=1&$maxpagesize=50&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}]}' + headers: + apim-request-id: + - da8624c8-4126-4211-9264-4b6347879b4e + cache-control: + - public,max-age=1 + content-length: + - '303' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:52 GMT + etag: + - '"67A27328F0036ACA191797A9AA5DDD4058C294EFFD77F48DBD7F90CE02022353"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - da8624c8-4126-4211-9264-4b6347879b4e + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_order_by_creation_time_desc.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_order_by_creation_time_desc.yaml new file mode 100644 index 000000000000..00d7a0856838 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_order_by_creation_time_desc.yaml @@ -0,0 +1,3223 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:53 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3c618df0-1da8-446b-b5ce-5bb99493f54f?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:53 GMT + etag: + - '"0x8D910D0803A9204"' + last-modified: + - Thu, 06 May 2021 20:49:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:54 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3c618df0-1da8-446b-b5ce-5bb99493f54f/47aca22d-15cf-4c5e-a13b-b90f21d56c55.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:53 GMT + etag: + - '"0x8D910D0805E8406"' + last-modified: + - Thu, 06 May 2021 20:49:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:54 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3c618df0-1da8-446b-b5ce-5bb99493f54f/ddc88c61-4b98-4025-88b1-c98ad51f7413.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:53 GMT + etag: + - '"0x8D910D08081C9ED"' + last-modified: + - Thu, 06 May 2021 20:49:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:54 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target114a645d-4d1a-4ee5-b68d-d50bb9d5cd02?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:55 GMT + etag: + - '"0x8D910D08119F413"' + last-modified: + - Thu, 06 May 2021 20:49:55 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3c618df0-1da8-446b-b5ce-5bb99493f54f?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target114a645d-4d1a-4ee5-b68d-d50bb9d5cd02?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 1c8c2e35-7ebf-4201-a1c0-704b3ee4e63b + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:55 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1c8c2e35-7ebf-4201-a1c0-704b3ee4e63b + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c + response: + body: + string: '{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:49:56.0765121Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 72caf0f8-d244-41a8-b401-9633c7506ef3 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:55 GMT + etag: + - '"71B1355425FD4D17216D1CA95A0BA259F96881E46D1734760243B6D32CE6DB4C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 72caf0f8-d244-41a8-b401-9633c7506ef3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:56 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src87e18b55-1426-45b8-bc23-ec84a526053e?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:56 GMT + etag: + - '"0x8D910D0820FF305"' + last-modified: + - Thu, 06 May 2021 20:49:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src87e18b55-1426-45b8-bc23-ec84a526053e/8be608b6-a5f6-47e9-bc1a-5e9caddc6201.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:56 GMT + etag: + - '"0x8D910D08234D1FE"' + last-modified: + - Thu, 06 May 2021 20:49:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src87e18b55-1426-45b8-bc23-ec84a526053e/146e4a2b-c449-4279-ba97-02739542608d.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:57 GMT + etag: + - '"0x8D910D08258B43B"' + last-modified: + - Thu, 06 May 2021 20:49:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target8a8edd1a-ac19-43d8-b4d3-150d53a63798?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:57 GMT + etag: + - '"0x8D910D082E748ED"' + last-modified: + - Thu, 06 May 2021 20:49:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src87e18b55-1426-45b8-bc23-ec84a526053e?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8a8edd1a-ac19-43d8-b4d3-150d53a63798?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 4c9f8fbe-981b-4973-9ed6-e342ea337f8d + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:58 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ee10ec1e-7738-44ba-9961-ede61f0ae1b1 + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4c9f8fbe-981b-4973-9ed6-e342ea337f8d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ee10ec1e-7738-44ba-9961-ede61f0ae1b1 + response: + body: + string: '{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:49:58.6984749Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f09237b6-4b7a-47e9-91ec-dee233b96301 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:49:58 GMT + etag: + - '"690BEA77A3C4CA441261B26EF49D24B7CFF4ED1C4A3615D0CE13068DA0458C32"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f09237b6-4b7a-47e9-91ec-dee233b96301 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:49:58 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src12a2bcd1-9632-445f-8ccf-b8238a857713?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:49:58 GMT + etag: + - '"0x8D910D083A0B141"' + last-modified: + - Thu, 06 May 2021 20:49:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:49:59 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src12a2bcd1-9632-445f-8ccf-b8238a857713/48a698b8-e3b2-4ec4-9133-9857aba0e0ec.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:59 GMT + etag: + - '"0x8D910D083C81792"' + last-modified: + - Thu, 06 May 2021 20:49:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:00 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src12a2bcd1-9632-445f-8ccf-b8238a857713/81d9408d-dbdd-4e39-b927-7d0947570043.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:49:59 GMT + etag: + - '"0x8D910D083EC6F0C"' + last-modified: + - Thu, 06 May 2021 20:50:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:00 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetbe8ec220-e3ae-4040-a465-464777088821?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:00 GMT + etag: + - '"0x8D910D0847EF0EE"' + last-modified: + - Thu, 06 May 2021 20:50:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src12a2bcd1-9632-445f-8ccf-b8238a857713?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetbe8ec220-e3ae-4040-a465-464777088821?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 9d56ea00-855c-4dfe-9e34-d3eb0d171c6d + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:01 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9f23b700-d383-411b-87f8-0927b5b8622c + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9d56ea00-855c-4dfe-9e34-d3eb0d171c6d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9f23b700-d383-411b-87f8-0927b5b8622c + response: + body: + string: '{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:01.385186Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - f0412737-c1b8-4471-8734-e0ea19199a68 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:01 GMT + etag: + - '"722F584C446286E1C008BD8DA1CCA08C5538A31D13C826EBD14C5438D5112FE2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f0412737-c1b8-4471-8734-e0ea19199a68 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:01.385186Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:00.0987682Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:49:57.590961Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2354&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - e0f4e058-4ff9-46d5-b5d8-6af534d7f302 + cache-control: + - public,max-age=1 + content-length: + - '14851' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:01 GMT + etag: + - '"FCB97FBA60BABE3430B5D27F51ACF6DDD2E39B9C85620BA6F708F4CA15D26542"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e0f4e058-4ff9-46d5-b5d8-6af534d7f302 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2354&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2304&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 045c6b7c-c421-4ba1-ba52-3979cbb656a4 + cache-control: + - public,max-age=1 + content-length: + - '15373' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:01 GMT + etag: + - '"C8C429EB92D2B72546BE846FED4DAB37B6451D19CABF9DFF75A9CF6231152EA9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 045c6b7c-c421-4ba1-ba52-3979cbb656a4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2304&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2254&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 5675b045-208a-4e12-8d76-545047bf2532 + cache-control: + - public,max-age=1 + content-length: + - '14842' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:01 GMT + etag: + - '"9ABEBD69060D61D45AF191CD0D559EEF9BF45D703DAB14D64E80467E93823654"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5675b045-208a-4e12-8d76-545047bf2532 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2254&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2204&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 17292409-2922-4449-be0f-1bde94414a15 + cache-control: + - public,max-age=1 + content-length: + - '14864' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:02 GMT + etag: + - '"B78B38F6B193F527BBE34979AC648BA75922C10436D25EFFE91940E382C4BEB2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 17292409-2922-4449-be0f-1bde94414a15 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2204&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2154&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - f7ade630-7cd6-4e94-be5d-831bb0aa8c68 + cache-control: + - public,max-age=1 + content-length: + - '15372' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:02 GMT + etag: + - '"006791A2888F7CF22DD522AB0CC779CAEDEFD6685F5B04C22575F54B011CB7ED"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f7ade630-7cd6-4e94-be5d-831bb0aa8c68 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2154&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2104&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 55900ec4-5511-450b-ac67-1490a21363fc + cache-control: + - public,max-age=1 + content-length: + - '14838' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:02 GMT + etag: + - '"6FD250CAB84CEA2A623F414AB115A49DCE4BCE943263F8CC6FA5C34BCF3B83C3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 55900ec4-5511-450b-ac67-1490a21363fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2104&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2054&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - daa6b9ab-83a1-47c6-b5ba-43ffce11f0f6 + cache-control: + - public,max-age=1 + content-length: + - '14857' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:03 GMT + etag: + - '"E89D65EC1D0CB74233F5AA1562CCB3D00B123CA0278C14B2CB58A45F468382EF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - daa6b9ab-83a1-47c6-b5ba-43ffce11f0f6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2054&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2004&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - c34f9d54-7dca-4f34-87cc-2bb5992f96a9 + cache-control: + - public,max-age=1 + content-length: + - '14833' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:03 GMT + etag: + - '"5D4BC3C44DC6571D7F54AC6639B601CAC819DD6B4026F44254041F2505593238"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c34f9d54-7dca-4f34-87cc-2bb5992f96a9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2004&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1954&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - b688e8b3-fb67-4545-9fc1-dbbded4b1512 + cache-control: + - public,max-age=1 + content-length: + - '14828' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:03 GMT + etag: + - '"13E14F14E2038F9AE5D3C4280B94738BBEE1A7822FD22788EE8F4CC70DFBAEA0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b688e8b3-fb67-4545-9fc1-dbbded4b1512 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1954&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1904&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - d6290a33-45c9-48ff-a41e-0fc9c1038d1e + cache-control: + - public,max-age=1 + content-length: + - '14831' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:03 GMT + etag: + - '"F3109E2D1ED89EF78D60CDC5165A8C604710C1D1ED0CF9111698FD33A82CBA17"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d6290a33-45c9-48ff-a41e-0fc9c1038d1e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1904&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1854&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - a38087b2-e835-49ad-9071-48cb11f49e3a + cache-control: + - public,max-age=1 + content-length: + - '14835' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:04 GMT + etag: + - '"1D9B53DB87608B49A76003EF3427581184B13E86C26E41F7F5D27237F5C55FEE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a38087b2-e835-49ad-9071-48cb11f49e3a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1854&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1804&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 664207ff-8e61-4c9e-a2af-4d68f75c9787 + cache-control: + - public,max-age=1 + content-length: + - '14835' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:04 GMT + etag: + - '"C36CE5A1C858E2C159B3B9702C1E271E7637B1AAC386A553F8A1CC85E43D66F1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 664207ff-8e61-4c9e-a2af-4d68f75c9787 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1804&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1754&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 7300cd4f-ab0f-4bf1-b7fd-533433397677 + cache-control: + - public,max-age=1 + content-length: + - '14836' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:04 GMT + etag: + - '"86C9C5A6EB1024DB58AA6538BE308BAFE6B6A74D9BDBF7E0F49765214B363DAA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7300cd4f-ab0f-4bf1-b7fd-533433397677 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1754&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1704&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 7bcc3d89-e806-42b4-af12-1a3be9ca12b7 + cache-control: + - public,max-age=1 + content-length: + - '14835' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:04 GMT + etag: + - '"975AAD86CFD6EF9E250C6641E718E2721A3249C7772AE301D173F031C6AB2297"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7bcc3d89-e806-42b4-af12-1a3be9ca12b7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1704&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1654&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 6347ed2a-fc3a-435b-a9a6-c2070bd98d7f + cache-control: + - public,max-age=1 + content-length: + - '15354' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:05 GMT + etag: + - '"76A4A01E86DE53A87ADDA698C0B4C40E628223B0D0E44EBC40F98300E21FDE54"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6347ed2a-fc3a-435b-a9a6-c2070bd98d7f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1654&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1604&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 331a8249-6aba-4228-81b0-116e456806e8 + cache-control: + - public,max-age=1 + content-length: + - '14833' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:05 GMT + etag: + - '"028A3308A43417DD1E4F43E379BBA89378FA88FF21777606848D64E164F47B64"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 331a8249-6aba-4228-81b0-116e456806e8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1604&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1554&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 5d730bae-2c2a-482e-a7e9-979878ddb866 + cache-control: + - public,max-age=1 + content-length: + - '14827' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:05 GMT + etag: + - '"552A8394A536B5FCE820E01525161FB83A8C9330DDF3686BEA62BEEB5F16E4DE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5d730bae-2c2a-482e-a7e9-979878ddb866 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1554&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1504&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 3a41c47a-ccd7-48af-8d8c-a16f72f3e1aa + cache-control: + - public,max-age=1 + content-length: + - '14851' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:06 GMT + etag: + - '"23F5CF7C99E92EED8188A6CF1C096AC1C8529531D79D499F4866E2B7004ACB6C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3a41c47a-ccd7-48af-8d8c-a16f72f3e1aa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1504&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1454&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 5810d2ab-d0a5-49ad-b268-fad990c71ca1 + cache-control: + - public,max-age=1 + content-length: + - '14820' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:06 GMT + etag: + - '"2D3D31C8542B234B673D5DE63D8F3A3DF5F20C48E403899C334BAE48C87D22C0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5810d2ab-d0a5-49ad-b268-fad990c71ca1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1454&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1404&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 6026d5cd-584a-4801-b1b3-6a44a5105456 + cache-control: + - public,max-age=1 + content-length: + - '15096' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:06 GMT + etag: + - '"36608ADB846FEFEEA082F7F168D1B979A007D43784D0A5400880F83C6BB54016"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6026d5cd-584a-4801-b1b3-6a44a5105456 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1404&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1354&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 0b754046-10ca-49e0-b29b-0bacb0322fa2 + cache-control: + - public,max-age=1 + content-length: + - '15084' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:06 GMT + etag: + - '"68A4590492D776B96EE0977584BBE092C9FDC42210DFDE089857E7B82DD2FFFD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0b754046-10ca-49e0-b29b-0bacb0322fa2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1354&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1304&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - f9e55efa-944b-4bbb-a91f-b33ccf6af9f5 + cache-control: + - public,max-age=1 + content-length: + - '15381' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:07 GMT + etag: + - '"8FC281240FC0E11BE6A116C6E9D140876B2B72CB766C9939A8A27AE6057F4CC8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f9e55efa-944b-4bbb-a91f-b33ccf6af9f5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1304&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1254&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 7a719791-fa6e-4463-808b-aef77a51353f + cache-control: + - public,max-age=1 + content-length: + - '14858' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:07 GMT + etag: + - '"85E11A1B28F82C31BE84ABB80748D5524CA6AAD76E34FF4ADF7763FF66CBB75B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7a719791-fa6e-4463-808b-aef77a51353f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1254&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1204&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 082eba9c-65f4-46e4-8dc1-828063db7a50 + cache-control: + - public,max-age=1 + content-length: + - '14928' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:07 GMT + etag: + - '"B55D0717C32988CD8627D16350A7943C1C845C5C0999226F87C0956A998E7D48"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 082eba9c-65f4-46e4-8dc1-828063db7a50 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1204&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1154&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - f3f7188c-0662-442d-b999-27445ac7252a + cache-control: + - public,max-age=1 + content-length: + - '14868' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:08 GMT + etag: + - '"FA5BE5B8235D907ABBF7CBDF9B8D0DE288F4C19479B77CA6EC4D8ED4C2811005"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f3f7188c-0662-442d-b999-27445ac7252a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1154&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1104&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 5bfb6049-36fb-4b90-bbf3-9e9575fa5b37 + cache-control: + - public,max-age=1 + content-length: + - '14830' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:08 GMT + etag: + - '"58C127F7FA594AB72E37FF21059D4BDBE13D8C7ACCF9EC51CA63201964ECB508"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5bfb6049-36fb-4b90-bbf3-9e9575fa5b37 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1104&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1054&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 0bad4ca7-eb50-4e0b-8af9-b3795d25b87b + cache-control: + - public,max-age=1 + content-length: + - '14833' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:08 GMT + etag: + - '"18B9B26E5599756F36357BD573B53B6848824957C418C5CB4980E4ECF3530AB2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0bad4ca7-eb50-4e0b-8af9-b3795d25b87b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1054&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1004&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 1a3fda27-f704-4229-9571-89afed9ce521 + cache-control: + - public,max-age=1 + content-length: + - '14814' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:08 GMT + etag: + - '"A8AB12669F6BBF79A5B26AC20D6975BA678D6B8BA553C9F5AC1DA2BA6637C10D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1a3fda27-f704-4229-9571-89afed9ce521 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1004&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=954&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - c3b7007e-7971-4d00-b617-371b5c44a69b + cache-control: + - public,max-age=1 + content-length: + - '14862' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:09 GMT + etag: + - '"390F64F9958D6C964C7C50CF6AF2A08AA3D710DE3CFE8EBA549F9288ED7835BD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c3b7007e-7971-4d00-b617-371b5c44a69b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=954&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=904&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - afeeee80-df30-4dd4-a208-3dd2d59ee5a5 + cache-control: + - public,max-age=1 + content-length: + - '14813' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:09 GMT + etag: + - '"DB3CCA5F595ADC6736D30A22FD0F761749FF9B20F453F67B050CD2341E0D3F1F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - afeeee80-df30-4dd4-a208-3dd2d59ee5a5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=904&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=854&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 3645e1bf-1aad-46ad-af49-93326e5e10bd + cache-control: + - public,max-age=1 + content-length: + - '14839' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:09 GMT + etag: + - '"D372EAB9E4127095658B994F06A7AAE83D2AAFC8C866B67F6A85A7BB18667A41"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3645e1bf-1aad-46ad-af49-93326e5e10bd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=854&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=804&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - f206c449-6cfa-49b2-98e6-1cf12662fd63 + cache-control: + - public,max-age=1 + content-length: + - '14816' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:10 GMT + etag: + - '"93A202D26F227C65CEC23115AFC7D7467437B13E2189837A3E7F39F84148137B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f206c449-6cfa-49b2-98e6-1cf12662fd63 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=804&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=754&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - b7f14e7a-b405-4288-9ee4-66a1b9382629 + cache-control: + - public,max-age=1 + content-length: + - '14834' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:10 GMT + etag: + - '"CCD6956A727E6214F0B5FDEB3F1E9BE5E5C02FD5B9E96193B630AEAE85D1558B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b7f14e7a-b405-4288-9ee4-66a1b9382629 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=754&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=704&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 872e4010-43c9-4ac3-8671-a063dc86f6e9 + cache-control: + - public,max-age=1 + content-length: + - '14831' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:10 GMT + etag: + - '"0D6B7B1EB2F16FE13CB98CB4CB1D9E676D78273ECD8900C7CFE26124C9148C4D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 872e4010-43c9-4ac3-8671-a063dc86f6e9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=704&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=654&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 5f9796cc-2e84-407b-bbfa-516f0c1c906c + cache-control: + - public,max-age=1 + content-length: + - '14826' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:10 GMT + etag: + - '"F696E44E8ACBF4971D19FFA49A21D4BF75A1527BBB6EACDD234579C23CFB10B5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5f9796cc-2e84-407b-bbfa-516f0c1c906c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=654&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=604&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 9163220a-ffdf-45a5-b0eb-1651ac009be9 + cache-control: + - public,max-age=1 + content-length: + - '14831' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:11 GMT + etag: + - '"86FEB94756642A2EBBEC03A3873BB1028B3E04E942F5CFED23DFFF7A3C5B164A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9163220a-ffdf-45a5-b0eb-1651ac009be9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=604&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=554&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - f7295999-85be-45f1-a4b2-dd8ffc115950 + cache-control: + - public,max-age=1 + content-length: + - '14828' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:11 GMT + etag: + - '"4C828D7EC75774D9CDB3F4FA91F4454507176073CEBD7BB18C82F028654B1522"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f7295999-85be-45f1-a4b2-dd8ffc115950 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=554&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=504&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 06d904e6-3cf0-441a-9124-a4106ef388b9 + cache-control: + - public,max-age=1 + content-length: + - '14835' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:11 GMT + etag: + - '"387BBFB6E8FF9EE9D74459C6F3D3F98A6A4B22A0BACD89ACCD9912558A31399E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 06d904e6-3cf0-441a-9124-a4106ef388b9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=504&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=454&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 80b655c8-ee3d-4b84-8721-bf3bda87ead4 + cache-control: + - public,max-age=1 + content-length: + - '14835' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:11 GMT + etag: + - '"1FD4549E743377C94364C3C6595814B7EAB6F4F6395A54AF15102E3AABC6CD24"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 80b655c8-ee3d-4b84-8721-bf3bda87ead4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=454&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=404&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - e9d8fe47-3a48-4c8b-9e07-dfff0f3270cb + cache-control: + - public,max-age=1 + content-length: + - '14839' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:12 GMT + etag: + - '"38A20C7B74033CFA15DDAF80DA1A66B9C028FFC0CD2C6F3DA844DB95142872EF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e9d8fe47-3a48-4c8b-9e07-dfff0f3270cb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=404&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=354&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 9de31b80-1b46-42f1-b293-7d2852285b71 + cache-control: + - public,max-age=1 + content-length: + - '14827' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:12 GMT + etag: + - '"5597594B9C3E4FCFBA84250C3F22EAE4FC8D42267B4315AC0015FA46B73478D5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9de31b80-1b46-42f1-b293-7d2852285b71 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=354&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=304&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 173d8805-a184-4e2a-bf40-5a04c35c4333 + cache-control: + - public,max-age=1 + content-length: + - '14823' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:12 GMT + etag: + - '"C236EAFF7142072ED9454ED50B2AC3D0F7B36E4017D8ACAF82B23D89A0E680CD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 173d8805-a184-4e2a-bf40-5a04c35c4333 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=304&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=254&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - beac2e70-af62-4d25-bf9f-1f460f8f40aa + cache-control: + - public,max-age=1 + content-length: + - '14829' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:13 GMT + etag: + - '"E793C24034C8A6AFBF420B1AD1FC7C63443968F89435BD593DB2001A66562FC7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - beac2e70-af62-4d25-bf9f-1f460f8f40aa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=254&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=204&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - ab0688ea-8971-4bfa-beff-33e16483f470 + cache-control: + - public,max-age=1 + content-length: + - '14831' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:13 GMT + etag: + - '"890709ACF83FBE537D7D7F9F3D7B3AA791876D96AED78FEFF36C0C6DD40BEC7C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ab0688ea-8971-4bfa-beff-33e16483f470 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=204&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=154&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - d265134d-b232-4383-861c-ea786bdbe085 + cache-control: + - public,max-age=1 + content-length: + - '14831' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:13 GMT + etag: + - '"11157FC95181BAF613EFE6434B9E7FD2506D11AE5D9ECB8E09CD16FBF1021388"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d265134d-b232-4383-861c-ea786bdbe085 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=154&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=104&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - e1cade39-3334-4ca8-88bd-0657de8a76df + cache-control: + - public,max-age=1 + content-length: + - '15108' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:13 GMT + etag: + - '"D7DC66F517CA3F97D745C9E418014EC87EB1933F91C6B7D5818C3AD4CB509D30"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e1cade39-3334-4ca8-88bd-0657de8a76df + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=104&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=54&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - e6fde717-16e6-4d9a-870f-98c1d51ab1cd + cache-control: + - public,max-age=1 + content-length: + - '15080' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:14 GMT + etag: + - '"9C2124CA1FA9A6E029CCCF5DB0191B984B43BD3D7D63AEF38964E66DB18D3B51"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e6fde717-16e6-4d9a-870f-98c1d51ab1cd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=54&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=4&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: + - 80bfb56c-1fd3-4f4a-adaf-773ab69f4458 + cache-control: + - public,max-age=1 + content-length: + - '19591' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:14 GMT + etag: + - '"F9592E18F05BF3FF675CEE23A5E382E0A8F4B03247BF11916EA055CED3D30385"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 80bfb56c-1fd3-4f4a-adaf-773ab69f4458 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=4&$maxpagesize=50&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: + - 5b84b416-7654-4f32-8313-968fefabfdfc + cache-control: + - public,max-age=1 + content-length: + - '2007' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:14 GMT + etag: + - '"F2F078805E021A60D8A03C75F502A6570847EC0E609E2414AC7E5DAE7D5B3367"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5b84b416-7654-4f32-8313-968fefabfdfc + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_with_pagination.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_with_pagination.yaml new file mode 100644 index 000000000000..72bd0598e210 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_with_pagination.yaml @@ -0,0 +1,58043 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:15 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5b36babf-fcbc-4413-8450-03d201965e45?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:15 GMT + etag: + - '"0x8D910D08D743BA7"' + last-modified: + - Thu, 06 May 2021 20:50:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5b36babf-fcbc-4413-8450-03d201965e45/7ed972d0-14eb-4b90-80f2-c01bd2890fa8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:50:15 GMT + etag: + - '"0x8D910D08D98B5DE"' + last-modified: + - Thu, 06 May 2021 20:50:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5b36babf-fcbc-4413-8450-03d201965e45/e8cef1b0-232b-4dad-a547-0d524022ea77.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:50:16 GMT + etag: + - '"0x8D910D08DBDA9CD"' + last-modified: + - Thu, 06 May 2021 20:50:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target03f55184-5934-4d3e-8c98-dd6f83afd7b0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:16 GMT + etag: + - '"0x8D910D08E480AB3"' + last-modified: + - Thu, 06 May 2021 20:50:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5b36babf-fcbc-4413-8450-03d201965e45?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target03f55184-5934-4d3e-8c98-dd6f83afd7b0?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - e3681674-4c06-4773-9160-58ef1fa03b25 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:17 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/5adc00b1-b68a-400f-be26-b87f453a1f8e + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e3681674-4c06-4773-9160-58ef1fa03b25 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5adc00b1-b68a-400f-be26-b87f453a1f8e + response: + body: + string: '{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:18.1489734Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - a2ab7a2b-e23f-4c4b-b1bd-7086e0f14707 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:17 GMT + etag: + - '"67CC8416D64EF39CA3A5E5102FA140E17BC488753EB865243A144BB1DE19D230"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a2ab7a2b-e23f-4c4b-b1bd-7086e0f14707 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:18 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src0444bb24-be51-461d-83f2-6a7ec3c53d0b?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:19 GMT + etag: + - '"0x8D910D08F3FA0FB"' + last-modified: + - Thu, 06 May 2021 20:50:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src0444bb24-be51-461d-83f2-6a7ec3c53d0b/ade86b9e-9544-46ba-8cfb-6c4e6acbe10f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:50:19 GMT + etag: + - '"0x8D910D08F653E49"' + last-modified: + - Thu, 06 May 2021 20:50:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src0444bb24-be51-461d-83f2-6a7ec3c53d0b/9a95d327-f59e-4dc0-b35f-cbfe3ecccd5b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:50:19 GMT + etag: + - '"0x8D910D08F8ACE80"' + last-modified: + - Thu, 06 May 2021 20:50:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target47135254-a2c3-48b6-8412-7af477af0914?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:19 GMT + etag: + - '"0x8D910D0901C03D3"' + last-modified: + - Thu, 06 May 2021 20:50:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src0444bb24-be51-461d-83f2-6a7ec3c53d0b?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target47135254-a2c3-48b6-8412-7af477af0914?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 6ff8b70e-5e39-49a5-811f-cfa59639ac80 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:20 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/376d9f56-edee-4906-a070-dc3f56f83b29 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6ff8b70e-5e39-49a5-811f-cfa59639ac80 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/376d9f56-edee-4906-a070-dc3f56f83b29 + response: + body: + string: '{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:20.8499127Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - af47d220-df58-4dc0-8c1e-e693d1c789b9 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:20 GMT + etag: + - '"3C362B890F98C4809AAE47CA2EF80D015A23E26C204AC6DCA13AC43F41225A00"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - af47d220-df58-4dc0-8c1e-e693d1c789b9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src7e939ff9-77b9-457e-aea7-b313c5968476?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:21 GMT + etag: + - '"0x8D910D090DE2D93"' + last-modified: + - Thu, 06 May 2021 20:50:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src7e939ff9-77b9-457e-aea7-b313c5968476/9e59e826-2ad1-4ad2-8f0e-bfd9aa58b4bb.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:50:21 GMT + etag: + - '"0x8D910D09107A17E"' + last-modified: + - Thu, 06 May 2021 20:50:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src7e939ff9-77b9-457e-aea7-b313c5968476/f8b7ff4b-7127-4454-a130-7a1452eb0543.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:50:21 GMT + etag: + - '"0x8D910D0912E4363"' + last-modified: + - Thu, 06 May 2021 20:50:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target860bdab1-acdc-4b98-bb27-f60d9f6787de?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:23 GMT + etag: + - '"0x8D910D091BDE913"' + last-modified: + - Thu, 06 May 2021 20:50:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7e939ff9-77b9-457e-aea7-b313c5968476?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target860bdab1-acdc-4b98-bb27-f60d9f6787de?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 6af7544b-2b94-4194-b916-b419b4255ba6 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:23 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/39eef974-4ce8-44b6-8a56-a0f983f9efe7 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6af7544b-2b94-4194-b916-b419b4255ba6 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/39eef974-4ce8-44b6-8a56-a0f983f9efe7 + response: + body: + string: '{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:23.606331Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - a1944c63-3500-4a6e-94ef-9021e85fc643 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:23 GMT + etag: + - '"B7E9AD07DB928B1594CF49B92908F7C715C599142E0C9AD5D82A18F0D4E6D70B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1944c63-3500-4a6e-94ef-9021e85fc643 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src17e04e01-c5dc-46e9-b61f-008a4e8364f9?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:23 GMT + etag: + - '"0x8D910D0927FB06A"' + last-modified: + - Thu, 06 May 2021 20:50:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src17e04e01-c5dc-46e9-b61f-008a4e8364f9/6d5dee4c-709f-4856-a2b1-0783fc5aefd6.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:50:24 GMT + etag: + - '"0x8D910D092A4D3ED"' + last-modified: + - Thu, 06 May 2021 20:50:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src17e04e01-c5dc-46e9-b61f-008a4e8364f9/4c4f5628-a214-4ab8-b98b-d40966bbad59.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:50:24 GMT + etag: + - '"0x8D910D092CA8B3D"' + last-modified: + - Thu, 06 May 2021 20:50:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target5e0aece2-b015-47b8-a221-87cb44fbcb7d?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:25 GMT + etag: + - '"0x8D910D093612A16"' + last-modified: + - Thu, 06 May 2021 20:50:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src17e04e01-c5dc-46e9-b61f-008a4e8364f9?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5e0aece2-b015-47b8-a221-87cb44fbcb7d?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - eda106dd-ecbc-4fdb-aa07-9c9be45b827c + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:26 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7e6dabf1-2164-49fc-b28e-a4402507b57c + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eda106dd-ecbc-4fdb-aa07-9c9be45b827c + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7e6dabf1-2164-49fc-b28e-a4402507b57c + response: + body: + string: '{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.3335301Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 3179eddc-1efd-48eb-b311-da22653d82c4 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:26 GMT + etag: + - '"C27A79A00DA225234CBAE6A2F5AE360D6349E8921454BE04BE9BE694B79A12D5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3179eddc-1efd-48eb-b311-da22653d82c4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:26 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src8c065898-7d64-4ee7-ba8d-4f02368f1c0d?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:26 GMT + etag: + - '"0x8D910D0941FA30E"' + last-modified: + - Thu, 06 May 2021 20:50:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src8c065898-7d64-4ee7-ba8d-4f02368f1c0d/e9b2dec7-74f7-4685-a419-e60d7b49d2de.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:50:26 GMT + etag: + - '"0x8D910D094464C9F"' + last-modified: + - Thu, 06 May 2021 20:50:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:50:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src8c065898-7d64-4ee7-ba8d-4f02368f1c0d/568c1012-cc6b-40cd-9574-19ac5469db64.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:50:26 GMT + etag: + - '"0x8D910D094707187"' + last-modified: + - Thu, 06 May 2021 20:50:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:50:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target0fdd020a-f500-48a5-bdb6-54f47fb76ce9?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:27 GMT + etag: + - '"0x8D910D094FA7F9A"' + last-modified: + - Thu, 06 May 2021 20:50:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8c065898-7d64-4ee7-ba8d-4f02368f1c0d?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0fdd020a-f500-48a5-bdb6-54f47fb76ce9?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - cbb298c4-46e0-4f9a-ba1a-7ffd207f5976 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:50:28 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7aa4b855-b152-4ca0-b411-29315804b5d6 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cbb298c4-46e0-4f9a-ba1a-7ffd207f5976 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7aa4b855-b152-4ca0-b411-29315804b5d6 + response: + body: + string: '{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:29.0276443Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 06ea860e-36ef-4228-b53e-51299adb6344 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:28 GMT + etag: + - '"3A0EDE28DDE2126E884BAB11158376042F2D1C651179C0229AE1073B97F3A4C3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 06ea860e-36ef-4228-b53e-51299adb6344 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:29.0276443Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:28.6916857Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2&$top=2407&$maxpagesize=2"}' + headers: + apim-request-id: + - b247b338-7b47-4f65-a766-a03a20d78ee5 + cache-control: + - public,max-age=1 + content-length: + - '741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:28 GMT + etag: + - '"EC9393C5B4014D24B366D6A135882B06E3100071D50AF45ADB405563F76A0034"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b247b338-7b47-4f65-a766-a03a20d78ee5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2&$top=2407&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:27.2981028Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7455463Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=4&$top=2405&$maxpagesize=2"}' + headers: + apim-request-id: + - dd621a88-4d8f-467a-89c0-fa0f9e1f96d3 + cache-control: + - public,max-age=1 + content-length: + - '739' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:28 GMT + etag: + - '"9A4DEED9CC6D64F939D4DDF06AB74990D4A0F87C32D8FAB6A10A315229CD552A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dd621a88-4d8f-467a-89c0-fa0f9e1f96d3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=4&$top=2405&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7237955Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.6065399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=6&$top=2403&$maxpagesize=2"}' + headers: + apim-request-id: + - 9f737ccd-bcd4-46bd-8882-0a10efc517eb + cache-control: + - public,max-age=1 + content-length: + - '742' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:29 GMT + etag: + - '"5BAEA7D13AA753DD3283E23B126798B1DE489A8F85CCAD80F7F00071B3E934BD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9f737ccd-bcd4-46bd-8882-0a10efc517eb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=6&$top=2403&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.5123621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.0499248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=8&$top=2401&$maxpagesize=2"}' + headers: + apim-request-id: + - aa5df51e-89ec-43f4-848d-50abee9ceca3 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:29 GMT + etag: + - '"FCC0F2476AEE674A0E04954838DFCBBEACCF6795DFD3AF4D3AE9D424FA8F20B9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - aa5df51e-89ec-43f4-848d-50abee9ceca3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=8&$top=2401&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=10&$top=2399&$maxpagesize=2"}' + headers: + apim-request-id: + - 25dbf4a1-18bf-4295-8009-57eb4b315f66 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:29 GMT + etag: + - '"92227678E192333F8DDEB51E8E7722EE01DFE68481737745FDDC3D60EB04E4F5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 25dbf4a1-18bf-4295-8009-57eb4b315f66 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=10&$top=2399&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=12&$top=2397&$maxpagesize=2"}' + headers: + apim-request-id: + - 3437504d-b2cb-4ab9-b3ce-5a500b95027f + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:29 GMT + etag: + - '"D841BB3E0D841AB835ECAD282974F719F2C78DE1733D647B021D8CD80AD70323"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3437504d-b2cb-4ab9-b3ce-5a500b95027f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=12&$top=2397&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=14&$top=2395&$maxpagesize=2"}' + headers: + apim-request-id: + - 1db1a203-69eb-4236-92e0-efbddd653d31 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:29 GMT + etag: + - '"54FF15E373E0DBB3C1203937ADAB02B7C5CA802E28674D34B26A6E378BFE6DD9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1db1a203-69eb-4236-92e0-efbddd653d31 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=14&$top=2395&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=16&$top=2393&$maxpagesize=2"}' + headers: + apim-request-id: + - 1c5b9bb1-e7a3-44f0-b5b4-6dce523edbe5 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:29 GMT + etag: + - '"7B11DE98D93EA95F2B8EF940A72BB5D0D76260D06E782D79881065C45DF28BD1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1c5b9bb1-e7a3-44f0-b5b4-6dce523edbe5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=16&$top=2393&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=18&$top=2391&$maxpagesize=2"}' + headers: + apim-request-id: + - 289af692-1c05-4b82-bc5c-b92c095dc27f + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:30 GMT + etag: + - '"30469A83ABF559D1D17F282E1C73804432B43C8D11E97D4AC023F7AC31C527D6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 289af692-1c05-4b82-bc5c-b92c095dc27f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=18&$top=2391&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=20&$top=2389&$maxpagesize=2"}' + headers: + apim-request-id: + - 01c56e17-1f95-41cb-b432-c379515b7b9e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:30 GMT + etag: + - '"5A5404F1CDA4DD22E2CE038D150F7B466C3866E9419B25BD7690E06AB01194BB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 01c56e17-1f95-41cb-b432-c379515b7b9e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=20&$top=2389&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=22&$top=2387&$maxpagesize=2"}' + headers: + apim-request-id: + - 16d59682-2421-4bff-a230-9e580e5ac20e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:30 GMT + etag: + - '"700F7F7E771F34288E5488F1129E3A1A9C57004871044D285FC47217FFFB5288"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 16d59682-2421-4bff-a230-9e580e5ac20e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=22&$top=2387&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=24&$top=2385&$maxpagesize=2"}' + headers: + apim-request-id: + - f05bb2a6-ff5f-4779-89f6-758a95926776 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:30 GMT + etag: + - '"2D57FB303AA9B4C0178412D3758654D43A8FC55DC46B0BF79EADE388D7ADC0F9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f05bb2a6-ff5f-4779-89f6-758a95926776 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=24&$top=2385&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=26&$top=2383&$maxpagesize=2"}' + headers: + apim-request-id: + - c3a2ce65-36ff-48f0-8a3d-6f0fc0156ab7 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:30 GMT + etag: + - '"A34CF355C6E50AB34DF6EE37FB4CCA266DEB644E5B838A302A278E7DF4D580A7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c3a2ce65-36ff-48f0-8a3d-6f0fc0156ab7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=26&$top=2383&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=28&$top=2381&$maxpagesize=2"}' + headers: + apim-request-id: + - 6ae96bec-f08f-4ad8-a085-70286f67e810 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:30 GMT + etag: + - '"5532EB82885BE84762BF38F215ACCD48EAF76632D19B27AF436CD21733DA3D40"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6ae96bec-f08f-4ad8-a085-70286f67e810 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=28&$top=2381&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=30&$top=2379&$maxpagesize=2"}' + headers: + apim-request-id: + - c420d7e3-ad30-43bf-8f5d-274c4679b594 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:31 GMT + etag: + - '"C7AC398BA97D002AB232533F6DBD82681A51B3774603D608D8B4E20EAB9F894C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c420d7e3-ad30-43bf-8f5d-274c4679b594 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=30&$top=2379&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=32&$top=2377&$maxpagesize=2"}' + headers: + apim-request-id: + - 7bc287a9-c26d-44a4-b6d8-6a10e56fea82 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:31 GMT + etag: + - '"58325C9711A860ABF8CE41185DE386B3D9931E4237295F231AFBCCE9FECE9DD5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7bc287a9-c26d-44a4-b6d8-6a10e56fea82 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=32&$top=2377&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=34&$top=2375&$maxpagesize=2"}' + headers: + apim-request-id: + - 18c07570-d955-49d8-a9ea-4506760edacf + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:31 GMT + etag: + - '"043391DB88D2FFFA15C6D761C06EBB2B711B9E1554F1602D880EDEC99B257B4A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 18c07570-d955-49d8-a9ea-4506760edacf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=34&$top=2375&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=36&$top=2373&$maxpagesize=2"}' + headers: + apim-request-id: + - b513426c-698f-4337-a174-496200c5c39c + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:31 GMT + etag: + - '"5DC7303251F8C66D78CBE1C112EAA00C17207BA6A61CC9C31200A44E6EE818A2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b513426c-698f-4337-a174-496200c5c39c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=36&$top=2373&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=38&$top=2371&$maxpagesize=2"}' + headers: + apim-request-id: + - 12fc0f00-8419-41a3-996c-faf94568a583 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:31 GMT + etag: + - '"FB561178B94F2635CDBE1E8B4523788711F8DC164C5AEAA49120C58C6138F30E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 12fc0f00-8419-41a3-996c-faf94568a583 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=38&$top=2371&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=40&$top=2369&$maxpagesize=2"}' + headers: + apim-request-id: + - 30f47891-4351-4c4a-97a0-1f3551448521 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:31 GMT + etag: + - '"82033177E470A031A40236F11D0A1F37DC491B79CF4F8BF5798989A48CD213BC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 30f47891-4351-4c4a-97a0-1f3551448521 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=40&$top=2369&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=42&$top=2367&$maxpagesize=2"}' + headers: + apim-request-id: + - 11af5de6-7051-4171-a03f-ef65b799b115 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:32 GMT + etag: + - '"C88EC5334BBA0B888E42B3F6A3115C690F208266FA6BC03072D8E437CF426CF2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 11af5de6-7051-4171-a03f-ef65b799b115 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=42&$top=2367&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=44&$top=2365&$maxpagesize=2"}' + headers: + apim-request-id: + - 647da460-bdf5-41f5-80a4-1f5be796cbe0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:32 GMT + etag: + - '"7B3013EF3C24599E85CE9887F7A6E2DF1988DA9F0B2C5E520B5C1D3BA9403C88"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 647da460-bdf5-41f5-80a4-1f5be796cbe0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=44&$top=2365&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=46&$top=2363&$maxpagesize=2"}' + headers: + apim-request-id: + - 102206d8-5ab0-4369-ae59-c5016494bb6e + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:32 GMT + etag: + - '"9643189A3428630D14637276CAF712EFD99CDA029AEF44EA0C5999AA92B51C3D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 102206d8-5ab0-4369-ae59-c5016494bb6e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=46&$top=2363&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=48&$top=2361&$maxpagesize=2"}' + headers: + apim-request-id: + - 84849443-fc34-4179-b72f-033f7e137e90 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:32 GMT + etag: + - '"979BDD340E77DBE77DA3C36F5D93C54A75A9B0CE54FA15764C8C83316392D80B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 84849443-fc34-4179-b72f-033f7e137e90 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=48&$top=2361&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2359&$maxpagesize=2"}' + headers: + apim-request-id: + - 0e794a2d-52cc-465c-847c-b3617c4d7144 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:32 GMT + etag: + - '"6E607AB569DC428684F0013A38B005FD99ECB72271D5B9BFF34E95F6F4DC6681"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0e794a2d-52cc-465c-847c-b3617c4d7144 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2359&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=52&$top=2357&$maxpagesize=2"}' + headers: + apim-request-id: + - cbc6f9e5-aca5-416d-bdf3-c311c0bdad5a + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:32 GMT + etag: + - '"CF93F1DA1C968F1D1A20410A87B203E6FA48B5139AE1AB7FAA8CA77B00430CD5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cbc6f9e5-aca5-416d-bdf3-c311c0bdad5a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=52&$top=2357&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=54&$top=2355&$maxpagesize=2"}' + headers: + apim-request-id: + - 17a3da72-b370-492f-85b3-a24bfc11f5da + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:33 GMT + etag: + - '"F3D6D1F25B21BEB7FE134DF3A32BE15DDD62572D0C898E0FA981AA3535E2876C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 17a3da72-b370-492f-85b3-a24bfc11f5da + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=54&$top=2355&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=56&$top=2353&$maxpagesize=2"}' + headers: + apim-request-id: + - 9d4042c2-0a7d-4b4a-82ba-c8b846886fc7 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:33 GMT + etag: + - '"E67E4CF37CDDF434E47D9083E79A98603EF690D2B50EDD9E17C2E81657F265DE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9d4042c2-0a7d-4b4a-82ba-c8b846886fc7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=56&$top=2353&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=58&$top=2351&$maxpagesize=2"}' + headers: + apim-request-id: + - 3d0fdabd-1057-4c29-94ca-93ead4de2a3e + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:33 GMT + etag: + - '"033B8273DC2768BFDB416A65D87FFA32E061E688B2DF7318D26461533517FBEB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3d0fdabd-1057-4c29-94ca-93ead4de2a3e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=58&$top=2351&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=60&$top=2349&$maxpagesize=2"}' + headers: + apim-request-id: + - a1e3fb95-b04d-40b2-82a0-bd27b5ba00f3 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:33 GMT + etag: + - '"60E569D14576B8062D0C7CA3FF281D9E2EB6BC418B98B2F044176C9458A0C6BF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1e3fb95-b04d-40b2-82a0-bd27b5ba00f3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=60&$top=2349&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=62&$top=2347&$maxpagesize=2"}' + headers: + apim-request-id: + - ab9811c0-17ff-41aa-aae3-f7dac55ddbb6 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:33 GMT + etag: + - '"99B298BC33F7103BB02A5BD656859ED45FEADBD6D02F0C1FD4C93070C954BFC4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ab9811c0-17ff-41aa-aae3-f7dac55ddbb6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=62&$top=2347&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=64&$top=2345&$maxpagesize=2"}' + headers: + apim-request-id: + - e7bdfff5-38b0-4304-b89a-2ea08838f3ab + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:33 GMT + etag: + - '"C249A80D0B6E606837B275D83D349CB255D34881F9A532F47B3445829BD56AA9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e7bdfff5-38b0-4304-b89a-2ea08838f3ab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=64&$top=2345&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=66&$top=2343&$maxpagesize=2"}' + headers: + apim-request-id: + - 37f523ad-58ee-42ff-869f-8cf437534038 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:34 GMT + etag: + - '"308C2AFFE95AE87494EA68489D00988D78E94BC97812D3E5AC2DFDDE42F14945"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 37f523ad-58ee-42ff-869f-8cf437534038 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=66&$top=2343&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=68&$top=2341&$maxpagesize=2"}' + headers: + apim-request-id: + - 668ed6ee-eeaa-4838-bb8e-690cde117e8a + cache-control: + - public,max-age=1 + content-length: + - '742' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:34 GMT + etag: + - '"BA33B8A09471894430CCFE303445804B0A137B299733CD2EB6CC09EC853D1CEE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 668ed6ee-eeaa-4838-bb8e-690cde117e8a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=68&$top=2341&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=70&$top=2339&$maxpagesize=2"}' + headers: + apim-request-id: + - 49cbe1a5-0196-4b0c-8a1d-fa3b3d1e597a + cache-control: + - public,max-age=1 + content-length: + - '1016' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:34 GMT + etag: + - '"262E18D2EB6393EAB028DDB7D10516CD0CC2A1F330DE13D65F23C649A56A0DA3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 49cbe1a5-0196-4b0c-8a1d-fa3b3d1e597a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=70&$top=2339&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=72&$top=2337&$maxpagesize=2"}' + headers: + apim-request-id: + - 4bbbe0f4-12fa-432c-aac1-676e1815a09e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:34 GMT + etag: + - '"5F65A8B74A7BD7F5C5349A7AFAE611B369E4B8F2F292911FE09861985F80D100"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4bbbe0f4-12fa-432c-aac1-676e1815a09e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=72&$top=2337&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=74&$top=2335&$maxpagesize=2"}' + headers: + apim-request-id: + - 06a935f0-d846-4960-8e91-559fbce17a12 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:34 GMT + etag: + - '"0B0059B2474FD79E379D016BC4AF1093F7BEF27D8F5D7ADAD4C49F228EDCE33B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 06a935f0-d846-4960-8e91-559fbce17a12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=74&$top=2335&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=76&$top=2333&$maxpagesize=2"}' + headers: + apim-request-id: + - 8791bc96-5eee-4444-8085-7f28621714cb + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:34 GMT + etag: + - '"CC1B7EEB065F16B9154C4EF9D801F8B73ECE495EC0FCE86797C1FC18231760B3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8791bc96-5eee-4444-8085-7f28621714cb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=76&$top=2333&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=78&$top=2331&$maxpagesize=2"}' + headers: + apim-request-id: + - 643570cb-5cb0-4ead-9394-f1e24c04ddde + cache-control: + - public,max-age=1 + content-length: + - '742' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:34 GMT + etag: + - '"88C33A431654F02280FA00A36AAB891570E1F398C794D57A55BF4ED08A2CD2F9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 643570cb-5cb0-4ead-9394-f1e24c04ddde + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=78&$top=2331&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=80&$top=2329&$maxpagesize=2"}' + headers: + apim-request-id: + - 4168b86a-be96-4ebb-9617-ca0c5876466b + cache-control: + - public,max-age=1 + content-length: + - '1016' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:35 GMT + etag: + - '"E7482858BD8BF93C707B4E99559122199C327C79988746D188192C5390E34170"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4168b86a-be96-4ebb-9617-ca0c5876466b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=80&$top=2329&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=82&$top=2327&$maxpagesize=2"}' + headers: + apim-request-id: + - 0ef8d6b7-73d5-4088-a4a8-2ea2bf9e109a + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:35 GMT + etag: + - '"11BE19B89A892799C7F8FF94A68EE58F87EC9A5678C9F4D23DC3FCE7CBFD5796"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0ef8d6b7-73d5-4088-a4a8-2ea2bf9e109a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=82&$top=2327&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=84&$top=2325&$maxpagesize=2"}' + headers: + apim-request-id: + - 26d5846d-891d-4732-bf0f-fb5b4398f3c5 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:35 GMT + etag: + - '"8562606F82C5C1BB90756AAD2E7531512C4A99CA95A881A57928C328BC253FB8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 26d5846d-891d-4732-bf0f-fb5b4398f3c5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=84&$top=2325&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=86&$top=2323&$maxpagesize=2"}' + headers: + apim-request-id: + - fde61625-371c-42c9-93db-b7ed4a365d52 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:35 GMT + etag: + - '"DDD823BB18E8797F6FBA67AAA6AA37DAA84BBF79CCB1D7460747601FC5CC6DA3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fde61625-371c-42c9-93db-b7ed4a365d52 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=86&$top=2323&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=88&$top=2321&$maxpagesize=2"}' + headers: + apim-request-id: + - dfce4864-42b6-4fb6-aeb0-bb01b85847a6 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:35 GMT + etag: + - '"135B3A30A6B89625583FA8FBEF858C425F7382A161DB244874385AD091DAFED7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dfce4864-42b6-4fb6-aeb0-bb01b85847a6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=88&$top=2321&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=90&$top=2319&$maxpagesize=2"}' + headers: + apim-request-id: + - 9d39f265-0c58-4a1b-88d8-9411f7107530 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:35 GMT + etag: + - '"D6ED6FEB6E967A3CEBBA7323521DF3D8AFBAEA2CC57214AC84A04AF4471CE645"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9d39f265-0c58-4a1b-88d8-9411f7107530 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=90&$top=2319&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=92&$top=2317&$maxpagesize=2"}' + headers: + apim-request-id: + - bfde7ebc-68d7-42ad-9c36-e29df1fa7fcd + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:36 GMT + etag: + - '"D5255EE9EA5BEC37D7C3E2070B954B8C84B5BEF8FDE92CA7D6B9848F643B0B83"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bfde7ebc-68d7-42ad-9c36-e29df1fa7fcd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=92&$top=2317&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=94&$top=2315&$maxpagesize=2"}' + headers: + apim-request-id: + - 563b2976-305c-44d5-8f1e-0aa4241645bc + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:36 GMT + etag: + - '"A1301DCD4806411A90B9E74387A5C98BAB29082B6E4E78F111D98D5E93213AA3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 563b2976-305c-44d5-8f1e-0aa4241645bc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=94&$top=2315&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=96&$top=2313&$maxpagesize=2"}' + headers: + apim-request-id: + - 265f0065-daf4-4dea-ab5e-71b3b347ec92 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:36 GMT + etag: + - '"439EABA9C3B0EC0FA35E72D35CFB695039E736D4CEC84F77E96087592BAAF21C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 265f0065-daf4-4dea-ab5e-71b3b347ec92 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=96&$top=2313&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=98&$top=2311&$maxpagesize=2"}' + headers: + apim-request-id: + - 02480579-bf9c-437f-89f1-7320e8dfc87d + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:36 GMT + etag: + - '"01FDBAE601C10522A63E866A440C0C4054BCD4E94867D09E8F7765A7C15C1310"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 02480579-bf9c-437f-89f1-7320e8dfc87d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=98&$top=2311&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2309&$maxpagesize=2"}' + headers: + apim-request-id: + - 7e6aab7e-b6f0-4557-aced-0044bbbe5e9e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:36 GMT + etag: + - '"16C53C0931F2A8F117EA3BF4BCE959761E6258EBCF6BEC23909F382E4A4DE481"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7e6aab7e-b6f0-4557-aced-0044bbbe5e9e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2309&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=102&$top=2307&$maxpagesize=2"}' + headers: + apim-request-id: + - b87404f3-9554-4565-94fb-6f588014b930 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:36 GMT + etag: + - '"86C2C8587BFD25E04580EFE35BC5618A42E2BD7234ADAA28CBA849AEE09E3857"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b87404f3-9554-4565-94fb-6f588014b930 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=102&$top=2307&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=104&$top=2305&$maxpagesize=2"}' + headers: + apim-request-id: + - b24a013b-9592-46c9-bef6-4b1028000d3e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:36 GMT + etag: + - '"5E0A0D7C65B9EB1F5B9394F4DECB409E20CC957E61C2A9FC11768463447731F0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b24a013b-9592-46c9-bef6-4b1028000d3e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=104&$top=2305&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=106&$top=2303&$maxpagesize=2"}' + headers: + apim-request-id: + - b204531a-320b-482b-862e-cf548928deb3 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:37 GMT + etag: + - '"C9EB638605D1C920C363DCB803684E77C1F26ABD312F17BFA69AD929C9E569C3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b204531a-320b-482b-862e-cf548928deb3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=106&$top=2303&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=108&$top=2301&$maxpagesize=2"}' + headers: + apim-request-id: + - 3cd160c5-d90f-4e26-85ee-3f1b662d1d63 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:37 GMT + etag: + - '"BD53E367EA190135207B57F74D66715BE06B60D6AAA3D9A20E41649FA88746FC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3cd160c5-d90f-4e26-85ee-3f1b662d1d63 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=108&$top=2301&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=110&$top=2299&$maxpagesize=2"}' + headers: + apim-request-id: + - fe83ef92-2130-4544-ac6d-67524951aabf + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:37 GMT + etag: + - '"1E83131200C81BC10BFBA61C59899E32F67BB6A12F488A5F6981D3BFF6D1615A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fe83ef92-2130-4544-ac6d-67524951aabf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=110&$top=2299&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=112&$top=2297&$maxpagesize=2"}' + headers: + apim-request-id: + - 58690bbd-e47d-4c81-ba58-c55b2bdc971f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:37 GMT + etag: + - '"8B5C0FFBFB30440D54C1E83E06E30B51627CE832F3BC99E3B8D6DBFCD74AB510"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 58690bbd-e47d-4c81-ba58-c55b2bdc971f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=112&$top=2297&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=114&$top=2295&$maxpagesize=2"}' + headers: + apim-request-id: + - 21531334-691d-4d3f-a3b6-0d11429fff81 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:37 GMT + etag: + - '"B0B5AAE717F00AE78774C78DD5FF595222501CD9F772EAEBF8FA026AA529403A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 21531334-691d-4d3f-a3b6-0d11429fff81 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=114&$top=2295&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=116&$top=2293&$maxpagesize=2"}' + headers: + apim-request-id: + - f4a19dd1-012a-4957-b2f8-3641edf93942 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:37 GMT + etag: + - '"80E57F0B2F8E2D6AB9BCA0048D5663ADD983CC5F0C1DE6D6F98280A14AFC089B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f4a19dd1-012a-4957-b2f8-3641edf93942 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=116&$top=2293&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=118&$top=2291&$maxpagesize=2"}' + headers: + apim-request-id: + - 8142da29-1701-4752-9692-9b56e20ca8a7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:38 GMT + etag: + - '"ABBB747968CBFE376936BAFDB435D9BDA9377CFA5537B83D04F3D683523717CF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8142da29-1701-4752-9692-9b56e20ca8a7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=118&$top=2291&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=120&$top=2289&$maxpagesize=2"}' + headers: + apim-request-id: + - d4d8ddbb-be95-4687-ac6f-697f882ac267 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:38 GMT + etag: + - '"258D7C12837B0ABDFE62B2712F99B0662250D9B4906CC051CCD4C243C6234E53"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d4d8ddbb-be95-4687-ac6f-697f882ac267 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=120&$top=2289&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=122&$top=2287&$maxpagesize=2"}' + headers: + apim-request-id: + - 77834a5f-fac5-4274-abac-e664503fb0c5 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:38 GMT + etag: + - '"CA219E4A588AF6D3879811E5C1767628BCAB3C42B04FDA1807FC577317171E04"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 77834a5f-fac5-4274-abac-e664503fb0c5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=122&$top=2287&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=124&$top=2285&$maxpagesize=2"}' + headers: + apim-request-id: + - e421ded8-e39f-4d0f-a7f6-2b096443938e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:38 GMT + etag: + - '"21F4B05D145A3C33AA7D6F9E2F8565265C504F8691CEB689F1F9756612889ED2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e421ded8-e39f-4d0f-a7f6-2b096443938e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=124&$top=2285&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=126&$top=2283&$maxpagesize=2"}' + headers: + apim-request-id: + - 1242ac71-7952-4813-b322-660293c56f9e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:38 GMT + etag: + - '"1217ABBBDA80E5880388432089E03DE4832712E37D31901692497D02B230803E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1242ac71-7952-4813-b322-660293c56f9e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=126&$top=2283&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=128&$top=2281&$maxpagesize=2"}' + headers: + apim-request-id: + - f4ea8a39-9636-4a02-856d-2951fc8e83b4 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:38 GMT + etag: + - '"D0E6351B92CE7CF26CE2623BE8ECCBBB29F056A324033055B0A15E6D3E8F0D39"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f4ea8a39-9636-4a02-856d-2951fc8e83b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=128&$top=2281&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=130&$top=2279&$maxpagesize=2"}' + headers: + apim-request-id: + - a1199c02-d899-43e3-8eef-1afc824c5f7b + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:40 GMT + etag: + - '"062CA19AB002284730B0CFC1251307BB283EFE949B7A6CA79716C74405331721"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1199c02-d899-43e3-8eef-1afc824c5f7b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=130&$top=2279&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=132&$top=2277&$maxpagesize=2"}' + headers: + apim-request-id: + - a9849283-45a0-459b-ace7-a4e63eb99192 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:40 GMT + etag: + - '"DC6ADF209C4EB2C90CBC80BBDED78882690912BA50F657AAFA12A7381F3E724D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a9849283-45a0-459b-ace7-a4e63eb99192 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=132&$top=2277&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=134&$top=2275&$maxpagesize=2"}' + headers: + apim-request-id: + - 1e4c9e3b-c275-43c7-bbbe-64c99af95c29 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:40 GMT + etag: + - '"F63CCFA7A491A6A27687DD03DD1951F924A9A687F7960738100875EB98880801"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1e4c9e3b-c275-43c7-bbbe-64c99af95c29 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=134&$top=2275&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=136&$top=2273&$maxpagesize=2"}' + headers: + apim-request-id: + - 7bbdbc37-01bd-4144-a1ea-b4d71ddfeb65 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:40 GMT + etag: + - '"A55CD24A83FA677758CBCE21E7A82313A178C8DBC50F063CA67CDD85FDC74CC4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7bbdbc37-01bd-4144-a1ea-b4d71ddfeb65 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=136&$top=2273&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=138&$top=2271&$maxpagesize=2"}' + headers: + apim-request-id: + - 6704d401-2fba-4eb3-aa52-18933a88aced + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:40 GMT + etag: + - '"19476266D8AB359DFFB52E1A48A1034133AA4215C05BB163C52860197D305C72"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6704d401-2fba-4eb3-aa52-18933a88aced + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=138&$top=2271&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=140&$top=2269&$maxpagesize=2"}' + headers: + apim-request-id: + - 4be8b4c8-c0e7-4f02-8286-992c83b1c0b8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:40 GMT + etag: + - '"445F7B6BD6B471AD59AEA218EF867E840ECD2739351A58B2AA7AC1242A1B0D9A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4be8b4c8-c0e7-4f02-8286-992c83b1c0b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=140&$top=2269&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=142&$top=2267&$maxpagesize=2"}' + headers: + apim-request-id: + - 9327145c-4525-44e3-9d59-60dff279a11b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:40 GMT + etag: + - '"A4265472C7854274FD6CE4E3E18850AC3CA10E3B4A3A289EC1DD415088DBAA4B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9327145c-4525-44e3-9d59-60dff279a11b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=142&$top=2267&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=144&$top=2265&$maxpagesize=2"}' + headers: + apim-request-id: + - 9694d456-42df-4d19-97b5-504481c8991a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:41 GMT + etag: + - '"CDF236E265B9D8DF141173D6404D86927A73A640EAADC7F2E98F5D0A4C07DAC4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9694d456-42df-4d19-97b5-504481c8991a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=144&$top=2265&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=146&$top=2263&$maxpagesize=2"}' + headers: + apim-request-id: + - 4b2e31f0-7fe4-431a-9769-9126d314a073 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:41 GMT + etag: + - '"DA90CB5AC6F4FB53A997FCE995273F9386294B27523FA343DBFCFE85588D1D1C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4b2e31f0-7fe4-431a-9769-9126d314a073 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=146&$top=2263&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=148&$top=2261&$maxpagesize=2"}' + headers: + apim-request-id: + - 82cb69a9-88bc-407d-9158-33777ba92381 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:41 GMT + etag: + - '"80E4C1FEA99E3CECFCD0E9489BA14A0E39321C4F00D09CA211D6CFE61C34E5E6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 82cb69a9-88bc-407d-9158-33777ba92381 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=148&$top=2261&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2259&$maxpagesize=2"}' + headers: + apim-request-id: + - 060513d7-f89e-4b08-8bf9-28016e9f70bc + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:41 GMT + etag: + - '"AC278D82D39090B872822ABD11715A1B1453204105F7235CC3C8C65802AC71F4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 060513d7-f89e-4b08-8bf9-28016e9f70bc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2259&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=152&$top=2257&$maxpagesize=2"}' + headers: + apim-request-id: + - d3e14603-c12c-4a28-b5e4-58c9610df803 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:41 GMT + etag: + - '"738FDD1FB212D3A7C332F324C4CDB5B3BB28E0EA781EFC499F5983DDC5C7DCC6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d3e14603-c12c-4a28-b5e4-58c9610df803 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=152&$top=2257&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=154&$top=2255&$maxpagesize=2"}' + headers: + apim-request-id: + - 8e17930b-7e9f-4b7d-a364-7f6ccc8c53bf + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:41 GMT + etag: + - '"12C0F8056CC5AD689ADDBB13D27856CF91EF75761D86D2E72D32F6D37A08A0DF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8e17930b-7e9f-4b7d-a364-7f6ccc8c53bf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=154&$top=2255&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=156&$top=2253&$maxpagesize=2"}' + headers: + apim-request-id: + - ae68fcd4-9e32-42dc-a4ad-5a6c07a08080 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:41 GMT + etag: + - '"252E7AE1C5081AA15A3797A08A303EC478E4E61B03DB39105DFF9918E6ABCF53"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ae68fcd4-9e32-42dc-a4ad-5a6c07a08080 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=156&$top=2253&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=158&$top=2251&$maxpagesize=2"}' + headers: + apim-request-id: + - 6c03c3c7-33b9-427a-9ff7-1f6cb564251c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:42 GMT + etag: + - '"4699D3A7AC7823C02D6FF0F85DDDD625C65764BEBF24128145282EBB8A7B3503"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6c03c3c7-33b9-427a-9ff7-1f6cb564251c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=158&$top=2251&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=160&$top=2249&$maxpagesize=2"}' + headers: + apim-request-id: + - 02be9dcb-27fd-4d61-a788-1552d4c71ba0 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:42 GMT + etag: + - '"A3823B2B7EAA755E738A918511EF69AFC3D916612500D9580593BC34969CE6F3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 02be9dcb-27fd-4d61-a788-1552d4c71ba0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=160&$top=2249&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=162&$top=2247&$maxpagesize=2"}' + headers: + apim-request-id: + - 3182e01e-05a5-4805-9c4a-3963034d5dd9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:42 GMT + etag: + - '"C5B67A8FCD0AB383C904117FA0761620BD8A9B1256235D6A4035245FCAF51BF2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3182e01e-05a5-4805-9c4a-3963034d5dd9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=162&$top=2247&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=164&$top=2245&$maxpagesize=2"}' + headers: + apim-request-id: + - a7365b01-2207-4e2c-af68-e0be0f224bd8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:42 GMT + etag: + - '"F0BB930F4696E6695165D2F7F3F5E76BF24F925F389CD18760ACFFD845EABA5A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a7365b01-2207-4e2c-af68-e0be0f224bd8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=164&$top=2245&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=166&$top=2243&$maxpagesize=2"}' + headers: + apim-request-id: + - 41375d73-5971-47d9-90d0-7a65ae339196 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:42 GMT + etag: + - '"3F4C73386A00297591467BC715824374AF35E037870C23CEA647C1258AF7799F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 41375d73-5971-47d9-90d0-7a65ae339196 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=166&$top=2243&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=168&$top=2241&$maxpagesize=2"}' + headers: + apim-request-id: + - 74b6dfb8-fc89-407f-bcdf-07ac038683b8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:42 GMT + etag: + - '"0CDC059860A9DD929548B0E0B9D5178ECA29582CC93F6B666DF3A6CE750CD0C1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 74b6dfb8-fc89-407f-bcdf-07ac038683b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=168&$top=2241&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=170&$top=2239&$maxpagesize=2"}' + headers: + apim-request-id: + - 80e23678-a0b0-4631-ac5e-91f4eaade2ae + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:43 GMT + etag: + - '"9499205585ECE3A941009DDCDFEB282CDD996FD287F00471CB21DF01D89EC8DF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 80e23678-a0b0-4631-ac5e-91f4eaade2ae + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=170&$top=2239&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=172&$top=2237&$maxpagesize=2"}' + headers: + apim-request-id: + - 2c2c2cb4-5fa8-4ff2-8c85-35021a839f2b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:43 GMT + etag: + - '"98D4362FBF43A5FB81181ACF98C0A83DD503ACAACB544A3318D5386C57E4637B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2c2c2cb4-5fa8-4ff2-8c85-35021a839f2b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=172&$top=2237&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=174&$top=2235&$maxpagesize=2"}' + headers: + apim-request-id: + - 4e2ac475-4fb5-4f9f-aaa8-4935cc0f3a62 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:43 GMT + etag: + - '"FB39179A3F13D16DB8A811D37DC58DC365DD5CA071A8C5319C0A83C27C642FAA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4e2ac475-4fb5-4f9f-aaa8-4935cc0f3a62 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=174&$top=2235&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=176&$top=2233&$maxpagesize=2"}' + headers: + apim-request-id: + - 70a92428-0688-4d92-afed-8706fe3fd7c9 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:43 GMT + etag: + - '"C6377C6EEE04F0B0C0EF394C54DFFF959B9C61C368F1C14C75AD85B8106A7114"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 70a92428-0688-4d92-afed-8706fe3fd7c9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=176&$top=2233&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=178&$top=2231&$maxpagesize=2"}' + headers: + apim-request-id: + - 19e64de2-4bcc-4521-b230-d92df4a848d2 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:43 GMT + etag: + - '"BF53E9CB6CF3E71DF31F97A48A9B976F75E8593986F3034D1411492C41CB08CA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 19e64de2-4bcc-4521-b230-d92df4a848d2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=178&$top=2231&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=180&$top=2229&$maxpagesize=2"}' + headers: + apim-request-id: + - 6c99073a-04b0-4f53-8461-91427ce818fc + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:43 GMT + etag: + - '"5A30F11BF8EC8929609747ACA92C585B82B800B31DA637100CBAADF6F8D138F9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6c99073a-04b0-4f53-8461-91427ce818fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=180&$top=2229&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=182&$top=2227&$maxpagesize=2"}' + headers: + apim-request-id: + - ff366bbf-f142-4a59-9858-5bfdc402ddad + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:44 GMT + etag: + - '"AE1A196CDB300DE1C12E44A32D55BBEA24036351277F7BBE37580E22BC788B0B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ff366bbf-f142-4a59-9858-5bfdc402ddad + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=182&$top=2227&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=184&$top=2225&$maxpagesize=2"}' + headers: + apim-request-id: + - 9bd0b5b1-5ea8-4c52-9036-4df8c2823187 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:44 GMT + etag: + - '"F29D0372EFD249563A7247558AC297040C434B40C992BB67AD0ACE18EFBE8270"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9bd0b5b1-5ea8-4c52-9036-4df8c2823187 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=184&$top=2225&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=186&$top=2223&$maxpagesize=2"}' + headers: + apim-request-id: + - d6ca0358-743d-4a2e-8d64-bbcb2c1d2abf + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:44 GMT + etag: + - '"68E25AA223361D02D1BF194A3983124100B0A6670586A56543470E9452CD7099"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d6ca0358-743d-4a2e-8d64-bbcb2c1d2abf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=186&$top=2223&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=188&$top=2221&$maxpagesize=2"}' + headers: + apim-request-id: + - cc6d5abe-6572-4171-aec1-0cb48dbb4a09 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:44 GMT + etag: + - '"951CDEBB8247D2560F715AFF82C31ADA98F99C883B0EFF3854E40992C17A93D1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cc6d5abe-6572-4171-aec1-0cb48dbb4a09 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=188&$top=2221&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=190&$top=2219&$maxpagesize=2"}' + headers: + apim-request-id: + - 4d761a67-04c1-4d17-9cf0-6a095bab298d + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:44 GMT + etag: + - '"E1C5C099555D430E2C16A2CF110712C12C1C452824391F73D1E733BDED6B99CE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4d761a67-04c1-4d17-9cf0-6a095bab298d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=190&$top=2219&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=192&$top=2217&$maxpagesize=2"}' + headers: + apim-request-id: + - c8b87202-2a5c-413e-b099-b62e27e4a569 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:44 GMT + etag: + - '"105892AC437D02F7F000C3D9A8C61025287248B35B5855E32EDAFDC6FA564B71"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c8b87202-2a5c-413e-b099-b62e27e4a569 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=192&$top=2217&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=194&$top=2215&$maxpagesize=2"}' + headers: + apim-request-id: + - 4a5eea14-162b-46a4-9b78-c8a688fa46b6 + cache-control: + - public,max-age=1 + content-length: + - '753' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:45 GMT + etag: + - '"4DD7CC0723930ACB475DEC57553DFCB74E8ABEDB0B4E2C4B65A8CF43746EB00B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4a5eea14-162b-46a4-9b78-c8a688fa46b6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=194&$top=2215&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=196&$top=2213&$maxpagesize=2"}' + headers: + apim-request-id: + - 3501235e-0e53-4757-b5fa-73642de3bc8a + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:45 GMT + etag: + - '"7956F9F80E761A99CCA032D66944FFF46E482EF1B7164CCD60EBF013982E61BF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3501235e-0e53-4757-b5fa-73642de3bc8a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=196&$top=2213&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=198&$top=2211&$maxpagesize=2"}' + headers: + apim-request-id: + - 335a2c5d-32fd-481b-8c8f-28eff21e77fa + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:45 GMT + etag: + - '"305A3537315602D46C24BE032F152FBC1872152B11D59AC3AD154E4183A87AF6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 335a2c5d-32fd-481b-8c8f-28eff21e77fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=198&$top=2211&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2209&$maxpagesize=2"}' + headers: + apim-request-id: + - efc3488a-c36b-41e7-a8cd-1dbef599bcc8 + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:45 GMT + etag: + - '"2D02763CD34B572B7E8A595893330360C43179836CF9D63BFDE2FA903AAE09A4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - efc3488a-c36b-41e7-a8cd-1dbef599bcc8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2209&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=202&$top=2207&$maxpagesize=2"}' + headers: + apim-request-id: + - ce03c4d1-a2ee-4a8b-a776-3c384e433f53 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:45 GMT + etag: + - '"8595495342C6EA3715CEFD6D2336373ADE29B16AE7094F9F2C26AA671634D2A6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ce03c4d1-a2ee-4a8b-a776-3c384e433f53 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=202&$top=2207&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=204&$top=2205&$maxpagesize=2"}' + headers: + apim-request-id: + - bf607ad6-b6b0-448e-a375-66496d1a4d75 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:45 GMT + etag: + - '"E319692452AF8D810318B68270D353BEEE3F938D4C48320DFDC038D86313B42C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bf607ad6-b6b0-448e-a375-66496d1a4d75 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=204&$top=2205&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=206&$top=2203&$maxpagesize=2"}' + headers: + apim-request-id: + - 806453b3-11cb-43ad-bf57-e0276ce1d7c2 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:46 GMT + etag: + - '"3DBCC21C4B7FA79D5523D8A15749AF90B0C3C48E4A1BB487D71CD446318F5FFE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 806453b3-11cb-43ad-bf57-e0276ce1d7c2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=206&$top=2203&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=208&$top=2201&$maxpagesize=2"}' + headers: + apim-request-id: + - 0633da22-2743-475f-9e9f-490556fe99b7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:46 GMT + etag: + - '"126FAA7CB5D8E7BC98522F53C756E69A28244073140E3D83953DA30ACDF9D509"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0633da22-2743-475f-9e9f-490556fe99b7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=208&$top=2201&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=210&$top=2199&$maxpagesize=2"}' + headers: + apim-request-id: + - 34655f60-cd10-4bcb-8f75-a5246b64162c + cache-control: + - public,max-age=1 + content-length: + - '743' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:46 GMT + etag: + - '"2477AD7A458EDE3C0F50DEABC509809DEC5AF6A0D19C77DBB2E89A6A56F9AC92"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 34655f60-cd10-4bcb-8f75-a5246b64162c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=210&$top=2199&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=212&$top=2197&$maxpagesize=2"}' + headers: + apim-request-id: + - 516d17d8-ca15-4728-aedb-532d919ec193 + cache-control: + - public,max-age=1 + content-length: + - '1016' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:46 GMT + etag: + - '"FBEAF08B0C66AA5B13CAE48FB10FEB550AD1AA084893B0FC98B91ECF38201A1B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 516d17d8-ca15-4728-aedb-532d919ec193 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=212&$top=2197&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=214&$top=2195&$maxpagesize=2"}' + headers: + apim-request-id: + - 858184c6-a253-4b6b-885b-1a766b074a1f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:46 GMT + etag: + - '"59315E6965C42B2D1E20DDB47B4C85B9F37C7B7B0CD42CFE32491480F3AB9926"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 858184c6-a253-4b6b-885b-1a766b074a1f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=214&$top=2195&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=216&$top=2193&$maxpagesize=2"}' + headers: + apim-request-id: + - 6a83367f-5482-484d-9a5d-f00610158207 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:46 GMT + etag: + - '"634B7E0A6C51D1114BCE7840EE254A6C09BCF9630CD2633E240E9EDA85DF7D93"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6a83367f-5482-484d-9a5d-f00610158207 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=216&$top=2193&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=218&$top=2191&$maxpagesize=2"}' + headers: + apim-request-id: + - 5acb287e-0cc6-4917-abb6-a5a00a3eb761 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:46 GMT + etag: + - '"348A5FC0D2C6DC97A9933B601C03D0D607E2025F1F9E8A7A75BE47751D7ED822"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5acb287e-0cc6-4917-abb6-a5a00a3eb761 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=218&$top=2191&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=220&$top=2189&$maxpagesize=2"}' + headers: + apim-request-id: + - 2204b543-4c60-4274-9492-ffe123f1acca + cache-control: + - public,max-age=1 + content-length: + - '743' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:47 GMT + etag: + - '"50300BA20963BDF74FC3BC7F9EE5C0D6B14A632959CE8E9472ACDE6FE209A219"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2204b543-4c60-4274-9492-ffe123f1acca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=220&$top=2189&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=222&$top=2187&$maxpagesize=2"}' + headers: + apim-request-id: + - a5c65e8e-d0c0-4968-8b00-0df706d87eb4 + cache-control: + - public,max-age=1 + content-length: + - '1017' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:47 GMT + etag: + - '"8EDF0847D858C2416A53618DB14ED0919D838E4F70C0B5246FDA7C630B5F4531"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a5c65e8e-d0c0-4968-8b00-0df706d87eb4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=222&$top=2187&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=224&$top=2185&$maxpagesize=2"}' + headers: + apim-request-id: + - 4dc1a069-6993-4cab-a1c2-2ea7f0dab861 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:47 GMT + etag: + - '"D40C4134FB5332CD8012348BF2F231CFD31FEA745C142221DB43E5F975C5FE20"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4dc1a069-6993-4cab-a1c2-2ea7f0dab861 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=224&$top=2185&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=226&$top=2183&$maxpagesize=2"}' + headers: + apim-request-id: + - c5039441-de1a-4f2f-a398-592f93712ec1 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:47 GMT + etag: + - '"0BCC98BF42A984BED718FEBAFEAB3D2E95170F31B6598E9B6EFDA265B8DDD1A9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c5039441-de1a-4f2f-a398-592f93712ec1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=226&$top=2183&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=228&$top=2181&$maxpagesize=2"}' + headers: + apim-request-id: + - e6b5b26f-ea01-42a9-8287-b9b5ccaa758d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:47 GMT + etag: + - '"0FB0D513C8F586FE3155B52581ACC5411DFB46963DFADF37B11847A7B9A26088"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e6b5b26f-ea01-42a9-8287-b9b5ccaa758d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=228&$top=2181&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=230&$top=2179&$maxpagesize=2"}' + headers: + apim-request-id: + - 11c9e332-ec09-4a1c-b9ac-0e12539c4cfb + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:47 GMT + etag: + - '"4DCA9CC9029081392E4C56E0992BD590E39C2D180AB2581363F5FC0E472843D8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 11c9e332-ec09-4a1c-b9ac-0e12539c4cfb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=230&$top=2179&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=232&$top=2177&$maxpagesize=2"}' + headers: + apim-request-id: + - ebfcbe66-c4f5-4762-9325-5da7b51af7e4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:48 GMT + etag: + - '"2D91239D58DFA1CD5398005CBE48B1F7356F4DF40843318155DC8AAB93F79817"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ebfcbe66-c4f5-4762-9325-5da7b51af7e4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=232&$top=2177&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=234&$top=2175&$maxpagesize=2"}' + headers: + apim-request-id: + - f35422ae-6bc6-46d9-ad50-2cf38ba673a0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:48 GMT + etag: + - '"D72871E2391F3CA1AC38AA12197E12A6B411D4615CF3E2241E76F3A765A6D13F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f35422ae-6bc6-46d9-ad50-2cf38ba673a0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=234&$top=2175&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=236&$top=2173&$maxpagesize=2"}' + headers: + apim-request-id: + - 716d1fd4-87c7-48ce-a989-9501d3f64874 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:48 GMT + etag: + - '"C723E153BB5B4CFCB2B35AE764DA7A29A392342819ABCEFFF4294AD1909A100D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 716d1fd4-87c7-48ce-a989-9501d3f64874 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=236&$top=2173&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=238&$top=2171&$maxpagesize=2"}' + headers: + apim-request-id: + - e01034f0-9b05-4a18-90e9-65ee1d29f8e7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:48 GMT + etag: + - '"85409FDD3AFEEDC8D3AACAB887954F0C936BAA8CCB970433C36ACE3774A57A4D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e01034f0-9b05-4a18-90e9-65ee1d29f8e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=238&$top=2171&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=240&$top=2169&$maxpagesize=2"}' + headers: + apim-request-id: + - e4a51062-f2f4-4205-8c75-d87a40135efe + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:48 GMT + etag: + - '"38C5DA559E239FC888FAF90C597052CFAC78EB31307F18BD449295DCC1FA0355"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e4a51062-f2f4-4205-8c75-d87a40135efe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=240&$top=2169&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=242&$top=2167&$maxpagesize=2"}' + headers: + apim-request-id: + - aefe249a-5512-4752-bd96-15d71d1a32b1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:48 GMT + etag: + - '"9E3274FAD3C628909E7BCD3DC4D3A8861A1097B41F535BE810BB8C78CC8F54B3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - aefe249a-5512-4752-bd96-15d71d1a32b1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=242&$top=2167&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=244&$top=2165&$maxpagesize=2"}' + headers: + apim-request-id: + - f39439db-24c4-4ad5-bd64-555fd484f6a1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:49 GMT + etag: + - '"FB4B115ABD4B77C3E2760B86316E2B1C6D8F1823B35C19A35C6917EF0148687A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f39439db-24c4-4ad5-bd64-555fd484f6a1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=244&$top=2165&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=246&$top=2163&$maxpagesize=2"}' + headers: + apim-request-id: + - 20bedf54-3b81-4688-bf27-ca35c0d3c92f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:49 GMT + etag: + - '"2185B3D273C57EC0EA34D823CD407FFCFE31E9231F5B21A31F37BFF0F0EE5C25"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 20bedf54-3b81-4688-bf27-ca35c0d3c92f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=246&$top=2163&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=248&$top=2161&$maxpagesize=2"}' + headers: + apim-request-id: + - 1bbe4140-6621-49fa-b6a8-4055582e5ab9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:49 GMT + etag: + - '"5219A58D85314DF6C9BC4E911AACDEDB052B554C9E3F4959119E63C287E48EDC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1bbe4140-6621-49fa-b6a8-4055582e5ab9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=248&$top=2161&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2159&$maxpagesize=2"}' + headers: + apim-request-id: + - eb937403-ecc2-4d57-8ccb-c9a7f56d58e7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:49 GMT + etag: + - '"37206A44E642E274F5D14134AB5A33E8DDEBD3EE1F78488C55D21112E9DE73AB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eb937403-ecc2-4d57-8ccb-c9a7f56d58e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2159&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=252&$top=2157&$maxpagesize=2"}' + headers: + apim-request-id: + - c1eb2d9f-c2d3-40ef-88c2-e3d2dc159e60 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:49 GMT + etag: + - '"11DF3E5F2A0F51E97E1E59E09D338330D27BAB9D2CF8B98C909362D627E5A4EA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c1eb2d9f-c2d3-40ef-88c2-e3d2dc159e60 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=252&$top=2157&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=254&$top=2155&$maxpagesize=2"}' + headers: + apim-request-id: + - df311187-0a76-471f-9cd3-c545abb4447e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:49 GMT + etag: + - '"D3E82B3E876B0C105F408A406293395B1045CF6D21A2F174FFB0C5CFB7208844"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - df311187-0a76-471f-9cd3-c545abb4447e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=254&$top=2155&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=256&$top=2153&$maxpagesize=2"}' + headers: + apim-request-id: + - a57c98dc-3b3d-4e8e-9cc0-7f1898ae5117 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:49 GMT + etag: + - '"9E2683CBF0B6667187F84CA3A828EF47864CBB89463E8125850760BE9018831E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a57c98dc-3b3d-4e8e-9cc0-7f1898ae5117 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=256&$top=2153&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=258&$top=2151&$maxpagesize=2"}' + headers: + apim-request-id: + - 03b853d0-1a6a-48ed-b5cf-4d03cfe7b263 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:50 GMT + etag: + - '"366A1FE213126FCD688A38DC2FC43252C9AD6D9DA52B909EF65E2A0062CA3A70"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 03b853d0-1a6a-48ed-b5cf-4d03cfe7b263 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=258&$top=2151&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=260&$top=2149&$maxpagesize=2"}' + headers: + apim-request-id: + - 4d57955a-8242-44f8-ae81-b93df91d16ac + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:50 GMT + etag: + - '"796A9EC0BC38585C2F79521CC8ED12E7D3CC01743D75E93A012E87842D3A0B82"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4d57955a-8242-44f8-ae81-b93df91d16ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=260&$top=2149&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=262&$top=2147&$maxpagesize=2"}' + headers: + apim-request-id: + - 783211f7-d7d9-4819-94ef-5c94f7a1a4f8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:50 GMT + etag: + - '"704B6270D2A7C42013EB8169F268FD4FBC3CC8A43BC5FD0113DEF4F29BA7DFC1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 783211f7-d7d9-4819-94ef-5c94f7a1a4f8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=262&$top=2147&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=264&$top=2145&$maxpagesize=2"}' + headers: + apim-request-id: + - 68281032-3d6e-45fb-b502-92061e1213f7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:50 GMT + etag: + - '"3FA00F5121BE46E2EDA09130C28FFA8E9CABDCA6BC8774BBE6AA51850C0C3E6B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 68281032-3d6e-45fb-b502-92061e1213f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=264&$top=2145&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=266&$top=2143&$maxpagesize=2"}' + headers: + apim-request-id: + - 8d0144f1-eead-439a-9376-55e5fe2c419b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:50 GMT + etag: + - '"8ABB3B7E20AF16811E4CF4B390D11F7EC3A3FED66F50B8191B94D4F1E7ACFB08"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8d0144f1-eead-439a-9376-55e5fe2c419b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=266&$top=2143&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=268&$top=2141&$maxpagesize=2"}' + headers: + apim-request-id: + - aea7cea8-3ccd-43c0-a180-f01fed6d689d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:50 GMT + etag: + - '"77BD0C51D23A62999C29E3110B81DC2372137EB4CDFB8E3EA99611CFE5A74756"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - aea7cea8-3ccd-43c0-a180-f01fed6d689d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=268&$top=2141&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=270&$top=2139&$maxpagesize=2"}' + headers: + apim-request-id: + - c9d2147d-5a37-49a4-af3a-d636fc4044a7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:51 GMT + etag: + - '"AA0D9B3DE1AD1BAD198DAA649CCAA079C43AB1CECFE54664091645C114DE4216"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c9d2147d-5a37-49a4-af3a-d636fc4044a7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=270&$top=2139&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=272&$top=2137&$maxpagesize=2"}' + headers: + apim-request-id: + - 4719cfa6-2c86-49be-8c2d-fcc4bb5a71e7 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:51 GMT + etag: + - '"DF43D36C79EE59B717764502BEA4FC8314F1A9A3CA842C2DE33375CFDD0DAA63"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4719cfa6-2c86-49be-8c2d-fcc4bb5a71e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=272&$top=2137&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=274&$top=2135&$maxpagesize=2"}' + headers: + apim-request-id: + - 1ef53e8c-5c39-4fb3-a8d9-0a7d45d44ff5 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:51 GMT + etag: + - '"5FA778755BAA284EA20F584C40216967B6D21FDA440FBDF03BA72D71839B9790"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1ef53e8c-5c39-4fb3-a8d9-0a7d45d44ff5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=274&$top=2135&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=276&$top=2133&$maxpagesize=2"}' + headers: + apim-request-id: + - 7b44c980-c029-4e2a-8702-849d42ca1162 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:51 GMT + etag: + - '"536026D58F582232EDBA5B58AECEF95582F025A8F74A36CFBB87F9A8D34DFAE3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7b44c980-c029-4e2a-8702-849d42ca1162 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=276&$top=2133&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=278&$top=2131&$maxpagesize=2"}' + headers: + apim-request-id: + - 7cf92ca4-6161-42d5-821e-15cc14146bc6 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:51 GMT + etag: + - '"E8A2109F455E08E9910D82817768D414B8DFAD137918D1CE68BF269401518560"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7cf92ca4-6161-42d5-821e-15cc14146bc6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=278&$top=2131&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=280&$top=2129&$maxpagesize=2"}' + headers: + apim-request-id: + - 46bd623a-82de-4705-b5cf-87f2f2877737 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:51 GMT + etag: + - '"7B74F7698D16EC1DB151E43BEE224C6826F820FD88D0472361D82AF6D450BBEB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 46bd623a-82de-4705-b5cf-87f2f2877737 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=280&$top=2129&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=282&$top=2127&$maxpagesize=2"}' + headers: + apim-request-id: + - 96854979-b176-40a7-9c1f-000a3eb6d564 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:52 GMT + etag: + - '"6381097756522896B7F8B966F708C6EFAEC5D2E345E9CB67272FD8E1CE1181F9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 96854979-b176-40a7-9c1f-000a3eb6d564 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=282&$top=2127&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=284&$top=2125&$maxpagesize=2"}' + headers: + apim-request-id: + - 99a4317b-bae7-45bd-b9af-7c979e8281ca + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:52 GMT + etag: + - '"4259C477905BC9D75A1FDEB862AEF495CA82F1C1C9B56901E4030936DADFA16F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 99a4317b-bae7-45bd-b9af-7c979e8281ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=284&$top=2125&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=286&$top=2123&$maxpagesize=2"}' + headers: + apim-request-id: + - 18168468-c431-4ff7-abaa-c1e245f64203 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:52 GMT + etag: + - '"D43F1118902D3AA3376F04E4725E67DEA651B07FE700E25914A2450C69EDEC96"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 18168468-c431-4ff7-abaa-c1e245f64203 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=286&$top=2123&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=288&$top=2121&$maxpagesize=2"}' + headers: + apim-request-id: + - a962708c-2f36-453c-871e-d604a44027c4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:52 GMT + etag: + - '"930594EC993BD5D31384AC37E4585C571FFA771A73177E6C9EAF394E4A6C7216"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a962708c-2f36-453c-871e-d604a44027c4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=288&$top=2121&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=290&$top=2119&$maxpagesize=2"}' + headers: + apim-request-id: + - 8553bb0e-194b-4579-a89c-d3a179b10f0f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:52 GMT + etag: + - '"B1AAEED632DC3D34C594F36A6D5BD24292539C6761D580299C7506DBCE36F5E1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8553bb0e-194b-4579-a89c-d3a179b10f0f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=290&$top=2119&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=292&$top=2117&$maxpagesize=2"}' + headers: + apim-request-id: + - 3ea483db-f65e-4ef0-bd8e-cda379fbd459 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:52 GMT + etag: + - '"22897250B34738671F1490AC857D279D4F0C3E7DCBDBEB075D4CB18CEAA9F76D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3ea483db-f65e-4ef0-bd8e-cda379fbd459 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=292&$top=2117&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=294&$top=2115&$maxpagesize=2"}' + headers: + apim-request-id: + - dd1eaad3-994f-40c8-84d0-708867f3b265 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:53 GMT + etag: + - '"E539CC65B97245E474DB7F392E8B3DFA79A76C64684D0FC758842BE68ACB9375"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dd1eaad3-994f-40c8-84d0-708867f3b265 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=294&$top=2115&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=296&$top=2113&$maxpagesize=2"}' + headers: + apim-request-id: + - 28261797-1db3-4edb-817c-53425da22ba4 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:53 GMT + etag: + - '"FCFC4E99460123D0425D5D745A41D0C6F923713A4E0F395357E075C8843B0468"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 28261797-1db3-4edb-817c-53425da22ba4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=296&$top=2113&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=298&$top=2111&$maxpagesize=2"}' + headers: + apim-request-id: + - cd375a34-62ec-4611-8553-6a955dc0b602 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:53 GMT + etag: + - '"AD47A7E1000D2E430336CE7F961E570D434C61C2298ED1E0D7F5E835B46BCBEF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cd375a34-62ec-4611-8553-6a955dc0b602 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=298&$top=2111&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2109&$maxpagesize=2"}' + headers: + apim-request-id: + - e4e491d1-1c7f-488f-b867-ce0122ef03f6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:53 GMT + etag: + - '"4C9127AA99377D185D1F1D0FE86A0999C57E9ABB09137A90E5DCA11FA2F117B1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e4e491d1-1c7f-488f-b867-ce0122ef03f6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2109&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=302&$top=2107&$maxpagesize=2"}' + headers: + apim-request-id: + - 8ca93843-2a10-4f94-b481-e3a1c4349e5f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:53 GMT + etag: + - '"592ACDD771FF60ADBCF2B3C912C553BE89F9B615EA1F8B68F646ED70CD45E7FD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8ca93843-2a10-4f94-b481-e3a1c4349e5f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=302&$top=2107&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=304&$top=2105&$maxpagesize=2"}' + headers: + apim-request-id: + - 29b701ca-e0ff-4e6b-a6c0-ba5aee6e2194 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:53 GMT + etag: + - '"721C7DE04DED3CF7523F8E2931E8546134A9269C35AA464CD18196F3914760DC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 29b701ca-e0ff-4e6b-a6c0-ba5aee6e2194 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=304&$top=2105&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=306&$top=2103&$maxpagesize=2"}' + headers: + apim-request-id: + - 11dae298-ed11-4b59-bed5-87e98ec7d960 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:54 GMT + etag: + - '"6D2917BFDD0E102E55BCBFF461E92B2B1BA1898A0F11735648CA7D04ADDFA8FA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 11dae298-ed11-4b59-bed5-87e98ec7d960 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=306&$top=2103&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=308&$top=2101&$maxpagesize=2"}' + headers: + apim-request-id: + - 28614fc3-645e-4842-98c9-219354a7ba1a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:54 GMT + etag: + - '"662D7D4E7C61D4D42E123E53702B59F634DB9827FAAD009B8BACE28BD6365411"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 28614fc3-645e-4842-98c9-219354a7ba1a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=308&$top=2101&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=310&$top=2099&$maxpagesize=2"}' + headers: + apim-request-id: + - 2d1f15f5-a010-4399-ab75-59ad88ae8190 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:54 GMT + etag: + - '"CFA3CF616C81969FAE83561B9DD74A8DCD300D48F6CAEA1C14E6C60F4EAE6DF9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2d1f15f5-a010-4399-ab75-59ad88ae8190 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=310&$top=2099&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=312&$top=2097&$maxpagesize=2"}' + headers: + apim-request-id: + - fb0ae72e-be3f-46c8-9181-bab8bedd460f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:54 GMT + etag: + - '"D2A62E488C0D84175962E0BA5CB19ED9FB69724F4C576C7F1042FA212A89C04B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fb0ae72e-be3f-46c8-9181-bab8bedd460f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=312&$top=2097&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=314&$top=2095&$maxpagesize=2"}' + headers: + apim-request-id: + - 0a36dfc2-c6fd-4452-b7d9-3a77158283dc + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:54 GMT + etag: + - '"35DCDE4F64AFA46820DF04B0F3F17F0454A6D0CBD590CD5DFA0F71F5FCC4F27C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0a36dfc2-c6fd-4452-b7d9-3a77158283dc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=314&$top=2095&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=316&$top=2093&$maxpagesize=2"}' + headers: + apim-request-id: + - e14614b9-7c36-4d47-834e-f6aee9c1f9ac + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:54 GMT + etag: + - '"8CC68D0BCC31E3CF9C9E8D06A2EDC9C074ABA2CAE438919949321713E6668118"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e14614b9-7c36-4d47-834e-f6aee9c1f9ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=316&$top=2093&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=318&$top=2091&$maxpagesize=2"}' + headers: + apim-request-id: + - 186a60a4-f796-40ce-89e8-70959a0a8d7b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:55 GMT + etag: + - '"03665CFE354F37F776BB86A61A193161105C05BB08A02F469F436746B6F46B06"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 186a60a4-f796-40ce-89e8-70959a0a8d7b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=318&$top=2091&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=320&$top=2089&$maxpagesize=2"}' + headers: + apim-request-id: + - 922303d4-dc7d-4085-9724-6ea71bc9fd93 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:55 GMT + etag: + - '"C8D180ED6C164CBE1D12F3C5BD361F42DC1FB00C40275A8D77CADDA9D43DE518"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 922303d4-dc7d-4085-9724-6ea71bc9fd93 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=320&$top=2089&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=322&$top=2087&$maxpagesize=2"}' + headers: + apim-request-id: + - b07ee206-65d5-424a-bb2a-74a62da49fb1 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:55 GMT + etag: + - '"5B3D9A83B9E8F76C7F171BCAC2C85B4DD70C87A9362CB33DF47BEFD16DBA84A7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b07ee206-65d5-424a-bb2a-74a62da49fb1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=322&$top=2087&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=324&$top=2085&$maxpagesize=2"}' + headers: + apim-request-id: + - 7cd026b4-1db3-4f8c-a215-f062c7ebdc92 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:55 GMT + etag: + - '"CA404AF6ACBC70CDCE2707C7D7332AF74E989FBF7FBD3ED3BDDA3C0AEB81B090"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7cd026b4-1db3-4f8c-a215-f062c7ebdc92 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=324&$top=2085&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=326&$top=2083&$maxpagesize=2"}' + headers: + apim-request-id: + - 25ccdd3d-51ed-4652-a47a-3219b616dc48 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:55 GMT + etag: + - '"D45CAFE43C5E1DE63750DE860208EF065890B11C09BA40F7A72AC68B26BB6C5F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 25ccdd3d-51ed-4652-a47a-3219b616dc48 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=326&$top=2083&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=328&$top=2081&$maxpagesize=2"}' + headers: + apim-request-id: + - c598bf91-a863-446a-ac51-c02a927894a3 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:55 GMT + etag: + - '"E2E24ACC3E117383C56D4D34B7D0CCFDF480544E7207B3DB9AA894689DE02C51"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c598bf91-a863-446a-ac51-c02a927894a3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=328&$top=2081&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=330&$top=2079&$maxpagesize=2"}' + headers: + apim-request-id: + - 24905b7a-ca75-4d79-ae98-9c2d80c1a962 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:56 GMT + etag: + - '"BCA9F8F97F1B47E83CFAF2B5CF55458345DD52E92644DCFCDA9C7F4E1F1CD8D6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 24905b7a-ca75-4d79-ae98-9c2d80c1a962 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=330&$top=2079&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=332&$top=2077&$maxpagesize=2"}' + headers: + apim-request-id: + - f7f9b1e3-a297-4a9c-ab0b-ff2b21ac256c + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:56 GMT + etag: + - '"FBF756F0D17C44D7E57767BEB7C278B7AF24A0004C82F343660AAB1859118EF4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f7f9b1e3-a297-4a9c-ab0b-ff2b21ac256c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=332&$top=2077&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=334&$top=2075&$maxpagesize=2"}' + headers: + apim-request-id: + - 6da57f84-4966-4474-bd9e-b158d276b1ca + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:56 GMT + etag: + - '"1C3BCA80C20F361CF1C78CF17F2BA78798AF61D5EFDA3EB5D8D3CD0245103DE2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6da57f84-4966-4474-bd9e-b158d276b1ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=334&$top=2075&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=336&$top=2073&$maxpagesize=2"}' + headers: + apim-request-id: + - 414d5c1b-0978-4741-8ec8-d2db34995982 + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:56 GMT + etag: + - '"0CE18B7FC409D97BB68A3D72EEE188B50127EF7A69AB6EDD511D51701016049A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 414d5c1b-0978-4741-8ec8-d2db34995982 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=336&$top=2073&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=338&$top=2071&$maxpagesize=2"}' + headers: + apim-request-id: + - 3f507cca-fd29-4782-9f55-035a5ceaefcb + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:56 GMT + etag: + - '"B71D013C4D066D7FD40E3205FBB0F2566BCCF23F59ECBAF9394C7E3FDB359407"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3f507cca-fd29-4782-9f55-035a5ceaefcb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=338&$top=2071&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=340&$top=2069&$maxpagesize=2"}' + headers: + apim-request-id: + - d7055dbc-0470-49d8-9d9a-014f9af6e751 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:56 GMT + etag: + - '"A63BBFC69771F5DE7CB1B75DA5F61EE82C0538EBA4E0A468585A21DFA99005BA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d7055dbc-0470-49d8-9d9a-014f9af6e751 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=340&$top=2069&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=342&$top=2067&$maxpagesize=2"}' + headers: + apim-request-id: + - 5277cc96-34e2-4349-9875-a15bba77f9fc + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:57 GMT + etag: + - '"CB40D27E3EDDEB3708B7E78165E95AD44D9DE9FA57FEE8962DA3B0C0E8D5791D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5277cc96-34e2-4349-9875-a15bba77f9fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=342&$top=2067&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=344&$top=2065&$maxpagesize=2"}' + headers: + apim-request-id: + - 2b87a9e4-4ce6-4a8e-84d5-d4f9bb25bbbb + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:57 GMT + etag: + - '"2217FEF28D15CE7906C185710F3D3C2281322A35842AEAA65CFFEFD705577AAD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2b87a9e4-4ce6-4a8e-84d5-d4f9bb25bbbb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=344&$top=2065&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=346&$top=2063&$maxpagesize=2"}' + headers: + apim-request-id: + - c68833a1-4388-4885-a15f-08106c6ee981 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:57 GMT + etag: + - '"14A9158AA8D7383DFA43BA80B512FD33DE919D163F0C1933CF4B9815DAE78947"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c68833a1-4388-4885-a15f-08106c6ee981 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=346&$top=2063&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=348&$top=2061&$maxpagesize=2"}' + headers: + apim-request-id: + - e0f8788b-66f2-447c-9d5e-3518ec5838d1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:57 GMT + etag: + - '"F70B535E95B700B9BE9166C13CA08AAA591621333A410F29B1EF46624F6869DC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e0f8788b-66f2-447c-9d5e-3518ec5838d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=348&$top=2061&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2059&$maxpagesize=2"}' + headers: + apim-request-id: + - fe1914c5-cdac-41b1-a0f7-15ef0f3b393f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:57 GMT + etag: + - '"1CCFFE8BC0BD91BD5A6DD4E80500BBCD878173CBC8C355CB3CB4DEEBAB737884"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fe1914c5-cdac-41b1-a0f7-15ef0f3b393f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2059&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=352&$top=2057&$maxpagesize=2"}' + headers: + apim-request-id: + - 9fb21b1f-4e1e-4278-96c9-e288655d7501 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:57 GMT + etag: + - '"23272455EECE8CA66F2B78826874B4797BA80C94329427EAAF9685D3B4463F2B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9fb21b1f-4e1e-4278-96c9-e288655d7501 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=352&$top=2057&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=354&$top=2055&$maxpagesize=2"}' + headers: + apim-request-id: + - 48ba5b6c-e426-442d-95ff-cda5b9c5ba9f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:58 GMT + etag: + - '"96414F860BA2DA89307FEBB5B6554E264C6D3D859C8479769FA480995CB81F8F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 48ba5b6c-e426-442d-95ff-cda5b9c5ba9f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=354&$top=2055&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=356&$top=2053&$maxpagesize=2"}' + headers: + apim-request-id: + - 60ef2709-2cc5-47a7-803b-dc373cffcfe9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:58 GMT + etag: + - '"DEA05A20CCFEE0F374DF4B4D1D5CEA5C5A4FBC0392F2F0B1F0F6DA0507407B29"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 60ef2709-2cc5-47a7-803b-dc373cffcfe9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=356&$top=2053&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=358&$top=2051&$maxpagesize=2"}' + headers: + apim-request-id: + - 6baa9e43-8919-4442-ad4f-20c2bb2d3957 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:58 GMT + etag: + - '"DAFE1585740BEBC0AC6ABB1AE0C017464E3FEB347D7E34993EC4D1638623B208"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6baa9e43-8919-4442-ad4f-20c2bb2d3957 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=358&$top=2051&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=360&$top=2049&$maxpagesize=2"}' + headers: + apim-request-id: + - 4b3586ea-fcbd-4541-98b8-7cde860d89fd + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:58 GMT + etag: + - '"7BF5843D59C2F1EDC6B72487695E7FB1678B8626FC26C8DBC8CE0B6F25D9B868"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4b3586ea-fcbd-4541-98b8-7cde860d89fd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=360&$top=2049&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=362&$top=2047&$maxpagesize=2"}' + headers: + apim-request-id: + - 8192b569-d0a3-4593-b3f7-0c9a8b1143d3 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:58 GMT + etag: + - '"DA1A9D91B5C0A1398C59BF36DD65235E23998B9C4806EC968A6FAC5A76F332C3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8192b569-d0a3-4593-b3f7-0c9a8b1143d3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=362&$top=2047&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=364&$top=2045&$maxpagesize=2"}' + headers: + apim-request-id: + - c611346c-625c-4e0a-ac62-224e065ed214 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:58 GMT + etag: + - '"FA3EFCEF470246061F09155EA7B93F978B319775A0EAE91946284F19B2C98CA1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c611346c-625c-4e0a-ac62-224e065ed214 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=364&$top=2045&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=366&$top=2043&$maxpagesize=2"}' + headers: + apim-request-id: + - 90805ddc-c811-4e2e-9500-86f0dd86712e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:59 GMT + etag: + - '"46EBCF510234F90E95193CC4CA6EFA8FF42F7C5A7C0FA65142995CCF323D67B7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 90805ddc-c811-4e2e-9500-86f0dd86712e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=366&$top=2043&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=368&$top=2041&$maxpagesize=2"}' + headers: + apim-request-id: + - d1a108c5-7be0-45cf-b69a-7b4603fb310e + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:59 GMT + etag: + - '"9BB09E288030DBA8E2F16DEA20F9DFA740600E8F7FB2F91987CE14EB6DF11F93"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d1a108c5-7be0-45cf-b69a-7b4603fb310e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=368&$top=2041&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=370&$top=2039&$maxpagesize=2"}' + headers: + apim-request-id: + - 91631ea0-a33b-4826-bc5e-5cb4f98f5db0 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:59 GMT + etag: + - '"0CA605F6CD24E3C5EBEDA82C69C235BFD2C1CF0C29998792C27F5F0EB411DE5C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 91631ea0-a33b-4826-bc5e-5cb4f98f5db0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=370&$top=2039&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=372&$top=2037&$maxpagesize=2"}' + headers: + apim-request-id: + - a1c9e29d-e9c6-4d95-a611-838a591a284a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:59 GMT + etag: + - '"8D39B4B68343D0685C19B8E6E01752D6BD5662C373673FECB5BA6E4DA674AC44"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1c9e29d-e9c6-4d95-a611-838a591a284a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=372&$top=2037&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=374&$top=2035&$maxpagesize=2"}' + headers: + apim-request-id: + - 9898aece-6d57-4896-9e4c-2c7fb23e3c94 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:59 GMT + etag: + - '"86E2CBD2F88ADC2460417E2739E248664825F3B28DDA5600D6EF5D0A551B696F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9898aece-6d57-4896-9e4c-2c7fb23e3c94 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=374&$top=2035&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=376&$top=2033&$maxpagesize=2"}' + headers: + apim-request-id: + - 5c1b92dd-f769-4583-ba32-5a072a67a4bc + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:50:59 GMT + etag: + - '"E33C2C2F0494746CD6DCC1546918F06089726202C51DE1409EDA5FB1A7974C03"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5c1b92dd-f769-4583-ba32-5a072a67a4bc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=376&$top=2033&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=378&$top=2031&$maxpagesize=2"}' + headers: + apim-request-id: + - 9933328f-8e69-4540-977c-08d351901f69 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:00 GMT + etag: + - '"191B993D98D9214AAF095BFBDECAA30B5F0DABC4F8B6F329043C9A7EDE9F1BE1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9933328f-8e69-4540-977c-08d351901f69 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=378&$top=2031&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=380&$top=2029&$maxpagesize=2"}' + headers: + apim-request-id: + - 690bca49-5d7a-47c3-982b-53fe109d8026 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:00 GMT + etag: + - '"EDE0CBFF989B1C312168EE8757FC4BFFF4CE339302981C0536AA0687F56B45A6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 690bca49-5d7a-47c3-982b-53fe109d8026 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=380&$top=2029&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=382&$top=2027&$maxpagesize=2"}' + headers: + apim-request-id: + - d989f7b7-653b-4a71-a4b5-24c84c217397 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:00 GMT + etag: + - '"4A0C9595FDD3D2C05113673BE3E03FEA49150D11ADDCAD8271930F41DC695FBC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d989f7b7-653b-4a71-a4b5-24c84c217397 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=382&$top=2027&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=384&$top=2025&$maxpagesize=2"}' + headers: + apim-request-id: + - 6ef06f3a-f383-4b19-b7b8-8ffc1ebada7e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:00 GMT + etag: + - '"C5CB4B59D33151DEDC7FB55D7D8F5331741169E7EAA82CF4B7BE1063AF3D695D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6ef06f3a-f383-4b19-b7b8-8ffc1ebada7e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=384&$top=2025&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=386&$top=2023&$maxpagesize=2"}' + headers: + apim-request-id: + - 16bc26d5-4f36-4067-8c8b-46bb78a9df96 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:00 GMT + etag: + - '"1F641C2FE4921A49EFE4CB5FBFCCF99CEB4950BC29008B57B3DA87B85ED11644"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 16bc26d5-4f36-4067-8c8b-46bb78a9df96 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=386&$top=2023&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=388&$top=2021&$maxpagesize=2"}' + headers: + apim-request-id: + - 5ceeb8c6-2c14-42c2-a364-911a9f0e6046 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:00 GMT + etag: + - '"8FD250D16BA871D49B99F8FC049DEE8AD68E53E8B6CF5C77054348CA87B9B7D7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5ceeb8c6-2c14-42c2-a364-911a9f0e6046 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=388&$top=2021&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=390&$top=2019&$maxpagesize=2"}' + headers: + apim-request-id: + - 3d2a72f2-017a-4fba-b175-e3292c600058 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:01 GMT + etag: + - '"6B6FEE80C61CCEA413BFA84B3CC15042A54E913A71A8AA998C173AC56218472E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3d2a72f2-017a-4fba-b175-e3292c600058 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=390&$top=2019&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=392&$top=2017&$maxpagesize=2"}' + headers: + apim-request-id: + - 0ad43205-3d59-460c-bb96-a29f6e895414 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:01 GMT + etag: + - '"487F88F4097E0A62D0C1FC40D47DCFA2E2FCDDA2B71D9679EAF694E3E5D75E5C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0ad43205-3d59-460c-bb96-a29f6e895414 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=392&$top=2017&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=394&$top=2015&$maxpagesize=2"}' + headers: + apim-request-id: + - 3574c3e2-f2e8-4962-b324-6738e88d6b0d + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:01 GMT + etag: + - '"C04B2D3FC862576763DAE3A6579ABF5D6D44381ED2A03B59C32D6D2D03C44D5D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3574c3e2-f2e8-4962-b324-6738e88d6b0d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=394&$top=2015&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=396&$top=2013&$maxpagesize=2"}' + headers: + apim-request-id: + - 762c3d16-bb5d-48f3-b6d2-cb83099068f7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:01 GMT + etag: + - '"857011F5C000758B3B45DC2FD5EA7F14EFDBB0F3DBAF5675822EBFFF75B5EBC0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 762c3d16-bb5d-48f3-b6d2-cb83099068f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=396&$top=2013&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=398&$top=2011&$maxpagesize=2"}' + headers: + apim-request-id: + - 7814be21-8e13-432b-bc95-c4875b347316 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:01 GMT + etag: + - '"8270A8280189B83D6DAB88D2CBEA4F2135C5C6D27171A83EEFABDE93F6FE92E9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7814be21-8e13-432b-bc95-c4875b347316 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=398&$top=2011&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2009&$maxpagesize=2"}' + headers: + apim-request-id: + - c41e10e3-90b6-413d-9c6f-4b204c86a0a9 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:01 GMT + etag: + - '"032CEB566ED5AA6F486861837ACA4D9AA8D3D61749B22DC07A833A2E3A83B193"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c41e10e3-90b6-413d-9c6f-4b204c86a0a9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2009&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=402&$top=2007&$maxpagesize=2"}' + headers: + apim-request-id: + - e5195711-5f4f-47bc-bd19-512cedad5ab8 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:02 GMT + etag: + - '"D9FD3C4DB507DD8CD612CEFBCFBC16C39726A9A20FA6B23EC07582066153C78A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5195711-5f4f-47bc-bd19-512cedad5ab8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=402&$top=2007&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=404&$top=2005&$maxpagesize=2"}' + headers: + apim-request-id: + - 0863cea0-8113-430b-9247-229924dc4443 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:02 GMT + etag: + - '"5EC9393FCD30692E68B0A1D845ECFBFC9EF580FE9797BF9E3DFC657A69352C07"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0863cea0-8113-430b-9247-229924dc4443 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=404&$top=2005&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=406&$top=2003&$maxpagesize=2"}' + headers: + apim-request-id: + - 798ad6b0-7b4c-4842-aee8-ff7a4b3bd637 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:02 GMT + etag: + - '"CFEFE376EA2220F1B8CC42E873F6A9B2C45CA1BD159930FFA58C0D0286C8C516"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 798ad6b0-7b4c-4842-aee8-ff7a4b3bd637 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=406&$top=2003&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=408&$top=2001&$maxpagesize=2"}' + headers: + apim-request-id: + - 001e9ddf-38cb-47ed-ae5b-0a2669e25500 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:02 GMT + etag: + - '"9A9BEA8F0CDA358592183CE304867703552CF5D2DBF7396A7F9107B736F6E2D3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 001e9ddf-38cb-47ed-ae5b-0a2669e25500 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=408&$top=2001&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=410&$top=1999&$maxpagesize=2"}' + headers: + apim-request-id: + - e642fd33-d39b-4e0a-bfd7-6db4dae06ff0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:02 GMT + etag: + - '"D8AB5ED225205F0A5ACC8BBC8AE92FF0338D34F8B178CC0CDE6148389EE63D90"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e642fd33-d39b-4e0a-bfd7-6db4dae06ff0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=410&$top=1999&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=412&$top=1997&$maxpagesize=2"}' + headers: + apim-request-id: + - a03213fd-aeed-4853-9eec-9e4b0015cf1d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:02 GMT + etag: + - '"4BD14DE2447F5D61D6401F8C52083FB1BA1B2F03207A8D490EE7232507F3F1BE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a03213fd-aeed-4853-9eec-9e4b0015cf1d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=412&$top=1997&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=414&$top=1995&$maxpagesize=2"}' + headers: + apim-request-id: + - 86e4650c-e58c-4962-afb3-4fd7ad606973 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:03 GMT + etag: + - '"01D48C7B800B9EB22941BEE5840BD7C8570438CE2B69554DEC9F400387EE9914"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 86e4650c-e58c-4962-afb3-4fd7ad606973 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=414&$top=1995&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=416&$top=1993&$maxpagesize=2"}' + headers: + apim-request-id: + - e0c9b9ae-10c4-42c2-b342-138d5e35eea7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:03 GMT + etag: + - '"9DF4BA64D5F281FFB9305A5A019875C6A2B626B9ECB2C75176D055EBA00ACAA2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e0c9b9ae-10c4-42c2-b342-138d5e35eea7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=416&$top=1993&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=418&$top=1991&$maxpagesize=2"}' + headers: + apim-request-id: + - ab4773a5-d8c6-429b-b541-12d7bd14d0e4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:03 GMT + etag: + - '"C64FF0AA34EE05710F4169C22509E57F5E11E741EE30E0AA4A109D6E68AA2D2B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ab4773a5-d8c6-429b-b541-12d7bd14d0e4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=418&$top=1991&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=420&$top=1989&$maxpagesize=2"}' + headers: + apim-request-id: + - ad4385ae-d4e4-4b67-9823-a4309974ea90 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:03 GMT + etag: + - '"25A222950FDAF0EEF8EB2321668EB530D08E74B14748A5A5CC579C001E0F91DD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ad4385ae-d4e4-4b67-9823-a4309974ea90 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=420&$top=1989&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=422&$top=1987&$maxpagesize=2"}' + headers: + apim-request-id: + - cd6510c5-3955-4e0c-99b9-473520c3b99f + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:03 GMT + etag: + - '"91B428DEECFF6052F9A2F7009B013C721EE2C32BFBE78C202587C42D6ABDEB62"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cd6510c5-3955-4e0c-99b9-473520c3b99f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=422&$top=1987&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=424&$top=1985&$maxpagesize=2"}' + headers: + apim-request-id: + - 1e10c80e-2b2b-4752-bbd1-833719be2649 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:03 GMT + etag: + - '"B06EB9701DD60B79FDAA24497C3BAEA1AEC42F4777BF5A31D34343801978D622"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1e10c80e-2b2b-4752-bbd1-833719be2649 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=424&$top=1985&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=426&$top=1983&$maxpagesize=2"}' + headers: + apim-request-id: + - 6f631c72-9c4f-4f44-9764-5c69ac93c5f8 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:04 GMT + etag: + - '"603CD31CD37599A5E245BF253E9A280B285B6B25E7417F0A5C0C2F0ED0D0DCE4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6f631c72-9c4f-4f44-9764-5c69ac93c5f8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=426&$top=1983&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=428&$top=1981&$maxpagesize=2"}' + headers: + apim-request-id: + - dcb53967-2afa-45f7-a234-30f55e180a96 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:04 GMT + etag: + - '"19712018B62A8E24DFF470BDD3AD18CE32C753C40601818B016E526717AEBF72"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dcb53967-2afa-45f7-a234-30f55e180a96 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=428&$top=1981&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=430&$top=1979&$maxpagesize=2"}' + headers: + apim-request-id: + - c00af461-3386-4b75-9f5d-8c0a571bec8d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:04 GMT + etag: + - '"A866B269B59E13BCAADE313EF422F25ACAC0CF4A5D0AB4483F78A5158BD14360"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c00af461-3386-4b75-9f5d-8c0a571bec8d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=430&$top=1979&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=432&$top=1977&$maxpagesize=2"}' + headers: + apim-request-id: + - d2a2985b-7c90-4d00-96a3-32da2c510d2c + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:04 GMT + etag: + - '"41CE20B14682908E42659571AB591649C6D63138C75B133812E89273396BBEDF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d2a2985b-7c90-4d00-96a3-32da2c510d2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=432&$top=1977&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=434&$top=1975&$maxpagesize=2"}' + headers: + apim-request-id: + - d4c98936-46c8-4b55-9f85-1f343b1451c4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:04 GMT + etag: + - '"EDC17B03799CD4949B991931720DE79FC90FFF8E500E3F49CA12DF31F604571C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d4c98936-46c8-4b55-9f85-1f343b1451c4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=434&$top=1975&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=436&$top=1973&$maxpagesize=2"}' + headers: + apim-request-id: + - a5eb3352-8c8f-4f5f-bbea-cad33144e15f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:04 GMT + etag: + - '"A2C0C457CFA6C5088053D4D3984D6347403E34701595CCD47B40013C2966E7B3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a5eb3352-8c8f-4f5f-bbea-cad33144e15f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=436&$top=1973&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=438&$top=1971&$maxpagesize=2"}' + headers: + apim-request-id: + - 65f44740-e2c8-4efe-aa54-d0337e79dc83 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:05 GMT + etag: + - '"C8FCEB9B1887F477A7D13251ABDED64479D55AFC592F6AE036E719F23FABA5FF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 65f44740-e2c8-4efe-aa54-d0337e79dc83 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=438&$top=1971&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=440&$top=1969&$maxpagesize=2"}' + headers: + apim-request-id: + - 749ed75b-1365-4804-a889-c717d8c0a81b + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:05 GMT + etag: + - '"C844AFE2596A5EFCC3DBD483FFB021EA7B25365D8EA15C73FDC23D07A09E5328"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 749ed75b-1365-4804-a889-c717d8c0a81b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=440&$top=1969&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=442&$top=1967&$maxpagesize=2"}' + headers: + apim-request-id: + - 4097dfa8-3aac-432a-854b-64f72c39374f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:05 GMT + etag: + - '"7382CA19737A7BC915DC6E30D6E73D0213BD51F63F58AB247F21A327662D804F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4097dfa8-3aac-432a-854b-64f72c39374f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=442&$top=1967&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=444&$top=1965&$maxpagesize=2"}' + headers: + apim-request-id: + - cff24067-b204-4883-b844-5e50d656e998 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:05 GMT + etag: + - '"DB88C091736D5B1F51A9ED1248A3B3BC4FF65AE8A42F063ACF882FFF5830796D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cff24067-b204-4883-b844-5e50d656e998 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=444&$top=1965&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=446&$top=1963&$maxpagesize=2"}' + headers: + apim-request-id: + - ba934a7c-2c1b-402a-a342-88fc8596fa28 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:05 GMT + etag: + - '"E7C0143290FD8FB50A01208F643D7500503223A5BC0E7AF2D12E80EF81263572"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ba934a7c-2c1b-402a-a342-88fc8596fa28 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=446&$top=1963&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=448&$top=1961&$maxpagesize=2"}' + headers: + apim-request-id: + - 8a109b67-d239-4e90-9da2-68f5f2f1d81f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:05 GMT + etag: + - '"D0193D8FA0FE68EEE58FA60DAF69B47AEF60F2F3DA321AEA8519F8BC0ACB5135"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8a109b67-d239-4e90-9da2-68f5f2f1d81f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=448&$top=1961&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1959&$maxpagesize=2"}' + headers: + apim-request-id: + - adfd501e-bc26-4a00-9483-9064630aeef8 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:06 GMT + etag: + - '"5F39229FD5293EB5202A992C6023D1F770CD069ADFA81CD10DCB37AE5649FB9D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - adfd501e-bc26-4a00-9483-9064630aeef8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1959&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=452&$top=1957&$maxpagesize=2"}' + headers: + apim-request-id: + - 6d718040-429f-430e-b8be-451ce2a78f17 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:06 GMT + etag: + - '"F4CAFB4D2334FDE3110B4B16104BBA8A2D53F201106676EF6432F62211EB5A7B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6d718040-429f-430e-b8be-451ce2a78f17 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=452&$top=1957&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=454&$top=1955&$maxpagesize=2"}' + headers: + apim-request-id: + - a77f25ff-f86c-4eed-a202-0b9c35c8ab41 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:06 GMT + etag: + - '"790C4A7D3E3654EF5D324C9B2EAB041AF76D7287ADA510B9ECFB9237496FF19A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a77f25ff-f86c-4eed-a202-0b9c35c8ab41 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=454&$top=1955&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=456&$top=1953&$maxpagesize=2"}' + headers: + apim-request-id: + - 0aecc1d4-34bd-44de-8ec2-6da78cbc7e91 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:06 GMT + etag: + - '"464AAB78655177BB82729996C4CBC1C533CF8C9035CDB4AD3FB80120A81FCCFF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0aecc1d4-34bd-44de-8ec2-6da78cbc7e91 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=456&$top=1953&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=458&$top=1951&$maxpagesize=2"}' + headers: + apim-request-id: + - b77e632a-388e-42c7-8597-489dc9134e71 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:06 GMT + etag: + - '"E4DAC5123743CA86A2189880F4AF6AB1D1FE3E02E0604DCCA98D9048DDF7B2FD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b77e632a-388e-42c7-8597-489dc9134e71 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=458&$top=1951&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=460&$top=1949&$maxpagesize=2"}' + headers: + apim-request-id: + - e38d24c8-321b-41fa-b4fe-dc4704a6c93d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:06 GMT + etag: + - '"5073A642FDA17BF49B13E1A7F4C6DABF97C113A014D5BBF65A1DC6A991D10E29"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e38d24c8-321b-41fa-b4fe-dc4704a6c93d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=460&$top=1949&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=462&$top=1947&$maxpagesize=2"}' + headers: + apim-request-id: + - 54f1586b-b3a9-4988-a2cb-6e9872286be4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:07 GMT + etag: + - '"6BED252B6A32E17D9E441DBC03515B8413E8DEF692DEDB1E2EFC0E4701278E6A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 54f1586b-b3a9-4988-a2cb-6e9872286be4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=462&$top=1947&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=464&$top=1945&$maxpagesize=2"}' + headers: + apim-request-id: + - 1fe1867b-5061-43db-b83c-242c88fbcb62 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:07 GMT + etag: + - '"EA8331840090A0B9A61F43F8E18FCDCE8165CE8BAECD723D03A585CB19DF1838"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1fe1867b-5061-43db-b83c-242c88fbcb62 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=464&$top=1945&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=466&$top=1943&$maxpagesize=2"}' + headers: + apim-request-id: + - bf870e93-5aa6-4a66-90ba-39f12cadf15c + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:07 GMT + etag: + - '"794E597D9205781ADE27B4C46F9BC4D890520A22FFE38573EBDDF21DF8974086"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bf870e93-5aa6-4a66-90ba-39f12cadf15c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=466&$top=1943&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=468&$top=1941&$maxpagesize=2"}' + headers: + apim-request-id: + - 7d894555-908d-466e-abef-508dc88ee54c + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:07 GMT + etag: + - '"4DCE1D4C24F4840737FB5F9748EB7C8AC592CD15BD8882EB61B6F360D8D4CF1A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7d894555-908d-466e-abef-508dc88ee54c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=468&$top=1941&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=470&$top=1939&$maxpagesize=2"}' + headers: + apim-request-id: + - ee16cbb9-bb7b-41dd-bb4f-125531275297 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:07 GMT + etag: + - '"9259C2E6A247143965997F06C28474FE4D9B2D9EF18937CDAF31D7D504BACDDA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ee16cbb9-bb7b-41dd-bb4f-125531275297 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=470&$top=1939&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=472&$top=1937&$maxpagesize=2"}' + headers: + apim-request-id: + - 4e414196-a75d-42ce-a5f6-0c241bbd4936 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:08 GMT + etag: + - '"78ADC2B54F172BB83F6E1673DEE04D1ECDF6DD42DAA564F7A5DB42099479AA76"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4e414196-a75d-42ce-a5f6-0c241bbd4936 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=472&$top=1937&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=474&$top=1935&$maxpagesize=2"}' + headers: + apim-request-id: + - 6be3b9a4-71f3-49a7-bfae-ad14d0fcb952 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:08 GMT + etag: + - '"421AFFC743A69D4BCE3EFD346F671546DFAB5D6529D577AE1A1091213C33756D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6be3b9a4-71f3-49a7-bfae-ad14d0fcb952 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=474&$top=1935&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=476&$top=1933&$maxpagesize=2"}' + headers: + apim-request-id: + - 78a37e49-9330-4cb9-9fe8-4b43810406ab + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:08 GMT + etag: + - '"9F821F8BEA65988C28D531CA2F94D8F29B1E8D4F092C395FD9C8E8E7E6B7673E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 78a37e49-9330-4cb9-9fe8-4b43810406ab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=476&$top=1933&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=478&$top=1931&$maxpagesize=2"}' + headers: + apim-request-id: + - 32876ba1-8063-4e58-a0d0-95720e1b333b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:08 GMT + etag: + - '"AA059B7B9982B8A27953FBFB1640AE0260190F582D5F08108CB1A8DBA91A29F5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 32876ba1-8063-4e58-a0d0-95720e1b333b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=478&$top=1931&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=480&$top=1929&$maxpagesize=2"}' + headers: + apim-request-id: + - 1823f8d3-e444-4096-a2a3-002d9ebbe9b6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:08 GMT + etag: + - '"3FFB1385095ED45D979A948ECFB9E8987F76AB61190F8C23D33F151DA51D81E2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1823f8d3-e444-4096-a2a3-002d9ebbe9b6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=480&$top=1929&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=482&$top=1927&$maxpagesize=2"}' + headers: + apim-request-id: + - 9e08d83e-ec9c-467c-ba30-5233d9ee28c6 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:08 GMT + etag: + - '"AE9649B212A1AE1AE8992FBB362BF6B087A0F297CF4A262E1AD98DDF10DD0AB9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9e08d83e-ec9c-467c-ba30-5233d9ee28c6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=482&$top=1927&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=484&$top=1925&$maxpagesize=2"}' + headers: + apim-request-id: + - da0eaf55-95c1-4aab-bd32-0764aca1d094 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:09 GMT + etag: + - '"F042FE25FFA4F8EFA8A449A879CBE977AE287330A838F90D6F589D86C999FEB7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - da0eaf55-95c1-4aab-bd32-0764aca1d094 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=484&$top=1925&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=486&$top=1923&$maxpagesize=2"}' + headers: + apim-request-id: + - a185c298-0ee9-4aa7-934c-a89806dd1a96 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:09 GMT + etag: + - '"9B0AD46BDEC28AC99C243B0B4FDF47A62A732785C243AFB1BC3F46EE78CB5CAF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a185c298-0ee9-4aa7-934c-a89806dd1a96 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=486&$top=1923&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=488&$top=1921&$maxpagesize=2"}' + headers: + apim-request-id: + - 25489cc5-89f5-4938-aa0a-7594d595d044 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:09 GMT + etag: + - '"7D46991915E4F10795D4033DCFADCF6FEE10D84E497D9F0C50170BB85BBAB571"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 25489cc5-89f5-4938-aa0a-7594d595d044 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=488&$top=1921&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=490&$top=1919&$maxpagesize=2"}' + headers: + apim-request-id: + - 53812bce-f357-498f-81f3-ea86b64fc764 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:09 GMT + etag: + - '"9413EE1BAD6E79DB12DB8BFA9924839DD5F568FBEDFA9264D656660718097A7C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 53812bce-f357-498f-81f3-ea86b64fc764 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=490&$top=1919&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=492&$top=1917&$maxpagesize=2"}' + headers: + apim-request-id: + - 1302590c-959c-47a9-ab51-010271463841 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:09 GMT + etag: + - '"EDF0DAF4A8734A2EB69B2DAA0532FF75D99DE5D523171FF601DB96154FDD3C3A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1302590c-959c-47a9-ab51-010271463841 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=492&$top=1917&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=494&$top=1915&$maxpagesize=2"}' + headers: + apim-request-id: + - 07315bc9-b48e-432a-aa82-745a76d73399 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:09 GMT + etag: + - '"6D82DB44F8A515A8FDD0EB9CE0376F46E7C884B0DD461C5175F67FD78DAC2F90"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 07315bc9-b48e-432a-aa82-745a76d73399 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=494&$top=1915&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=496&$top=1913&$maxpagesize=2"}' + headers: + apim-request-id: + - 0852a5b1-eda8-4bfe-8d33-5a58068483b7 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:10 GMT + etag: + - '"429D3EEA532E813B72394F31E8A2C895CAE5FA825E5BD2CB24DF44127FD8A788"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0852a5b1-eda8-4bfe-8d33-5a58068483b7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=496&$top=1913&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=498&$top=1911&$maxpagesize=2"}' + headers: + apim-request-id: + - f8cafad9-9ab0-4e22-bf85-c7a504dc5469 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:10 GMT + etag: + - '"641FC90842146306AFC9262C42271AF49AAEC3B0AA7EFCBCC76F754F599E3BF8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f8cafad9-9ab0-4e22-bf85-c7a504dc5469 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=498&$top=1911&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1909&$maxpagesize=2"}' + headers: + apim-request-id: + - 985b4409-358b-45d0-895a-2d7e44c1718c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:10 GMT + etag: + - '"045B3690168CDA7C56C31E4DC420BC9F7B4EE4A97F0473C935115B8FC5142246"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 985b4409-358b-45d0-895a-2d7e44c1718c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1909&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=502&$top=1907&$maxpagesize=2"}' + headers: + apim-request-id: + - 6ca3b2b1-8ce2-4e1c-8608-d76559422477 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:10 GMT + etag: + - '"A7EA85DB8A52363EC2B30482ADB767CFDC807CD79102AEDA53E5E3F0F3DBCB26"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6ca3b2b1-8ce2-4e1c-8608-d76559422477 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=502&$top=1907&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=504&$top=1905&$maxpagesize=2"}' + headers: + apim-request-id: + - d7caf877-6ccd-47fd-a969-57cd0ff5e004 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:10 GMT + etag: + - '"F2EC38C7D5D0D8DD1961366EAAD2CE7B157C1B5F61867DB255CE10130AD7E831"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d7caf877-6ccd-47fd-a969-57cd0ff5e004 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=504&$top=1905&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=506&$top=1903&$maxpagesize=2"}' + headers: + apim-request-id: + - cc0f44bd-64b1-4cb5-acd3-c1c28bff9fef + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:10 GMT + etag: + - '"E6980EDE54C712AC921E1AE1554D3895EFF1FF2DDF0D244EE28FF9CDB886C532"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cc0f44bd-64b1-4cb5-acd3-c1c28bff9fef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=506&$top=1903&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=508&$top=1901&$maxpagesize=2"}' + headers: + apim-request-id: + - b953328a-6824-4ce3-8454-612d36fa0e7d + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:11 GMT + etag: + - '"7934DCC5C39B3C297A1EEBC5BF8EE7B602F83ACE0CEA65BC1361D2328AC1CB03"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b953328a-6824-4ce3-8454-612d36fa0e7d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=508&$top=1901&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=510&$top=1899&$maxpagesize=2"}' + headers: + apim-request-id: + - bd14c239-85b1-4e69-9d57-b9539ed8d28a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:11 GMT + etag: + - '"B11F91FF12C33F9EE1DC561F06EDE2D8D03A39A47F67CA4DBED7507FA87DBA79"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bd14c239-85b1-4e69-9d57-b9539ed8d28a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=510&$top=1899&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=512&$top=1897&$maxpagesize=2"}' + headers: + apim-request-id: + - a71a6b04-c377-4108-91a6-1a33ceeec483 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:11 GMT + etag: + - '"0E418D6DF455CFDB05E1DF7FF19BE3C77C2B75B5FD274AD63FD25F036F017E8B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a71a6b04-c377-4108-91a6-1a33ceeec483 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=512&$top=1897&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=514&$top=1895&$maxpagesize=2"}' + headers: + apim-request-id: + - a1cc94d8-7461-40ee-989d-02020980be0d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:11 GMT + etag: + - '"FBBEB8A036BBF56D4DE24713F834CEFD9D5B3B9368875436C0DD6CDAB56F9645"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1cc94d8-7461-40ee-989d-02020980be0d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=514&$top=1895&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=516&$top=1893&$maxpagesize=2"}' + headers: + apim-request-id: + - 6d88a7ec-2b76-4182-8aa9-365f92e48ddc + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:11 GMT + etag: + - '"A3117E578124C2DDAFA1D9DD913CBDF12A4C75BC70CACD197FE3A88220F099A6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6d88a7ec-2b76-4182-8aa9-365f92e48ddc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=516&$top=1893&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=518&$top=1891&$maxpagesize=2"}' + headers: + apim-request-id: + - 0eeba5ef-b998-4756-8058-c66de51f9dd1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:11 GMT + etag: + - '"FD45F27EC337DF3E9BC26C80388FE4F1731B67EDF933EFD0E73C8633F4B940A2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0eeba5ef-b998-4756-8058-c66de51f9dd1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=518&$top=1891&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=520&$top=1889&$maxpagesize=2"}' + headers: + apim-request-id: + - 14a315b0-620f-437e-859a-a3795d846d3f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:12 GMT + etag: + - '"3A59B756B68C3404796F08705461DB9BA46806E8B67C69CE210081F7175EBF42"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 14a315b0-620f-437e-859a-a3795d846d3f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=520&$top=1889&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=522&$top=1887&$maxpagesize=2"}' + headers: + apim-request-id: + - 1cccb595-4afd-41d4-9dd8-08fb9741b366 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:12 GMT + etag: + - '"C81C4C24D1F18A894DCFC5D08CCF3E3ECE80ED96FCEE540DC8A4109DDF55A786"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1cccb595-4afd-41d4-9dd8-08fb9741b366 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=522&$top=1887&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=524&$top=1885&$maxpagesize=2"}' + headers: + apim-request-id: + - 9d5fe0c5-06c9-4ea1-afe1-f7ca5a4ccd53 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:12 GMT + etag: + - '"633234EE919BE96A2455094C08859E7DD767558C65E5A7B21A3A0EDB5D0F5592"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9d5fe0c5-06c9-4ea1-afe1-f7ca5a4ccd53 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=524&$top=1885&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=526&$top=1883&$maxpagesize=2"}' + headers: + apim-request-id: + - 6292aef0-49a2-4621-b07a-61764daeaa50 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:12 GMT + etag: + - '"1E84B78BA3AF37345CEBD6F5D076F3D07C08F65345D65286A11F173CAE325872"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6292aef0-49a2-4621-b07a-61764daeaa50 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=526&$top=1883&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=528&$top=1881&$maxpagesize=2"}' + headers: + apim-request-id: + - c780cb8b-7919-4cba-adb0-4cc5dc6dff44 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:12 GMT + etag: + - '"A164AB61B110BF089F7C826CBCACE972FEB7B5646956535685CA263596E267D0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c780cb8b-7919-4cba-adb0-4cc5dc6dff44 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=528&$top=1881&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=530&$top=1879&$maxpagesize=2"}' + headers: + apim-request-id: + - f1622d78-a268-4d9a-9087-c5442f4e1a98 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:12 GMT + etag: + - '"77A3C160C8671B509075A2F0BD851EFE78AA395B1B2BC2CE9F6B3B0C2E39AE4E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f1622d78-a268-4d9a-9087-c5442f4e1a98 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=530&$top=1879&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=532&$top=1877&$maxpagesize=2"}' + headers: + apim-request-id: + - a638e87e-43c7-4228-b23f-5365368e1ae4 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:13 GMT + etag: + - '"522A11D38189360119EB788FCA2A61CCA0DCF90EB4FBACC80EB14598141CD81E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a638e87e-43c7-4228-b23f-5365368e1ae4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=532&$top=1877&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=534&$top=1875&$maxpagesize=2"}' + headers: + apim-request-id: + - 3a1251f1-37ee-45db-be33-8ef40bd0ffbf + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:13 GMT + etag: + - '"40D8F887C7DA0443C0BA4E6452C4BA79F53861B9F7EBDA061C23479D17EC9211"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3a1251f1-37ee-45db-be33-8ef40bd0ffbf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=534&$top=1875&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=536&$top=1873&$maxpagesize=2"}' + headers: + apim-request-id: + - 13883d29-da09-4ac9-aed7-1b70c2947ffe + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:13 GMT + etag: + - '"AD292F1A753E91946A52FD49B6A24A617A8898D0298BF49E858FCF1F885AF6DC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 13883d29-da09-4ac9-aed7-1b70c2947ffe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=536&$top=1873&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=538&$top=1871&$maxpagesize=2"}' + headers: + apim-request-id: + - ed4d2060-471c-4f70-9af5-8258a0beb777 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:13 GMT + etag: + - '"EEFB37AF5457D3B86758FF5D18113C2FAB524BF67FE265918C91555F11EE9F97"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ed4d2060-471c-4f70-9af5-8258a0beb777 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=538&$top=1871&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=540&$top=1869&$maxpagesize=2"}' + headers: + apim-request-id: + - 5028f842-72f5-49b2-b01a-3ff665f2ac03 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:13 GMT + etag: + - '"D6050CFAFA987D47E6D3F7D2779833721B5B583994DBBC8CD15D3B23EA52876B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5028f842-72f5-49b2-b01a-3ff665f2ac03 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=540&$top=1869&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=542&$top=1867&$maxpagesize=2"}' + headers: + apim-request-id: + - 5d04e401-80fe-4988-8032-223dafe075f7 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:14 GMT + etag: + - '"7527EB4B7E26CC1B3F3E53EA65E328086C70763CC987777094854C41876B813B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5d04e401-80fe-4988-8032-223dafe075f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=542&$top=1867&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=544&$top=1865&$maxpagesize=2"}' + headers: + apim-request-id: + - ad53be92-83ab-4972-b567-9d4b8e3849d7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:14 GMT + etag: + - '"0BEDCC6E40E53599DD84F76C61A46480BF84BA1391691D34E5E590A0D821F4B9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ad53be92-83ab-4972-b567-9d4b8e3849d7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=544&$top=1865&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=546&$top=1863&$maxpagesize=2"}' + headers: + apim-request-id: + - 73868e0e-58bd-4bd2-b99f-3a2f4d6f302d + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:14 GMT + etag: + - '"2A75A10E7D0749103944AFC7A0EBC9B8344BC1A80E9BD6F90A380D4C49CF1BD2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 73868e0e-58bd-4bd2-b99f-3a2f4d6f302d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=546&$top=1863&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=548&$top=1861&$maxpagesize=2"}' + headers: + apim-request-id: + - b0e75739-d6e2-4a71-a038-5d0736b0502e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:14 GMT + etag: + - '"496FA48041E7AA85D256CDB288FBAC36599B4501D8C93F1F8EB0C34866BA8BB8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b0e75739-d6e2-4a71-a038-5d0736b0502e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=548&$top=1861&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1859&$maxpagesize=2"}' + headers: + apim-request-id: + - ceaba48c-eae6-4698-8998-f4c8367cc6e0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:14 GMT + etag: + - '"D2BD9460E98D894572E210789FAF548A5360511FE882D0BFCEBDC7C8D113641F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ceaba48c-eae6-4698-8998-f4c8367cc6e0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1859&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=552&$top=1857&$maxpagesize=2"}' + headers: + apim-request-id: + - 77db5fa3-4be4-4182-acbe-7b74282d5047 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:14 GMT + etag: + - '"0505CF972BD642949999992BB20247D1A698B6E5DB8EEE1CB7AA87BC7D66C099"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 77db5fa3-4be4-4182-acbe-7b74282d5047 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=552&$top=1857&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=554&$top=1855&$maxpagesize=2"}' + headers: + apim-request-id: + - 0db738ae-c90a-46df-bf3f-304ad0ae63e7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:15 GMT + etag: + - '"ADA5990E0542D27765A30B3844AD73E9D5D05574472E308FF85A8F07E33190BB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0db738ae-c90a-46df-bf3f-304ad0ae63e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=554&$top=1855&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=556&$top=1853&$maxpagesize=2"}' + headers: + apim-request-id: + - 989e692a-b630-4b34-ae6e-97991432638a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:15 GMT + etag: + - '"7F04A2362A2C4ED17DDA4E9B1DC58872AAAC2F53D77CE5C50EB093E516ED9DD6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 989e692a-b630-4b34-ae6e-97991432638a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=556&$top=1853&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=558&$top=1851&$maxpagesize=2"}' + headers: + apim-request-id: + - ee2280a0-71bf-4922-af2c-47a7679f2bbe + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:15 GMT + etag: + - '"9B0C679C977B5DF1D4DF36ECA18162D20E062F430C7E21440D22999D3E41229E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ee2280a0-71bf-4922-af2c-47a7679f2bbe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=558&$top=1851&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=560&$top=1849&$maxpagesize=2"}' + headers: + apim-request-id: + - 89f05c9e-4a4b-4d65-8b4c-c0b341bf08a1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:15 GMT + etag: + - '"9EAB825AF755C296AC9F0B0BD39D0BA9958335176004F65AD6364FA277688838"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 89f05c9e-4a4b-4d65-8b4c-c0b341bf08a1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=560&$top=1849&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=562&$top=1847&$maxpagesize=2"}' + headers: + apim-request-id: + - 9cd4b819-02e4-4a24-a641-cc87292da68f + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:15 GMT + etag: + - '"B9DD9CD88EEC135F9A520BB55815D215B80E6E35F393F4A7CA88D4CABDB633AB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9cd4b819-02e4-4a24-a641-cc87292da68f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=562&$top=1847&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=564&$top=1845&$maxpagesize=2"}' + headers: + apim-request-id: + - 2dee9c33-ee29-4123-833f-83c0e90d8455 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:15 GMT + etag: + - '"5E7D0E02F35759C6FAF16E1F6902D9CEDB428C93FBAB01FDFDFCF0843855536F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2dee9c33-ee29-4123-833f-83c0e90d8455 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=564&$top=1845&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=566&$top=1843&$maxpagesize=2"}' + headers: + apim-request-id: + - 4488fc0f-9dcc-43c4-b44d-fc027b16abae + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:16 GMT + etag: + - '"C3BADC6438669F56086F2CCDB708601B78F880179AF4B52879EED1B1E1EC995B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4488fc0f-9dcc-43c4-b44d-fc027b16abae + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=566&$top=1843&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=568&$top=1841&$maxpagesize=2"}' + headers: + apim-request-id: + - 881e9120-cb1c-454f-acbc-14842ec4d6b1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:16 GMT + etag: + - '"7994F6024987B37ABD499295C9158DDDBCD1396911D0D5CB387C2BDB864AF9B0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 881e9120-cb1c-454f-acbc-14842ec4d6b1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=568&$top=1841&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=570&$top=1839&$maxpagesize=2"}' + headers: + apim-request-id: + - 8774a84c-6e81-4775-b011-e4fea170bfb9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:16 GMT + etag: + - '"1A80F46A46D422FD5E5F23865CE73E3A3C270A2683E30D1D27452029AC0B7EB4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8774a84c-6e81-4775-b011-e4fea170bfb9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=570&$top=1839&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=572&$top=1837&$maxpagesize=2"}' + headers: + apim-request-id: + - 3de858d2-eba2-4ea7-9521-8492b9dd5d37 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:16 GMT + etag: + - '"1180DF15CCF1B1723C2435659DD1D1575D758C1FB30F1C19D8CBEB6A826308E1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3de858d2-eba2-4ea7-9521-8492b9dd5d37 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=572&$top=1837&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=574&$top=1835&$maxpagesize=2"}' + headers: + apim-request-id: + - ac06cce4-3ab9-440a-9ad2-b9e43da17bb0 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:16 GMT + etag: + - '"A4C56D6E55856111294EF667EE87F1E3DEC69E58B54C44EE01A936F594CB827D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ac06cce4-3ab9-440a-9ad2-b9e43da17bb0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=574&$top=1835&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=576&$top=1833&$maxpagesize=2"}' + headers: + apim-request-id: + - e72bac29-1b9c-4a28-bcfe-7cadda78e8bb + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:16 GMT + etag: + - '"B0BE45E5ED796B6A91B20C86CBA0262C5DDCDA2C525288336A1C44B21B3445D0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e72bac29-1b9c-4a28-bcfe-7cadda78e8bb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=576&$top=1833&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=578&$top=1831&$maxpagesize=2"}' + headers: + apim-request-id: + - 5e785d90-c0f9-4f02-bd52-bf2437287833 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:17 GMT + etag: + - '"EA1FDCE3049D2CB647F7B18278EF34619C3328D51643DBA34B967FD5BBB60DF2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5e785d90-c0f9-4f02-bd52-bf2437287833 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=578&$top=1831&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=580&$top=1829&$maxpagesize=2"}' + headers: + apim-request-id: + - 48e3e3d1-7e29-4d24-b312-3bcf60a414ee + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:17 GMT + etag: + - '"C033CA6CBB025951DF6B8A00A02FDA71F0BB7334CB8BCAC4030BEC5B958E6122"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 48e3e3d1-7e29-4d24-b312-3bcf60a414ee + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=580&$top=1829&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=582&$top=1827&$maxpagesize=2"}' + headers: + apim-request-id: + - cd1f09c4-7b12-4407-a243-7e2259968c8b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:17 GMT + etag: + - '"3914F5E84CDD42F82C0CE6AF2878E4044251ABB834AB4B04EBDB21E495FB539A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cd1f09c4-7b12-4407-a243-7e2259968c8b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=582&$top=1827&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=584&$top=1825&$maxpagesize=2"}' + headers: + apim-request-id: + - ed352468-a5df-4c2f-9b08-c5e8fdfbea1c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:17 GMT + etag: + - '"57AC2CCDB468A9835BD25C3373A29DFB38BE2B482AF93A50C2C027C990EA23AD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ed352468-a5df-4c2f-9b08-c5e8fdfbea1c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=584&$top=1825&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=586&$top=1823&$maxpagesize=2"}' + headers: + apim-request-id: + - a46c2772-09f7-42ee-8407-7b5003ba177e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:17 GMT + etag: + - '"ADF3568832EEF6B3527DEA116E65158F3668F9EF17CC1F5705F9489390273056"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a46c2772-09f7-42ee-8407-7b5003ba177e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=586&$top=1823&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=588&$top=1821&$maxpagesize=2"}' + headers: + apim-request-id: + - 9f4a120d-2197-40db-ad8b-aae4f4992395 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:17 GMT + etag: + - '"4F429279EB94AF78B255D4B5E3D2E9297334BB4B9A42ED7F2303C0825DABF2EB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9f4a120d-2197-40db-ad8b-aae4f4992395 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=588&$top=1821&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=590&$top=1819&$maxpagesize=2"}' + headers: + apim-request-id: + - e358d844-21b4-4e1f-8e5d-09e9f7fc9821 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:18 GMT + etag: + - '"869CF05FCE4B35B613C779DAF47A6C51AE039D2D7AA451FA7EEBC445F6359F21"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e358d844-21b4-4e1f-8e5d-09e9f7fc9821 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=590&$top=1819&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=592&$top=1817&$maxpagesize=2"}' + headers: + apim-request-id: + - 9ae94de5-1b5f-4c3e-8ae0-951e3d6f9dfe + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:18 GMT + etag: + - '"C60AD2DDB5B6A393E2774DABDA999E4242BBFD72B918244700CA64831BFFEB36"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9ae94de5-1b5f-4c3e-8ae0-951e3d6f9dfe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=592&$top=1817&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=594&$top=1815&$maxpagesize=2"}' + headers: + apim-request-id: + - 51134d77-40aa-478d-9346-2913097d2b77 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:18 GMT + etag: + - '"69B55C7A0D2F86563B0AC772ABAE2C425A5353D298CF6C60BA2FE0E2F723D07E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 51134d77-40aa-478d-9346-2913097d2b77 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=594&$top=1815&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=596&$top=1813&$maxpagesize=2"}' + headers: + apim-request-id: + - bb7a657b-88ac-4283-8d8d-2c83de7aee6c + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:18 GMT + etag: + - '"1C03B767F9FE5D7EDFCD8655EA9C51662CF1B35E3CE2AC0A5C17FFC054FEEFF8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bb7a657b-88ac-4283-8d8d-2c83de7aee6c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=596&$top=1813&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=598&$top=1811&$maxpagesize=2"}' + headers: + apim-request-id: + - 91e30688-0f73-4f8e-a0a7-4164cda8c5e2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:18 GMT + etag: + - '"175C08E620FD2AE6D783A3270F5EB4B69C1705AFF84D06F416D01A5685A616D7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 91e30688-0f73-4f8e-a0a7-4164cda8c5e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=598&$top=1811&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1809&$maxpagesize=2"}' + headers: + apim-request-id: + - 648748ff-25e0-4f41-864c-ca0fdebbd39e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:18 GMT + etag: + - '"6DC5FA5E5A5E9E17AD0BCB213C0F8721C019F8FE706C4A38224F9EB811675A0F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 648748ff-25e0-4f41-864c-ca0fdebbd39e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1809&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=602&$top=1807&$maxpagesize=2"}' + headers: + apim-request-id: + - 89043bdd-6499-444b-af44-386aa5f993c3 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:19 GMT + etag: + - '"E3115FC092880C95B6FF35C6DAE3085BC1B26E5E07111702A328DE9579DD98E2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 89043bdd-6499-444b-af44-386aa5f993c3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=602&$top=1807&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=604&$top=1805&$maxpagesize=2"}' + headers: + apim-request-id: + - af7848ed-faf5-4059-9a28-e10edd7b3971 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:19 GMT + etag: + - '"C686236D6CC8654C957F7839DB9634A9D470C57EC2140945086EC8428EA22419"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - af7848ed-faf5-4059-9a28-e10edd7b3971 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=604&$top=1805&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=606&$top=1803&$maxpagesize=2"}' + headers: + apim-request-id: + - ce0a5e1c-623b-44e9-9d71-59baa68cd671 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:19 GMT + etag: + - '"71B23208DB221F56B6EF861FFA45B58792CFF57D94593678357E7C30D4136C3B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ce0a5e1c-623b-44e9-9d71-59baa68cd671 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=606&$top=1803&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=608&$top=1801&$maxpagesize=2"}' + headers: + apim-request-id: + - 65a4c654-1782-4e11-b2dc-8e720d49197a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:19 GMT + etag: + - '"C4291CCC36F779EDAECD0861ADC1D87BE2865C3A08EC21353D318895B4953445"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 65a4c654-1782-4e11-b2dc-8e720d49197a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=608&$top=1801&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=610&$top=1799&$maxpagesize=2"}' + headers: + apim-request-id: + - e5eb194e-5de7-421c-9d17-030144e02914 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:19 GMT + etag: + - '"0A93E78EE98DE0F13A20563085080395783824DF895314FA213C840713B43CBE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5eb194e-5de7-421c-9d17-030144e02914 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=610&$top=1799&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=612&$top=1797&$maxpagesize=2"}' + headers: + apim-request-id: + - a1a55622-4406-4333-8d4f-10468704e147 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:20 GMT + etag: + - '"137967F6EB6857D64C961AF2DF29ACA6BD682077A5ED1333B31A27768423F699"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1a55622-4406-4333-8d4f-10468704e147 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=612&$top=1797&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=614&$top=1795&$maxpagesize=2"}' + headers: + apim-request-id: + - dc967de9-c521-4aa9-992b-9e391aa09f59 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:20 GMT + etag: + - '"0339F580808B10ABDBEFC6528D9F8B87B6971B161BB8B2FA0EBDA3E044C8F165"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dc967de9-c521-4aa9-992b-9e391aa09f59 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=614&$top=1795&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=616&$top=1793&$maxpagesize=2"}' + headers: + apim-request-id: + - 2cc8fd4b-93b2-4d23-91d4-7273969326ac + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:20 GMT + etag: + - '"38CA59656552C3AEF360A250CC792433499299E187AC28EB1C5E2DB4994F4B43"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2cc8fd4b-93b2-4d23-91d4-7273969326ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=616&$top=1793&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=618&$top=1791&$maxpagesize=2"}' + headers: + apim-request-id: + - 694a1103-67ee-4c50-a5ea-fdd0d062bef9 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:20 GMT + etag: + - '"76F11902BEC3A445F940D3FE4A6A7925E8AF8D19F2B87D5E20F2D223A1DA3FD7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 694a1103-67ee-4c50-a5ea-fdd0d062bef9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=618&$top=1791&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=620&$top=1789&$maxpagesize=2"}' + headers: + apim-request-id: + - c986b973-4714-4ae0-bf09-740c327f9000 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:20 GMT + etag: + - '"528D58DFCB3DD3E172759FCE3B8C8828D18147D9C69BA59C7134CC676D4C29A9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c986b973-4714-4ae0-bf09-740c327f9000 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=620&$top=1789&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=622&$top=1787&$maxpagesize=2"}' + headers: + apim-request-id: + - e8c0fb95-a88c-4488-80b3-0647a0ca7d77 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:20 GMT + etag: + - '"1AE4CCDCFB4EA03B6DB419B5D865F3A61371716B3C1D6CEE82F78D4D990571BD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e8c0fb95-a88c-4488-80b3-0647a0ca7d77 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=622&$top=1787&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=624&$top=1785&$maxpagesize=2"}' + headers: + apim-request-id: + - dc168600-47e4-4366-83f9-b4a5c5eebc5c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:21 GMT + etag: + - '"40339E522F0B0856B37B9DBAE1A7011DD92C9B51935070F7AB2AEFA77C1CAA87"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dc168600-47e4-4366-83f9-b4a5c5eebc5c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=624&$top=1785&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=626&$top=1783&$maxpagesize=2"}' + headers: + apim-request-id: + - 1d63571d-cdc8-4756-bf4f-124e2a651da5 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:21 GMT + etag: + - '"6343BCC115C77FB77F28CA9D0230757D25DF87927E1D43A6D2B2321C65303D33"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1d63571d-cdc8-4756-bf4f-124e2a651da5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=626&$top=1783&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=628&$top=1781&$maxpagesize=2"}' + headers: + apim-request-id: + - 76c8b843-4f1c-407a-bf13-b72d81c96cae + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:21 GMT + etag: + - '"09B34F2C01D8A5636A46AA0E9BB743C6A1CA4CC21BF610329F79679FF5EEBBB3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 76c8b843-4f1c-407a-bf13-b72d81c96cae + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=628&$top=1781&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=630&$top=1779&$maxpagesize=2"}' + headers: + apim-request-id: + - 8f6cff36-f897-4951-8d48-e7b4f139117f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:21 GMT + etag: + - '"00653FDFCFF4FBD4591A01D8366028C2293D7D431DFB89622C9B2922321F9B39"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8f6cff36-f897-4951-8d48-e7b4f139117f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=630&$top=1779&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=632&$top=1777&$maxpagesize=2"}' + headers: + apim-request-id: + - f8317ac4-a943-4a2f-85a5-e5ff31053a41 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:21 GMT + etag: + - '"6920D0C7A097DC97EFC350C620510E744A2A17898B30038CA11088099AC34237"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f8317ac4-a943-4a2f-85a5-e5ff31053a41 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=632&$top=1777&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=634&$top=1775&$maxpagesize=2"}' + headers: + apim-request-id: + - 539dde60-e98e-4f54-938e-300b484ea1d9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:21 GMT + etag: + - '"D22B3C4582D472088AA8B182F329D486890969A1F0F350D71F701C267874102A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 539dde60-e98e-4f54-938e-300b484ea1d9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=634&$top=1775&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=636&$top=1773&$maxpagesize=2"}' + headers: + apim-request-id: + - e18654af-0aaf-4469-b9bb-cbe1441e0265 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:22 GMT + etag: + - '"95DA46CA4E2DCA1384A742E67E7AF239700B121BCC74DD92AF210E1F1F603FB1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e18654af-0aaf-4469-b9bb-cbe1441e0265 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=636&$top=1773&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=638&$top=1771&$maxpagesize=2"}' + headers: + apim-request-id: + - 4b16ceaf-e327-4a70-965f-f98540c59060 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:22 GMT + etag: + - '"54842CD68EFB6985E5A5E45236164C064C678BCC076E7A7B27DF166FEA1CC247"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4b16ceaf-e327-4a70-965f-f98540c59060 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=638&$top=1771&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=640&$top=1769&$maxpagesize=2"}' + headers: + apim-request-id: + - 2be6c27a-d032-4758-845d-6c497678b719 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:22 GMT + etag: + - '"8F000BD160842915A1A05326678B032B493BF11BAA443F2B30BD19196EAB8FAD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2be6c27a-d032-4758-845d-6c497678b719 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=640&$top=1769&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=642&$top=1767&$maxpagesize=2"}' + headers: + apim-request-id: + - 931751cd-31b0-462d-89a1-b088247a558a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:22 GMT + etag: + - '"202582AF188734E8D25D775A518B3F4128B7D5E10BB36CEA7E75BA518C4762E7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 931751cd-31b0-462d-89a1-b088247a558a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=642&$top=1767&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=644&$top=1765&$maxpagesize=2"}' + headers: + apim-request-id: + - a569f685-f1ad-4b62-b859-3316bf588163 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:22 GMT + etag: + - '"A9B5AE4BC83FE398E80B5A194AFA51C22ED3F18651077828B5F4BB62E0C2A3FB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a569f685-f1ad-4b62-b859-3316bf588163 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=644&$top=1765&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=646&$top=1763&$maxpagesize=2"}' + headers: + apim-request-id: + - eadaf060-73c3-4102-a848-ce501d04bc1c + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:22 GMT + etag: + - '"6C64AEAF2B3D1E32ACBBD9A0185C906271E9163BA4756CDFE138BEEDC6384E94"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eadaf060-73c3-4102-a848-ce501d04bc1c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=646&$top=1763&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=648&$top=1761&$maxpagesize=2"}' + headers: + apim-request-id: + - 192b3236-98bd-4ec7-aa43-1159e023a566 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:23 GMT + etag: + - '"AB3FC44336C7782F13EBB0D6BCA096A3BA13DCC1DB5DE0A8100649B939FD9B5E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 192b3236-98bd-4ec7-aa43-1159e023a566 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=648&$top=1761&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1759&$maxpagesize=2"}' + headers: + apim-request-id: + - 079a6783-a6bf-4b2c-b025-f6ea7374a672 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:23 GMT + etag: + - '"D3445728A4F2C02DCEF04C3BD4F325C78CECC7710DD37BE6145250CCB578C8AE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 079a6783-a6bf-4b2c-b025-f6ea7374a672 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1759&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=652&$top=1757&$maxpagesize=2"}' + headers: + apim-request-id: + - 88180d53-3ea7-4c4d-9c23-0988aebb976b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:23 GMT + etag: + - '"EEA8A6B803DE6C3BD9CA4678F67131E7EE3B3DCA2437B9D2F66E8EC9E17049FB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 88180d53-3ea7-4c4d-9c23-0988aebb976b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=652&$top=1757&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=654&$top=1755&$maxpagesize=2"}' + headers: + apim-request-id: + - 3322f13b-5f44-4f1a-8b28-34e0790684bb + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:23 GMT + etag: + - '"9FA28D59E099AA41D62612E40EB62535D788373BE5963619C9F6819FE9F2661C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3322f13b-5f44-4f1a-8b28-34e0790684bb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=654&$top=1755&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=656&$top=1753&$maxpagesize=2"}' + headers: + apim-request-id: + - ed7f628f-ee27-4322-b053-d634e8b0f3f5 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:23 GMT + etag: + - '"4B48F8286D59768A77F8CE788F3355D76FE0D3EB3E9E8AA6531C69B10EEB3E20"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ed7f628f-ee27-4322-b053-d634e8b0f3f5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=656&$top=1753&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=658&$top=1751&$maxpagesize=2"}' + headers: + apim-request-id: + - 6d8bb4eb-6cb5-47aa-a988-9fc37b73e4a2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:23 GMT + etag: + - '"EF9CB94F2754CB4C683FBE291724542AB709A962E048E49AF4F67AADF6494384"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6d8bb4eb-6cb5-47aa-a988-9fc37b73e4a2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=658&$top=1751&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=660&$top=1749&$maxpagesize=2"}' + headers: + apim-request-id: + - 18d9462d-1a07-4a9e-93c8-f9a82ce98a53 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:25 GMT + etag: + - '"FCB7950FDC7E7656579A1DD7ACF487B812EC0016A98676AAF7508F664C1F2F32"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 18d9462d-1a07-4a9e-93c8-f9a82ce98a53 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=660&$top=1749&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=662&$top=1747&$maxpagesize=2"}' + headers: + apim-request-id: + - 05db48ab-9293-44e8-879b-26a2f4c67f91 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:25 GMT + etag: + - '"20A877FF77D15DB9394FFDC45431F1B0F476E958D6807915F090C42ADDF27E2D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 05db48ab-9293-44e8-879b-26a2f4c67f91 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=662&$top=1747&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=664&$top=1745&$maxpagesize=2"}' + headers: + apim-request-id: + - 67ac452e-6b65-4514-ba69-3f099f87cde1 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:25 GMT + etag: + - '"ED7221C7DBE7EA401753FF8FC6EAF0D5E7C1497088C7FC0E63C9E44FEF18D138"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 67ac452e-6b65-4514-ba69-3f099f87cde1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=664&$top=1745&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=666&$top=1743&$maxpagesize=2"}' + headers: + apim-request-id: + - ce5e9589-a401-4c52-8c02-02b2643b1bd9 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:25 GMT + etag: + - '"3B078532B5EC9DBE79206B6F716E2BDC47B357EC00DF63F04D008412135C2912"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ce5e9589-a401-4c52-8c02-02b2643b1bd9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=666&$top=1743&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=668&$top=1741&$maxpagesize=2"}' + headers: + apim-request-id: + - 27e20eb5-b700-4d64-8d11-27bf8693ca56 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:25 GMT + etag: + - '"AB58748D921062A37C1D3ED5F8561610E5A9462C13D70E2F9A3B9637F5C71F4B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 27e20eb5-b700-4d64-8d11-27bf8693ca56 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=668&$top=1741&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=670&$top=1739&$maxpagesize=2"}' + headers: + apim-request-id: + - 1ed90d9f-551a-40e2-af16-cc265d850292 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:26 GMT + etag: + - '"6C7BC926603EFF5A7CEF23977F4326944B0A71924BDAC8439F11E8AD3013A0F0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1ed90d9f-551a-40e2-af16-cc265d850292 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=670&$top=1739&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=672&$top=1737&$maxpagesize=2"}' + headers: + apim-request-id: + - 34962466-312a-4cfa-93cd-b223043869f0 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:26 GMT + etag: + - '"ACBDAEF4089DACBC6CB42DC856C59861442580CF16558196912E7ECB5C535B79"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 34962466-312a-4cfa-93cd-b223043869f0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=672&$top=1737&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=674&$top=1735&$maxpagesize=2"}' + headers: + apim-request-id: + - 832cbde2-87cd-4289-9d98-dd2bc94b31fd + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:26 GMT + etag: + - '"B3188A4F6A6C4A7B1BD3E0720181A81D53B851B31288BF7DDD877067A04457A3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 832cbde2-87cd-4289-9d98-dd2bc94b31fd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=674&$top=1735&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=676&$top=1733&$maxpagesize=2"}' + headers: + apim-request-id: + - d2ed68e8-e3f8-4212-80cf-c30de5a9b1f2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:26 GMT + etag: + - '"E5CCC5D578FB88C640D9585D9937DFFA801305B4E3D71E2B1D3624C5AC990D81"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d2ed68e8-e3f8-4212-80cf-c30de5a9b1f2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=676&$top=1733&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=678&$top=1731&$maxpagesize=2"}' + headers: + apim-request-id: + - a155c878-aff9-457c-afe2-5adc548700a4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:26 GMT + etag: + - '"3504C002280A9598FD8811B6E538C25871D9BB5DF71066D65303BD495732DFE4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a155c878-aff9-457c-afe2-5adc548700a4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=678&$top=1731&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=680&$top=1729&$maxpagesize=2"}' + headers: + apim-request-id: + - f438287e-3e2f-4707-91bc-9f829ad41e49 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:26 GMT + etag: + - '"804653131C7637DE8AD7806326FEE7F3F17456F2680AAC3C375FD0F394FB698E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f438287e-3e2f-4707-91bc-9f829ad41e49 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=680&$top=1729&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=682&$top=1727&$maxpagesize=2"}' + headers: + apim-request-id: + - 27dbd0e3-48ac-4613-89ae-9c3afbaee31c + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:27 GMT + etag: + - '"66FCC9CBAAD3033512EC79317470E57FA5B1604B1C695129041BCB2AE2D705AF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 27dbd0e3-48ac-4613-89ae-9c3afbaee31c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=682&$top=1727&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=684&$top=1725&$maxpagesize=2"}' + headers: + apim-request-id: + - 37dac117-08e0-466a-a90c-8da3c75e5f04 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:27 GMT + etag: + - '"591DEAC09BB749E5A2FC4528FE12BE6B56F261D173FE8252782F7423E9C07658"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 37dac117-08e0-466a-a90c-8da3c75e5f04 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=684&$top=1725&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=686&$top=1723&$maxpagesize=2"}' + headers: + apim-request-id: + - ad1435bf-6c79-4857-bf17-140bc7cb995c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:27 GMT + etag: + - '"4E5669C7F696AF2355806AC68C2A922A0454174A95A39A90802B5185DB2AC160"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ad1435bf-6c79-4857-bf17-140bc7cb995c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=686&$top=1723&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=688&$top=1721&$maxpagesize=2"}' + headers: + apim-request-id: + - 89f3d6cb-1114-4660-9145-4561129144a0 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:27 GMT + etag: + - '"E9CB58469CF2A8F05FEC1C215760DEBFB48103F6CFD9AF003EA58DDBC89F60A5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 89f3d6cb-1114-4660-9145-4561129144a0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=688&$top=1721&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=690&$top=1719&$maxpagesize=2"}' + headers: + apim-request-id: + - 44aaac85-ec8b-475d-ac93-282e09e8a43b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:27 GMT + etag: + - '"B8E9C986F7E002791AB17FC6A4414B261350168C59575ECDEB2FC345562B9514"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 44aaac85-ec8b-475d-ac93-282e09e8a43b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=690&$top=1719&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=692&$top=1717&$maxpagesize=2"}' + headers: + apim-request-id: + - d06ccf2b-8b41-4a80-b157-2da44672f6fb + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:27 GMT + etag: + - '"19C10B04F017D072F42BBC45C6FC78AF3FAB46B0DBE12237BB67F60B64CAD8F6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d06ccf2b-8b41-4a80-b157-2da44672f6fb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=692&$top=1717&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=694&$top=1715&$maxpagesize=2"}' + headers: + apim-request-id: + - cc22216b-79f4-4617-9f16-d0d2132b2576 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:28 GMT + etag: + - '"A05B80B8741EF72638B92BC3A4B6E27BC48096820C93A38D4B5258084D5F9942"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cc22216b-79f4-4617-9f16-d0d2132b2576 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=694&$top=1715&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=696&$top=1713&$maxpagesize=2"}' + headers: + apim-request-id: + - f77dbf42-24cc-435b-be83-8f7039e5e75b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:28 GMT + etag: + - '"A9E25710C55D026F3ED0B583039F284439C9A03D23F8196094A0C6BF83EFBC70"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f77dbf42-24cc-435b-be83-8f7039e5e75b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=696&$top=1713&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=698&$top=1711&$maxpagesize=2"}' + headers: + apim-request-id: + - 8ad9f7de-dcf6-4e32-8f2f-c8504017cd80 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:28 GMT + etag: + - '"3165F6F8F18B72C2E9FCFED73BB61E4438BB2145391394407B79D6C09826A8DC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8ad9f7de-dcf6-4e32-8f2f-c8504017cd80 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=698&$top=1711&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1709&$maxpagesize=2"}' + headers: + apim-request-id: + - db654efa-a93d-4af6-bab7-38751c6b7bfb + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:28 GMT + etag: + - '"750164863DFEFB39C17FE4A7C2C85F8A72D97EF87424524228400A12476C79AB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - db654efa-a93d-4af6-bab7-38751c6b7bfb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1709&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=702&$top=1707&$maxpagesize=2"}' + headers: + apim-request-id: + - 3a425b87-9a68-4193-bbfe-24c54e99ebe5 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:28 GMT + etag: + - '"6665479F6ACD485DB87DB6AACAA3673C6608BEBEB0356834441AFFDA7EE8C345"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3a425b87-9a68-4193-bbfe-24c54e99ebe5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=702&$top=1707&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=704&$top=1705&$maxpagesize=2"}' + headers: + apim-request-id: + - d2cf9c85-ca05-49b5-b619-e33296f14075 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:29 GMT + etag: + - '"7409B969DC31982567F8BF412BDA37171620307673D13EEA225D9E1925FF7B64"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d2cf9c85-ca05-49b5-b619-e33296f14075 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=704&$top=1705&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=706&$top=1703&$maxpagesize=2"}' + headers: + apim-request-id: + - 192c1c4a-439a-42e7-a025-26c206bfc976 + cache-control: + - public,max-age=1 + content-length: + - '742' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:29 GMT + etag: + - '"4FFBA0FCCDFECA44E7B32B126E9416035CCA5BDE8003510CC079193ED110D814"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 192c1c4a-439a-42e7-a025-26c206bfc976 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=706&$top=1703&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=708&$top=1701&$maxpagesize=2"}' + headers: + apim-request-id: + - c99d5615-48c4-48a0-803d-d9c91bf2490b + cache-control: + - public,max-age=1 + content-length: + - '1017' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:29 GMT + etag: + - '"EB0A9AA27C60CB842848517136624220046E4A5DE7676BA7C9942541794C2038"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c99d5615-48c4-48a0-803d-d9c91bf2490b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=708&$top=1701&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=710&$top=1699&$maxpagesize=2"}' + headers: + apim-request-id: + - 74c03fb7-5b1b-4ee0-90b8-5c2623b0324c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:29 GMT + etag: + - '"F8D3FC79E23152252727922ACCBBDC5FB71F86B3089C70F60301BEA7754DE817"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 74c03fb7-5b1b-4ee0-90b8-5c2623b0324c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=710&$top=1699&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=712&$top=1697&$maxpagesize=2"}' + headers: + apim-request-id: + - 3c47be89-df1b-41a8-94d3-21e645a7cf39 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:29 GMT + etag: + - '"446375E11FAD641F43175BB043F3005A886827B1D440E31C4CB461B53FE2E04B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3c47be89-df1b-41a8-94d3-21e645a7cf39 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=712&$top=1697&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=714&$top=1695&$maxpagesize=2"}' + headers: + apim-request-id: + - d6183327-6106-4244-bcc1-5aab77af7b27 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:29 GMT + etag: + - '"B0938FD8EDC45AB49187DC3AF95B06E60EC50F829BB7FF2CB5B634598A9E7AEA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d6183327-6106-4244-bcc1-5aab77af7b27 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=714&$top=1695&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=716&$top=1693&$maxpagesize=2"}' + headers: + apim-request-id: + - a6e92d1e-6823-4d57-9f80-5b21ccbf1ecd + cache-control: + - public,max-age=1 + content-length: + - '743' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:30 GMT + etag: + - '"BBE331BF2A98F6C6493A2F77AB3504EBF07DBBDBB574CF0293E74ED9E41E2B94"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a6e92d1e-6823-4d57-9f80-5b21ccbf1ecd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=716&$top=1693&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=718&$top=1691&$maxpagesize=2"}' + headers: + apim-request-id: + - f16e3569-e764-4ebc-abe5-f430dbab1ed1 + cache-control: + - public,max-age=1 + content-length: + - '1016' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:30 GMT + etag: + - '"479AE8F17838F7D89C2461BADECEB84CDBE7B43E78421B4997F0D275AAE3149A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f16e3569-e764-4ebc-abe5-f430dbab1ed1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=718&$top=1691&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=720&$top=1689&$maxpagesize=2"}' + headers: + apim-request-id: + - 6b15f7a5-b7e3-4566-a896-58652fc5a6b8 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:30 GMT + etag: + - '"D825856B8AC8034C83B92EB793FDCF22B678DE9DC3C1BEE6BE5EF356C994B693"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6b15f7a5-b7e3-4566-a896-58652fc5a6b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=720&$top=1689&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=722&$top=1687&$maxpagesize=2"}' + headers: + apim-request-id: + - e92c3a8f-d7f4-432b-b471-b7c813534fdf + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:30 GMT + etag: + - '"5C9DB2762D093F93A999CF8140CB007F60B8BB4AF5D02D018D27CBA197F9E0E2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e92c3a8f-d7f4-432b-b471-b7c813534fdf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=722&$top=1687&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=724&$top=1685&$maxpagesize=2"}' + headers: + apim-request-id: + - 743d46ee-4301-4156-90d2-872923044f5a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:30 GMT + etag: + - '"1EEA9B5A7EB38745D69C70EFE2C6EDD11732A16A6506124D67E382EF2044840B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 743d46ee-4301-4156-90d2-872923044f5a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=724&$top=1685&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=726&$top=1683&$maxpagesize=2"}' + headers: + apim-request-id: + - ed0ab6d9-6983-4e2e-a7f4-f39f3e21ae68 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:30 GMT + etag: + - '"594E8BAC3065E553E4167544BAAC1D10F73D552D865C9C9A0D195C8FC4D173DB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ed0ab6d9-6983-4e2e-a7f4-f39f3e21ae68 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=726&$top=1683&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=728&$top=1681&$maxpagesize=2"}' + headers: + apim-request-id: + - 5609c933-a3c3-49d5-b677-bc9a38d5c54a + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:31 GMT + etag: + - '"57C239B191409102481BF50FC85DB534B14EFE29AF27A9CFBD35B691FAA5F62B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5609c933-a3c3-49d5-b677-bc9a38d5c54a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=728&$top=1681&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=730&$top=1679&$maxpagesize=2"}' + headers: + apim-request-id: + - afe0b2fd-fc67-4b0b-a2a6-f1bf8fddb441 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:31 GMT + etag: + - '"310B927689029268453B3EFD2B0F0FA85731609CDDEB574A901B4A93684DA0FE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - afe0b2fd-fc67-4b0b-a2a6-f1bf8fddb441 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=730&$top=1679&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=732&$top=1677&$maxpagesize=2"}' + headers: + apim-request-id: + - 9e6c11c9-c3ee-49f8-815d-729d7b9f9c17 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:31 GMT + etag: + - '"F14BCA6C675FCF35611320CBC3863BE0BD2D5A84932501C29BDBEEEDCEAB3FAB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9e6c11c9-c3ee-49f8-815d-729d7b9f9c17 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=732&$top=1677&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=734&$top=1675&$maxpagesize=2"}' + headers: + apim-request-id: + - 9307b1fa-42d4-4e22-8990-b6be559e6b11 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:31 GMT + etag: + - '"576F1A0521D620791BE600332989CAD56A281F17FBFCBBEF41ADBF8DA05C2A1C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9307b1fa-42d4-4e22-8990-b6be559e6b11 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=734&$top=1675&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=736&$top=1673&$maxpagesize=2"}' + headers: + apim-request-id: + - b66101f7-67f7-4d99-97cd-e48c08eba681 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:31 GMT + etag: + - '"7E70D382EB65BB1BB4736AD73F56E907707D3511897E9A4AE2642BF451D03C9B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b66101f7-67f7-4d99-97cd-e48c08eba681 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=736&$top=1673&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=738&$top=1671&$maxpagesize=2"}' + headers: + apim-request-id: + - b334ac2f-169a-47ce-b99d-e2cb0b8a121e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:31 GMT + etag: + - '"A5633843899217A7E02F9AEA204283AE0AEFD3B882B132FE44D2669EB8C9AB36"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b334ac2f-169a-47ce-b99d-e2cb0b8a121e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=738&$top=1671&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=740&$top=1669&$maxpagesize=2"}' + headers: + apim-request-id: + - 3d16afc7-d029-4fb4-b6c1-5667513ba243 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:32 GMT + etag: + - '"C4A201FA84A1F575AF3F1CDC77C700F491252F50D6E2507F1AF882C1FC10B10B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3d16afc7-d029-4fb4-b6c1-5667513ba243 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=740&$top=1669&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=742&$top=1667&$maxpagesize=2"}' + headers: + apim-request-id: + - dde780bc-7174-419a-a0b9-1fce05b59538 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:32 GMT + etag: + - '"7A73E29072BA3B3805FF196C44E446BCB474CD26D8AA9C1770519665E4BC99F5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dde780bc-7174-419a-a0b9-1fce05b59538 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=742&$top=1667&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=744&$top=1665&$maxpagesize=2"}' + headers: + apim-request-id: + - 3ca049a3-386f-4009-ae06-e7a88f08efdc + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:32 GMT + etag: + - '"772DC9C07E756CC63B5E6B9FAE374747FECA9EC0455E48B1067A21025F75EBEE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3ca049a3-386f-4009-ae06-e7a88f08efdc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=744&$top=1665&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=746&$top=1663&$maxpagesize=2"}' + headers: + apim-request-id: + - e9d84f36-8909-42d6-adbf-bbc5cb01348f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:32 GMT + etag: + - '"C145D09EFCDF3E51BA78F9668AEB144C46E7FB57C27470D76DDDAE22B61B1B15"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e9d84f36-8909-42d6-adbf-bbc5cb01348f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=746&$top=1663&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=748&$top=1661&$maxpagesize=2"}' + headers: + apim-request-id: + - 4c1bff9c-d330-4861-a202-95866102779c + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:32 GMT + etag: + - '"3A7AF037F41DAF33472AFA48F55896B7D1E05585B182E42375CC1748CD0106E6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4c1bff9c-d330-4861-a202-95866102779c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=748&$top=1661&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1659&$maxpagesize=2"}' + headers: + apim-request-id: + - 4984779c-f783-4e64-b31a-a663115edb75 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:32 GMT + etag: + - '"8483611359624988647C76DF6581CD0D68CFBC6F791ABE69BB9BD30C7FF33AD0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4984779c-f783-4e64-b31a-a663115edb75 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1659&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=752&$top=1657&$maxpagesize=2"}' + headers: + apim-request-id: + - a3bbc85a-faef-412d-a849-68057c1c1642 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:33 GMT + etag: + - '"BF1804FE122D013A71F337FF8729A7A41C6CC297B7F0463DD09A91BB3F1D921C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a3bbc85a-faef-412d-a849-68057c1c1642 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=752&$top=1657&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=754&$top=1655&$maxpagesize=2"}' + headers: + apim-request-id: + - 6fc3cd78-99c0-44e7-ae22-3bc2210e88c5 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:33 GMT + etag: + - '"1F96EB2BCF14AAFB2F69EEBFA08E060F4E0FD6042732E3B064471A31231491F4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6fc3cd78-99c0-44e7-ae22-3bc2210e88c5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=754&$top=1655&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=756&$top=1653&$maxpagesize=2"}' + headers: + apim-request-id: + - e6837f9f-4202-483b-b932-44f2d542cec6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:33 GMT + etag: + - '"AB017831002FEF15509E4E74185DC5BD0C3ED33B798BEB9628F5CEDA9C07801F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e6837f9f-4202-483b-b932-44f2d542cec6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=756&$top=1653&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=758&$top=1651&$maxpagesize=2"}' + headers: + apim-request-id: + - 7e66fc41-6d99-469d-b57a-52c780b4c0f1 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:33 GMT + etag: + - '"C3505956D1455200A74674EC474EC8FFF110B136C0F26F28B9AC26DEC0877564"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7e66fc41-6d99-469d-b57a-52c780b4c0f1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=758&$top=1651&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=760&$top=1649&$maxpagesize=2"}' + headers: + apim-request-id: + - 4b8c7c81-01e0-4142-be3c-7405cd8f1cf7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:33 GMT + etag: + - '"9F87009880437CD58770C18F25200497A4A6B9A1C816B52E844F988754485856"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4b8c7c81-01e0-4142-be3c-7405cd8f1cf7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=760&$top=1649&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=762&$top=1647&$maxpagesize=2"}' + headers: + apim-request-id: + - c9e9cd69-855b-4490-bfd3-fff44fe0c6ad + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:33 GMT + etag: + - '"2FFDD411F06713090925C39AAB5CA1517209C458A7058572266FC29391828648"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c9e9cd69-855b-4490-bfd3-fff44fe0c6ad + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=762&$top=1647&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=764&$top=1645&$maxpagesize=2"}' + headers: + apim-request-id: + - 0e927ab2-7074-4644-991b-9aea682548d5 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:34 GMT + etag: + - '"2280E78658223900D205550B69E44CD159EB3FEAEFD47182718641A7F3526EC7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0e927ab2-7074-4644-991b-9aea682548d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=764&$top=1645&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=766&$top=1643&$maxpagesize=2"}' + headers: + apim-request-id: + - f336efd3-2c08-474e-9651-5d924179106d + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:34 GMT + etag: + - '"2DF762AF5C29CBFA60CA8E3FD264E2EC762E422D52E1D2D8681BB84DE89E4019"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f336efd3-2c08-474e-9651-5d924179106d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=766&$top=1643&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=768&$top=1641&$maxpagesize=2"}' + headers: + apim-request-id: + - 84642f13-927d-4a8f-a378-2971c13a6aae + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:34 GMT + etag: + - '"927F589161FF693BB86E5FC0CD426F80CA4EE140C3F769C6B9B1DDD4830DBA0A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 84642f13-927d-4a8f-a378-2971c13a6aae + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=768&$top=1641&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=770&$top=1639&$maxpagesize=2"}' + headers: + apim-request-id: + - a0964b56-572f-4c8c-9440-00ca30b79865 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:34 GMT + etag: + - '"27E3F1555B5AB57DE3FC0C570DFF959AD44BF747EE42EBC25FB683A35AB2AAD6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a0964b56-572f-4c8c-9440-00ca30b79865 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=770&$top=1639&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=772&$top=1637&$maxpagesize=2"}' + headers: + apim-request-id: + - 2378b8e6-7fa4-4cf8-af00-e74594d844e7 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:34 GMT + etag: + - '"54889D82F93D1266B8FA9955C1BF0660CEDCB9AB02D94D182CC69EFD7781BA31"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2378b8e6-7fa4-4cf8-af00-e74594d844e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=772&$top=1637&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=774&$top=1635&$maxpagesize=2"}' + headers: + apim-request-id: + - ca34fffd-ee4d-479c-b664-7fb9a7caf5b2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:34 GMT + etag: + - '"F7971B5D94A2DDF1797864077ABAB2DF3F9C9D8282A54ABC441CDBF1FF8177AE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ca34fffd-ee4d-479c-b664-7fb9a7caf5b2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=774&$top=1635&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=776&$top=1633&$maxpagesize=2"}' + headers: + apim-request-id: + - 6d87b81d-bcd9-451d-9160-65a69fb72771 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:35 GMT + etag: + - '"928838E20C1473AF6935FB1EC3EDD1BF50E80C86C4C2915F2D4133D15A54E3CF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6d87b81d-bcd9-451d-9160-65a69fb72771 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=776&$top=1633&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=778&$top=1631&$maxpagesize=2"}' + headers: + apim-request-id: + - cffd53d7-e1bd-46e9-9b4e-2e382a72b984 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:35 GMT + etag: + - '"9C3D8035E97326F8752A124EFF667E81D744B9696152CDD654530C8AA11EB1F4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cffd53d7-e1bd-46e9-9b4e-2e382a72b984 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=778&$top=1631&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=780&$top=1629&$maxpagesize=2"}' + headers: + apim-request-id: + - 7cca35f3-448a-40ea-a8a0-275eb061c709 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:35 GMT + etag: + - '"8985ED1052C9ADBE21C375D7DF7BCE3932784E28AD58F3197502BA0BEF397844"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7cca35f3-448a-40ea-a8a0-275eb061c709 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=780&$top=1629&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=782&$top=1627&$maxpagesize=2"}' + headers: + apim-request-id: + - 28a54e7e-7f81-4f1d-a5b9-561a9c49e47e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:35 GMT + etag: + - '"5B9E25774EE865EDA812427FCFA33B23CDC1A6A0E4E24AB9F150543F4F4280EA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 28a54e7e-7f81-4f1d-a5b9-561a9c49e47e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=782&$top=1627&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=784&$top=1625&$maxpagesize=2"}' + headers: + apim-request-id: + - 82af0c89-7eb5-4374-9632-9e83f5cf8bc1 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:35 GMT + etag: + - '"2C578909924232F4925E688575194CFB5D89791EA05F3AA5BEE0422625D43E7B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 82af0c89-7eb5-4374-9632-9e83f5cf8bc1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=784&$top=1625&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=786&$top=1623&$maxpagesize=2"}' + headers: + apim-request-id: + - 6123c01c-c6d1-4bf5-a6a5-fcf957ed7235 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:35 GMT + etag: + - '"23749BA586BFEE059AA9FFC6359FB68D5A1EA3ABE043C80042E820874B61ACCD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6123c01c-c6d1-4bf5-a6a5-fcf957ed7235 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=786&$top=1623&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=788&$top=1621&$maxpagesize=2"}' + headers: + apim-request-id: + - 581cf3a6-3bfa-45de-8db4-3a5803ffaa3d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:36 GMT + etag: + - '"BEDA51FCB3188336E474F25F051091BC05FEB2B9E787DBBBBF9428AE3260464F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 581cf3a6-3bfa-45de-8db4-3a5803ffaa3d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=788&$top=1621&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=790&$top=1619&$maxpagesize=2"}' + headers: + apim-request-id: + - 4ebf7171-bbb3-4a96-8bfd-833f6b618f26 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:36 GMT + etag: + - '"50D1742EA693F6C871CB97E203D3182D6DFF5BD6060C9CFE308B21E7C469B47D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4ebf7171-bbb3-4a96-8bfd-833f6b618f26 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=790&$top=1619&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=792&$top=1617&$maxpagesize=2"}' + headers: + apim-request-id: + - cd59f2f5-ece0-4fb1-a465-fd237319938a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:36 GMT + etag: + - '"5185D4EAE6025BA2D96D26F600547B0BFDE294E9574A1383078CFA6116EF4A39"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cd59f2f5-ece0-4fb1-a465-fd237319938a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=792&$top=1617&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=794&$top=1615&$maxpagesize=2"}' + headers: + apim-request-id: + - fab79475-ccfd-4a5e-aacf-1e62ce06539f + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:36 GMT + etag: + - '"9279A3EC666E302510D9CCF39156C389C87E4F9B7AF03DE47B663863C9D806FF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fab79475-ccfd-4a5e-aacf-1e62ce06539f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=794&$top=1615&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=796&$top=1613&$maxpagesize=2"}' + headers: + apim-request-id: + - e7460a16-f8b9-4bf5-a41a-66e51341c90e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:36 GMT + etag: + - '"A6A4DB56D20848A4A54C876B8BAD023F396905A95CCB81E5531BE6332D6D21F1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e7460a16-f8b9-4bf5-a41a-66e51341c90e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=796&$top=1613&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=798&$top=1611&$maxpagesize=2"}' + headers: + apim-request-id: + - 04ff700c-9d46-4359-9527-479827e895c3 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:37 GMT + etag: + - '"CC01AF67F4F443967F467BCF860DF7C35DAACCBBF8005D0BD23D37DEA10666A4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 04ff700c-9d46-4359-9527-479827e895c3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=798&$top=1611&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1609&$maxpagesize=2"}' + headers: + apim-request-id: + - 4becdb3a-9972-41c0-94cd-85e4c48ff6a9 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:37 GMT + etag: + - '"4DF3256A7D4E728DC4984930789FBE4DE2990F3E99261FA1E15A9F77CC4A5456"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4becdb3a-9972-41c0-94cd-85e4c48ff6a9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1609&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=802&$top=1607&$maxpagesize=2"}' + headers: + apim-request-id: + - ec59d3c3-5c3e-4314-8a50-17db7f26bfbd + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:37 GMT + etag: + - '"2D17C8640AE05F2AAEACC93B7418EDF8DEC14F08229040FEE300CF17F7B8AFEE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ec59d3c3-5c3e-4314-8a50-17db7f26bfbd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=802&$top=1607&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=804&$top=1605&$maxpagesize=2"}' + headers: + apim-request-id: + - 381e4dd5-533d-461f-aaf2-441f834c4c61 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:37 GMT + etag: + - '"D7943B9FDFA694BCD9B00CE2B3937315E7046EE05E284B0B58628F1D7A90AA58"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 381e4dd5-533d-461f-aaf2-441f834c4c61 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=804&$top=1605&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=806&$top=1603&$maxpagesize=2"}' + headers: + apim-request-id: + - 2e80570c-6c7d-44e7-b817-09aedf7feece + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:37 GMT + etag: + - '"94EC38B213C449FD999238032911CAFB2C875A81078265909D3250577DAEE6C0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2e80570c-6c7d-44e7-b817-09aedf7feece + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=806&$top=1603&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=808&$top=1601&$maxpagesize=2"}' + headers: + apim-request-id: + - dc8c3a8d-dfa8-42b4-afcf-87bb9d56dbbe + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:37 GMT + etag: + - '"039A3D1658E3CC9FA9FCCA4A1080EBCEE8FC56F401A95AF4C57A5B68134D36CB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dc8c3a8d-dfa8-42b4-afcf-87bb9d56dbbe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=808&$top=1601&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=810&$top=1599&$maxpagesize=2"}' + headers: + apim-request-id: + - 6b404b5b-d88a-4fbb-80d6-6e21b0091ac5 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:38 GMT + etag: + - '"0AC1D95DB082422E102255C4125E53742678164F9114BDD35E835AEFD38B2168"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6b404b5b-d88a-4fbb-80d6-6e21b0091ac5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=810&$top=1599&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=812&$top=1597&$maxpagesize=2"}' + headers: + apim-request-id: + - cacd0408-52b3-438c-abbc-d90b0f2a1860 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:38 GMT + etag: + - '"6433571DEF4B890607815E4313718BA3A4586E0305CC681943A39864E2F5AFBA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cacd0408-52b3-438c-abbc-d90b0f2a1860 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=812&$top=1597&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=814&$top=1595&$maxpagesize=2"}' + headers: + apim-request-id: + - 674855be-8098-4e0f-8923-68f7bac99bf5 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:38 GMT + etag: + - '"D092AC5E80F3C47525F71541D2415E528A3597FAAC85172EA3054FB413BD6213"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 674855be-8098-4e0f-8923-68f7bac99bf5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=814&$top=1595&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=816&$top=1593&$maxpagesize=2"}' + headers: + apim-request-id: + - 80ad3c88-9aa0-4882-9274-6c20553d9e03 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:38 GMT + etag: + - '"F21340204331E6BD1A7F6C3F097C838933B76304C090FAC2EC388CE3822D05A5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 80ad3c88-9aa0-4882-9274-6c20553d9e03 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=816&$top=1593&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=818&$top=1591&$maxpagesize=2"}' + headers: + apim-request-id: + - ae2df8fa-6a73-4a08-a460-3bf9ae730701 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:38 GMT + etag: + - '"3101B0008E08F248C2349FEE9DF47E65998FE2D7E246329694703A772C31F647"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ae2df8fa-6a73-4a08-a460-3bf9ae730701 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=818&$top=1591&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=820&$top=1589&$maxpagesize=2"}' + headers: + apim-request-id: + - a08ffeae-aea3-4bed-901b-08dd3e615360 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:38 GMT + etag: + - '"DD7950CF4882525479EE1FF1DB4BB9980A519856F176554A6C6C30F8784FDBE4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a08ffeae-aea3-4bed-901b-08dd3e615360 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=820&$top=1589&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=822&$top=1587&$maxpagesize=2"}' + headers: + apim-request-id: + - 48505bc5-4ee7-4807-9e2b-38d3d314cd5a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:39 GMT + etag: + - '"E1286D2182623CEEBD4E7C654629F57FA6D15EE279858619A065B04568CD7C63"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 48505bc5-4ee7-4807-9e2b-38d3d314cd5a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=822&$top=1587&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=824&$top=1585&$maxpagesize=2"}' + headers: + apim-request-id: + - 217d0ffc-d166-4cd3-a062-8fb4fbfa2767 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:39 GMT + etag: + - '"215B57C5A235E7B0C68E119836DCD89CE654AB159A3F7A15853E22DE89116787"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 217d0ffc-d166-4cd3-a062-8fb4fbfa2767 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=824&$top=1585&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=826&$top=1583&$maxpagesize=2"}' + headers: + apim-request-id: + - 604b51ba-92c0-4f7c-b57c-a45eca5fe39b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:39 GMT + etag: + - '"46E3496113E2E45805298414C78342A792EE83CB527F7D444E686C2C79B17D70"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 604b51ba-92c0-4f7c-b57c-a45eca5fe39b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=826&$top=1583&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=828&$top=1581&$maxpagesize=2"}' + headers: + apim-request-id: + - 32650462-24bb-4d2a-9454-4e164c8dc714 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:39 GMT + etag: + - '"93DE6C2D12698B9CB58313A47DBC56A90BD99D81A17DE5BE3EF6A8FBA07735B1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 32650462-24bb-4d2a-9454-4e164c8dc714 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=828&$top=1581&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=830&$top=1579&$maxpagesize=2"}' + headers: + apim-request-id: + - dbc81cd6-2bd7-4e0d-aead-4a2b106e7af0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:39 GMT + etag: + - '"86A587AA010BE27EC13C36E74266C49D7DDE42C1BAF9C8D0C5122305771F984A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dbc81cd6-2bd7-4e0d-aead-4a2b106e7af0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=830&$top=1579&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=832&$top=1577&$maxpagesize=2"}' + headers: + apim-request-id: + - 58e20a93-4650-44fe-9306-13217be58591 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:40 GMT + etag: + - '"49ADD61029383CE1F2E53F676B49F3483E6B3EB10F509E47B015A9B7CCCB17EB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 58e20a93-4650-44fe-9306-13217be58591 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=832&$top=1577&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=834&$top=1575&$maxpagesize=2"}' + headers: + apim-request-id: + - 6ca12e82-ba66-4c84-902d-96b86cc777b6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:40 GMT + etag: + - '"8B2351B32130D89E1647DB4A43C8B0E0A2B6A65A05065F3742999788992E3D4F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6ca12e82-ba66-4c84-902d-96b86cc777b6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=834&$top=1575&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=836&$top=1573&$maxpagesize=2"}' + headers: + apim-request-id: + - 8f95ba08-d08c-48bd-bf05-7349538b802d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:40 GMT + etag: + - '"0F2C461C2F3A5B789182BEB81C1452B794CC0F0DDB567CA30E5471D90283BAEC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8f95ba08-d08c-48bd-bf05-7349538b802d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=836&$top=1573&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=838&$top=1571&$maxpagesize=2"}' + headers: + apim-request-id: + - 9aeb13db-59dc-481b-860b-c5e0151607f7 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:40 GMT + etag: + - '"0E1DD95EE1B5F8BBE82CE8CA28792A0B8FF2EB90574F9E8F22CD25F7A4BF612E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9aeb13db-59dc-481b-860b-c5e0151607f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=838&$top=1571&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=840&$top=1569&$maxpagesize=2"}' + headers: + apim-request-id: + - 8fe357bf-7ab2-4ba0-a867-3b839a4de662 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:40 GMT + etag: + - '"384B31896D971B3F46FF47E77297B72E9C193FD044BE310FC2BD0BC8CBA5FC48"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8fe357bf-7ab2-4ba0-a867-3b839a4de662 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=840&$top=1569&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=842&$top=1567&$maxpagesize=2"}' + headers: + apim-request-id: + - 19f489ef-f31b-4c6f-a9d8-0d3d9ff3953e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:40 GMT + etag: + - '"7900743693174DF7A479ECCA6A915300DB4377E5A808558D8E5F2EB41BC037EC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 19f489ef-f31b-4c6f-a9d8-0d3d9ff3953e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=842&$top=1567&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=844&$top=1565&$maxpagesize=2"}' + headers: + apim-request-id: + - e84ce840-b0b5-428b-b67a-54a78a9981b9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:41 GMT + etag: + - '"41DF56278DE887681838DA5DD6DD6B4A7DB9A068CC4E0FCAF244270414E76DD5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e84ce840-b0b5-428b-b67a-54a78a9981b9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=844&$top=1565&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=846&$top=1563&$maxpagesize=2"}' + headers: + apim-request-id: + - 083b2395-5731-4b5f-a58a-cc0bc8edf2b9 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:41 GMT + etag: + - '"410097377A546B7DA9A083C2134A08C372A373FF36DC1A6644EE4E9D079B9E28"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 083b2395-5731-4b5f-a58a-cc0bc8edf2b9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=846&$top=1563&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=848&$top=1561&$maxpagesize=2"}' + headers: + apim-request-id: + - 969043bb-24bc-4c50-8d38-3a949f1f202d + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:41 GMT + etag: + - '"17B8E358C64A5765BB4AB2F891464123403A8F887E3DEBF9E3C2ADEEEEB6C051"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 969043bb-24bc-4c50-8d38-3a949f1f202d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=848&$top=1561&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1559&$maxpagesize=2"}' + headers: + apim-request-id: + - 48cc0d2a-4948-48fe-957b-27743c28898e + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:41 GMT + etag: + - '"BA994C9D6F3B4D01C1BCDDDB6F217AB1336D65C11A4984FC2FB3177D53C260CA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 48cc0d2a-4948-48fe-957b-27743c28898e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1559&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=852&$top=1557&$maxpagesize=2"}' + headers: + apim-request-id: + - 46fc98c1-ea57-42d9-95d6-98a3bcb852be + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:41 GMT + etag: + - '"BE3F489B375C7495531E914ADC226BA91DE207404BB16BA0037472E7F04EA9BD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 46fc98c1-ea57-42d9-95d6-98a3bcb852be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=852&$top=1557&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=854&$top=1555&$maxpagesize=2"}' + headers: + apim-request-id: + - 032a4018-765f-40df-bb25-2cd0c4e1c99f + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:41 GMT + etag: + - '"DA219AAA122E074BA469F46F6796840958BC13CC663070824AD901DC5B4653B5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 032a4018-765f-40df-bb25-2cd0c4e1c99f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=854&$top=1555&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=856&$top=1553&$maxpagesize=2"}' + headers: + apim-request-id: + - 4a6f328f-9566-4a0a-aebf-489da52e6965 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:42 GMT + etag: + - '"6B1CBD0056AD67A27D4C881617204E4739E86BE2416D6A7B6CD3CCD727936316"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4a6f328f-9566-4a0a-aebf-489da52e6965 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=856&$top=1553&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=858&$top=1551&$maxpagesize=2"}' + headers: + apim-request-id: + - b2e34e7f-fea2-4bb7-970e-64c2f48d41b2 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:42 GMT + etag: + - '"1D6B9D8710C2718005D335CD3AAC51ED30F269DE5967E21A294E2A3CA56B5F9E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b2e34e7f-fea2-4bb7-970e-64c2f48d41b2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=858&$top=1551&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=860&$top=1549&$maxpagesize=2"}' + headers: + apim-request-id: + - 8a4e23e6-a090-4fae-bb3a-bc820ac06c03 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:42 GMT + etag: + - '"17E353FD84707FACEEF3F54B057A93B9CCD0507B627BD4532CB8FDA42ACA3BAE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8a4e23e6-a090-4fae-bb3a-bc820ac06c03 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=860&$top=1549&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=862&$top=1547&$maxpagesize=2"}' + headers: + apim-request-id: + - db874bab-7cdd-49c9-9fa1-e0c545783b8a + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:42 GMT + etag: + - '"F48AE65C741A2E44E966747630E4369FF522838D4CA1D6612E3641BCEE73BE22"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - db874bab-7cdd-49c9-9fa1-e0c545783b8a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=862&$top=1547&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=864&$top=1545&$maxpagesize=2"}' + headers: + apim-request-id: + - a4647956-8b0b-47b0-87bc-bab655d5d714 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:42 GMT + etag: + - '"F66EF079A75EE57D8C95D553014773BAE7C1ECE93D177B043DA88749B86FFD0F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a4647956-8b0b-47b0-87bc-bab655d5d714 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=864&$top=1545&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=866&$top=1543&$maxpagesize=2"}' + headers: + apim-request-id: + - 3c90bdc9-3d56-447d-b061-2b013c503882 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:43 GMT + etag: + - '"F86D9C583ECC7CCBA5FDD420F60DA2C0DFEE05DD7BBB09814D8E4BB7A29C7C90"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3c90bdc9-3d56-447d-b061-2b013c503882 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=866&$top=1543&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=868&$top=1541&$maxpagesize=2"}' + headers: + apim-request-id: + - faa19672-eb78-4def-82da-eba78bb15964 + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:43 GMT + etag: + - '"4D4C3B3E74C616863DC16D1BC5A5E5DF7133A12CC0931F46A516FFAB84544A40"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - faa19672-eb78-4def-82da-eba78bb15964 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=868&$top=1541&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=870&$top=1539&$maxpagesize=2"}' + headers: + apim-request-id: + - 56430885-6347-494d-b9e6-ac4d03f05e7b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:43 GMT + etag: + - '"CF13FE55D96161D3193EFAAC33B04158EE1FB3641CEA83DB5807C9843966BD6C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 56430885-6347-494d-b9e6-ac4d03f05e7b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=870&$top=1539&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=872&$top=1537&$maxpagesize=2"}' + headers: + apim-request-id: + - 4fc2c89f-b497-4081-a753-4634408af529 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:43 GMT + etag: + - '"B766913FFFA0744119438548CF9FD132BFDEAB8C78DC5D795B92742F95CB2C56"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4fc2c89f-b497-4081-a753-4634408af529 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=872&$top=1537&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=874&$top=1535&$maxpagesize=2"}' + headers: + apim-request-id: + - fc0731b8-3f91-45cb-8170-ea7234cad280 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:43 GMT + etag: + - '"AB581F00F26384189595B9225569C5525EC7301DC490BFF30DDF0634EC774D79"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fc0731b8-3f91-45cb-8170-ea7234cad280 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=874&$top=1535&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=876&$top=1533&$maxpagesize=2"}' + headers: + apim-request-id: + - 469629fe-9022-466f-aa23-67662063bf14 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:43 GMT + etag: + - '"922810FEC669AACF723C6F45988DFF677CD16A4A90F9E378B51C0ADA489C9444"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 469629fe-9022-466f-aa23-67662063bf14 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=876&$top=1533&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=878&$top=1531&$maxpagesize=2"}' + headers: + apim-request-id: + - 574b53bd-1f58-4a8f-8052-beb8597756cb + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:44 GMT + etag: + - '"8C6B46094770936FC62BC6BB4577E3C1471E86E441E1B9D041D80CDA999B8B59"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 574b53bd-1f58-4a8f-8052-beb8597756cb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=878&$top=1531&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=880&$top=1529&$maxpagesize=2"}' + headers: + apim-request-id: + - 7a2a8c87-bba0-4752-839d-3bec121d915e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:44 GMT + etag: + - '"FAFE764EB1FF1A72843BA53DB115EC5A11F16ABF86E58161A8B37E1E8C677AA2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7a2a8c87-bba0-4752-839d-3bec121d915e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=880&$top=1529&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=882&$top=1527&$maxpagesize=2"}' + headers: + apim-request-id: + - 984e9ac6-e2b9-4b9a-9c3b-5f88fa1854cf + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:44 GMT + etag: + - '"D6FD79904F6CF61BAB88219BCCE9DB2A8BDEF02303BF8E6FB8E391423390F299"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 984e9ac6-e2b9-4b9a-9c3b-5f88fa1854cf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=882&$top=1527&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=884&$top=1525&$maxpagesize=2"}' + headers: + apim-request-id: + - ab3448ae-b7ef-4a36-93e3-c6727338f744 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:44 GMT + etag: + - '"C9068B54D4DD7F79ED98F589A9234BF3EC081B593780D77ACEC07E2453B24E13"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ab3448ae-b7ef-4a36-93e3-c6727338f744 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=884&$top=1525&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=886&$top=1523&$maxpagesize=2"}' + headers: + apim-request-id: + - 361f4123-7030-4a00-8798-9840f6347852 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:44 GMT + etag: + - '"00CDD3B69DDA48EA6399856309715BC61C22ED071D20F1AB1B9DB952677A998B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 361f4123-7030-4a00-8798-9840f6347852 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=886&$top=1523&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=888&$top=1521&$maxpagesize=2"}' + headers: + apim-request-id: + - 0ab34d6d-4fde-4072-85bf-735753fb8bf3 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:44 GMT + etag: + - '"80B6BF63E5B72ACB5640474F39305FEECD3FADD331A11C7F97CA1E5918A969BE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0ab34d6d-4fde-4072-85bf-735753fb8bf3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=888&$top=1521&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=890&$top=1519&$maxpagesize=2"}' + headers: + apim-request-id: + - df5ab39e-d4df-4986-acb5-8431fe1874c0 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:45 GMT + etag: + - '"342FEB7EA76F5F10FDD8FF836A9AF21A02A7143A695211B1FC6592EFAB88CC68"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - df5ab39e-d4df-4986-acb5-8431fe1874c0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=890&$top=1519&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=892&$top=1517&$maxpagesize=2"}' + headers: + apim-request-id: + - b837875f-599a-4174-8ee5-1021817fbdc6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:45 GMT + etag: + - '"3DB624C3AE18F133820EC4E423A26FCA68D9811F7A576F5D04B29A09AD97F771"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b837875f-599a-4174-8ee5-1021817fbdc6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=892&$top=1517&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=894&$top=1515&$maxpagesize=2"}' + headers: + apim-request-id: + - 43ab859c-03fb-486c-92a7-c3449edff80c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:45 GMT + etag: + - '"A36C3CFFE75671493ED1A0DDAE95756310FA19063C9D53EBA6F327121129D3B0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 43ab859c-03fb-486c-92a7-c3449edff80c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=894&$top=1515&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=896&$top=1513&$maxpagesize=2"}' + headers: + apim-request-id: + - b380606a-e71c-47b0-b014-215506fc0edf + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:45 GMT + etag: + - '"38B5A8ED2D59C56F53F50C702788262A53DEE46D6D98D30481A0A6A97C8D6385"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b380606a-e71c-47b0-b014-215506fc0edf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=896&$top=1513&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=898&$top=1511&$maxpagesize=2"}' + headers: + apim-request-id: + - 471169ee-6f77-4460-a690-6664b33bf620 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:45 GMT + etag: + - '"034D4D4BD653D8416ED54CA77AE14D786874C6996A3805F98DE0F24A1D4E6207"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 471169ee-6f77-4460-a690-6664b33bf620 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=898&$top=1511&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1509&$maxpagesize=2"}' + headers: + apim-request-id: + - 2ce3c9c8-bbdc-423a-8385-629c3845b8e2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:45 GMT + etag: + - '"32A64E6F7D4AA4565EB1A2C8D445CB75924CFF8CD236CB2A6700237E907A2581"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2ce3c9c8-bbdc-423a-8385-629c3845b8e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1509&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=902&$top=1507&$maxpagesize=2"}' + headers: + apim-request-id: + - 056a91b6-7dec-4ad5-84f4-842b03ebc0fa + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:46 GMT + etag: + - '"5DEE15F6422A5CB100B134AA18992121782D115A66E0A2A294043A64399F6C66"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 056a91b6-7dec-4ad5-84f4-842b03ebc0fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=902&$top=1507&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=904&$top=1505&$maxpagesize=2"}' + headers: + apim-request-id: + - 57af728c-01ad-4834-a10c-cb44b0b10262 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:46 GMT + etag: + - '"E63478936754C9DB3AB68F467B4F3C1292FD8B1FEB8F3D982B49388CF26FAAA8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 57af728c-01ad-4834-a10c-cb44b0b10262 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=904&$top=1505&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=906&$top=1503&$maxpagesize=2"}' + headers: + apim-request-id: + - 9bcb6b17-d702-4946-b030-6966a7405e20 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:47 GMT + etag: + - '"DA092BCB664DFBEACDB1CAE4D9A6FC038EE4464F68E1E00E493E515EB1F10705"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9bcb6b17-d702-4946-b030-6966a7405e20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=906&$top=1503&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=908&$top=1501&$maxpagesize=2"}' + headers: + apim-request-id: + - bee6605c-7abe-47b2-93c8-f92c81d2998c + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:47 GMT + etag: + - '"280F9F876E1E7E419063C2860BCEF23DD444B7BA08908686859DD2FB6530B7C3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bee6605c-7abe-47b2-93c8-f92c81d2998c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=908&$top=1501&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=910&$top=1499&$maxpagesize=2"}' + headers: + apim-request-id: + - 5158a7f5-cc69-4bb7-88bd-633f92c02d49 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:47 GMT + etag: + - '"31BCA821BBBBCA180C72ABFC3B8F4F19AF666B199CB5B1BF068AE9E2574884C8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5158a7f5-cc69-4bb7-88bd-633f92c02d49 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=910&$top=1499&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=912&$top=1497&$maxpagesize=2"}' + headers: + apim-request-id: + - 6e9eecac-7c25-460b-92ef-37062951d422 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:47 GMT + etag: + - '"04DC1EE5A1405E8629710213EB94AE2A47D496E3E9428990C676722F70597B64"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6e9eecac-7c25-460b-92ef-37062951d422 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=912&$top=1497&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=914&$top=1495&$maxpagesize=2"}' + headers: + apim-request-id: + - c24a5e79-e6ef-4a6a-b70f-377bcb5065ff + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:47 GMT + etag: + - '"47948C74224BEF683BF0725D807FBB6517DC21F5FF632D82AC6A96B4CB043F79"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c24a5e79-e6ef-4a6a-b70f-377bcb5065ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=914&$top=1495&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=916&$top=1493&$maxpagesize=2"}' + headers: + apim-request-id: + - 3ef4d9b2-34f7-4fa9-bdd3-cceb3d5e4271 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:48 GMT + etag: + - '"5026CE59191F5B4FBAA92179E6AF94C447B537BF32369F1E0D1CCA7BB6C8C98E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3ef4d9b2-34f7-4fa9-bdd3-cceb3d5e4271 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=916&$top=1493&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=918&$top=1491&$maxpagesize=2"}' + headers: + apim-request-id: + - 0e937076-ce61-4518-b9c8-25b798c577cd + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:48 GMT + etag: + - '"FF81AE7F8402BA99B1FD89E02FB2F7E27538412375B8044C510E786ACA69EE58"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0e937076-ce61-4518-b9c8-25b798c577cd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=918&$top=1491&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=920&$top=1489&$maxpagesize=2"}' + headers: + apim-request-id: + - c91ac6af-0334-4ca8-b2ea-98b833961b9b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:48 GMT + etag: + - '"B0E6B1A4AF1A8825C27ABE349C8653BFFEDEEA23E641ED4C6B1010E5323698F2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c91ac6af-0334-4ca8-b2ea-98b833961b9b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=920&$top=1489&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=922&$top=1487&$maxpagesize=2"}' + headers: + apim-request-id: + - f1c44e37-4029-46b7-8752-5e35fa41e353 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:48 GMT + etag: + - '"D4ADC6C50408A52F7456810634CF9F99B3A3D8D80C9464B86FED3D35206725FA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f1c44e37-4029-46b7-8752-5e35fa41e353 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=922&$top=1487&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=924&$top=1485&$maxpagesize=2"}' + headers: + apim-request-id: + - de54d315-f345-4c81-9d2c-d4d84d62fe63 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:48 GMT + etag: + - '"099A633FB5D49B4F7F67A1156419B171F8CA00B174E468B718DB32511AE544F5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - de54d315-f345-4c81-9d2c-d4d84d62fe63 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=924&$top=1485&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=926&$top=1483&$maxpagesize=2"}' + headers: + apim-request-id: + - 7a8a64b1-1134-4ef7-95d1-c97b7713c5f4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:48 GMT + etag: + - '"793C9D02319B7D388ABC8FE116260FB551A1A18788A33CD90582A3653EEFB884"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7a8a64b1-1134-4ef7-95d1-c97b7713c5f4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=926&$top=1483&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=928&$top=1481&$maxpagesize=2"}' + headers: + apim-request-id: + - 3ab6cd33-b68e-4383-90c4-cba1d6a62a12 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:49 GMT + etag: + - '"D509FC7347833DDB6FAF2018972ACFBFA9F05DEC67189BF5AA44CCB42787B317"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3ab6cd33-b68e-4383-90c4-cba1d6a62a12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=928&$top=1481&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=930&$top=1479&$maxpagesize=2"}' + headers: + apim-request-id: + - 5befa2ba-e2aa-4b84-8eb3-b81f884dd609 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:49 GMT + etag: + - '"32E2A0C5AA73DE7057E7A4A6DD1202DA313A99D0BCE525902A8E0975E4FC23B9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5befa2ba-e2aa-4b84-8eb3-b81f884dd609 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=930&$top=1479&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=932&$top=1477&$maxpagesize=2"}' + headers: + apim-request-id: + - 4e646e01-9de0-47f1-b1cc-5c50c2916617 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:49 GMT + etag: + - '"C956EE560ADD6FCFF8454624C09B50E915BC970FA8348BB315B1D858474E1183"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4e646e01-9de0-47f1-b1cc-5c50c2916617 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=932&$top=1477&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=934&$top=1475&$maxpagesize=2"}' + headers: + apim-request-id: + - 01eb3070-4526-404c-8815-279821943803 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:49 GMT + etag: + - '"D099389E4D195161F3B352F4F20B692C56212B07D1DE1FA33CC2F04DAE07E844"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 01eb3070-4526-404c-8815-279821943803 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=934&$top=1475&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=936&$top=1473&$maxpagesize=2"}' + headers: + apim-request-id: + - 9e628287-b257-4f07-acfe-ea3909a00fe0 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:49 GMT + etag: + - '"149EB5998F2C2561EADFB7ADB23EA9199A88ED4BBBE22BDCFFE9FD4543CFBFDF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9e628287-b257-4f07-acfe-ea3909a00fe0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=936&$top=1473&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=938&$top=1471&$maxpagesize=2"}' + headers: + apim-request-id: + - b669aefb-0a0d-4e34-90bf-6d267ca6df0d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:50 GMT + etag: + - '"E58087B316A4292E7FEA0D20A77C72ED46704426F3357DCBF3972DA9EB7EC0BB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b669aefb-0a0d-4e34-90bf-6d267ca6df0d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=938&$top=1471&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=940&$top=1469&$maxpagesize=2"}' + headers: + apim-request-id: + - 10a894d4-dd31-4d7d-be81-5eac501cfdfc + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:50 GMT + etag: + - '"10B421C5610F74198BE58C83AD8DAB887A92862E4E5B71E09AA6ED811EB94B9D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 10a894d4-dd31-4d7d-be81-5eac501cfdfc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=940&$top=1469&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=942&$top=1467&$maxpagesize=2"}' + headers: + apim-request-id: + - 746fd3a9-769a-4460-b2d5-194296c9c62f + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:50 GMT + etag: + - '"B0D1A61A53B2BDF38DD80FCA093F49D86CE34DF10A10BA6809FCA057CAFFDF40"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 746fd3a9-769a-4460-b2d5-194296c9c62f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=942&$top=1467&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=944&$top=1465&$maxpagesize=2"}' + headers: + apim-request-id: + - b7f81218-1194-412b-8d4a-0a5fbf6fc209 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:50 GMT + etag: + - '"813ADFAB8A43BF071642E3A4932752C77FB7EC12F8328F48A967631F23A39A2E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b7f81218-1194-412b-8d4a-0a5fbf6fc209 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=944&$top=1465&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=946&$top=1463&$maxpagesize=2"}' + headers: + apim-request-id: + - cbd340d9-b2b3-4f4c-947b-db444d14e69c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:50 GMT + etag: + - '"53E9F6E9C038D74372DFDB441073692D77B91D4319A44284BC2D14E8E733AAA7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cbd340d9-b2b3-4f4c-947b-db444d14e69c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=946&$top=1463&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=948&$top=1461&$maxpagesize=2"}' + headers: + apim-request-id: + - 47b4d792-e603-4829-9c79-a09d34792804 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:50 GMT + etag: + - '"1D0DDD3B2E1331355CF3C1B8BB73250A4521A7844418641C05A8C83127F539E0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 47b4d792-e603-4829-9c79-a09d34792804 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=948&$top=1461&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1459&$maxpagesize=2"}' + headers: + apim-request-id: + - 7e9bb01b-43a8-4798-add7-6190c415f4d4 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:51 GMT + etag: + - '"B8D28BF6C9AE2219889EA2935763FEFDBB3BA93573DDA959A9365B56C253625A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7e9bb01b-43a8-4798-add7-6190c415f4d4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1459&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=952&$top=1457&$maxpagesize=2"}' + headers: + apim-request-id: + - 90382f8d-e60e-4ab4-8784-a406c07dd385 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:51 GMT + etag: + - '"99C510DC6BAB299E3912746449433339F013CE4431A64EBE7B8049F66527213F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 90382f8d-e60e-4ab4-8784-a406c07dd385 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=952&$top=1457&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=954&$top=1455&$maxpagesize=2"}' + headers: + apim-request-id: + - 9c4cee1f-36c7-41ed-bd2a-923fee2e717f + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:51 GMT + etag: + - '"CA93246D2E8752F7B1E19A2CF9DD0EDF589F475DA4C36776C3E319E60595ACF0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9c4cee1f-36c7-41ed-bd2a-923fee2e717f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=954&$top=1455&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=956&$top=1453&$maxpagesize=2"}' + headers: + apim-request-id: + - 14f5be4e-815c-4c9c-aa1b-2380ef001bc8 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:51 GMT + etag: + - '"14AE69418DFF525D735ECEC52ACEE6B750E41F6494A1DF0FDC72565E36711649"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 14f5be4e-815c-4c9c-aa1b-2380ef001bc8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=956&$top=1453&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=958&$top=1451&$maxpagesize=2"}' + headers: + apim-request-id: + - 8d5c5f58-024d-4a37-a14b-1179fcd6a150 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:51 GMT + etag: + - '"D0F7B8004684727DF9FA0B9D3335AABCC5D5575340CAD7EF97B222E98D9A3DC2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8d5c5f58-024d-4a37-a14b-1179fcd6a150 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=958&$top=1451&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=960&$top=1449&$maxpagesize=2"}' + headers: + apim-request-id: + - 9712efa9-bb0d-499e-81e4-5425008b6512 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:51 GMT + etag: + - '"BD7CD867B26B84119C45BAB2FEC836CE2C3CCD95142082CBC7F609808F8EAF50"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9712efa9-bb0d-499e-81e4-5425008b6512 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=960&$top=1449&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=962&$top=1447&$maxpagesize=2"}' + headers: + apim-request-id: + - ba6d2767-6671-46d1-b1f2-cdf958953b96 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:52 GMT + etag: + - '"C1321CC170B91CE093050B61EBB367D173B2769FC711AA02D969D95200C33FDC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ba6d2767-6671-46d1-b1f2-cdf958953b96 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=962&$top=1447&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=964&$top=1445&$maxpagesize=2"}' + headers: + apim-request-id: + - 6d614c52-fcad-46b3-a7c4-0717d869b5cc + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:52 GMT + etag: + - '"7115FE03B6D0FDCDEBE30D628EDDBA6862C31B238AF0FDDEB41DA88DFDE4A2D6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6d614c52-fcad-46b3-a7c4-0717d869b5cc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=964&$top=1445&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=966&$top=1443&$maxpagesize=2"}' + headers: + apim-request-id: + - 842ca99e-df0c-451a-9712-8d130b681dfc + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:52 GMT + etag: + - '"B7EE9640BA78B2D020E5D289F8C8128973E73DC04302B92B009B7EE02106AD7A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 842ca99e-df0c-451a-9712-8d130b681dfc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=966&$top=1443&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=968&$top=1441&$maxpagesize=2"}' + headers: + apim-request-id: + - b155cc0a-c30f-403b-91b3-03b1f299d143 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:52 GMT + etag: + - '"52F5648A5A03793A1CE52065991C50E3DCC20B4F7D4A4DA718E71129B8BF5529"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b155cc0a-c30f-403b-91b3-03b1f299d143 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=968&$top=1441&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=970&$top=1439&$maxpagesize=2"}' + headers: + apim-request-id: + - d98d45c4-b4e9-43ba-824e-eeed858c41ec + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:52 GMT + etag: + - '"8CC970CA5A440BAD8E7C79153554526118C7FD1A91EDD21F082EFB8C4090D475"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d98d45c4-b4e9-43ba-824e-eeed858c41ec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=970&$top=1439&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=972&$top=1437&$maxpagesize=2"}' + headers: + apim-request-id: + - c8ddd848-0e90-4311-9e6b-6f9648774a0e + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:53 GMT + etag: + - '"D9124E0F74AB3393FD40CEFB9B6BEFFAD21CDDEEE3420B84A1F7AFA19A216CBD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c8ddd848-0e90-4311-9e6b-6f9648774a0e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=972&$top=1437&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=974&$top=1435&$maxpagesize=2"}' + headers: + apim-request-id: + - 53eed391-0ef8-4b10-af22-79970f356bbe + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:53 GMT + etag: + - '"C61C8A5428458CB89863038FC3BD88E1DFDBF0D0ECFBB8726110B2FDCCDFE888"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 53eed391-0ef8-4b10-af22-79970f356bbe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=974&$top=1435&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=976&$top=1433&$maxpagesize=2"}' + headers: + apim-request-id: + - 4569c132-650f-4fb9-8563-8cc194be27cc + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:53 GMT + etag: + - '"90D9EA58FFD95667AB00802DFEAF2BA34ED7EACDDE5C39905C20886926A084BB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4569c132-650f-4fb9-8563-8cc194be27cc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=976&$top=1433&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=978&$top=1431&$maxpagesize=2"}' + headers: + apim-request-id: + - 3c66def3-5120-4368-8f5a-50cfb8e3bc13 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:53 GMT + etag: + - '"695C59480A4AB205136DB9424D1A48F78D33CFE053B14881008A5A7E4028DCBD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3c66def3-5120-4368-8f5a-50cfb8e3bc13 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=978&$top=1431&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=980&$top=1429&$maxpagesize=2"}' + headers: + apim-request-id: + - e315bbbd-3a72-49de-bbd5-08cb0096cddf + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:53 GMT + etag: + - '"545EAFA76F1082CAC5886A3FC2403CC15E93A3D10FFD634C38ADEFFE8CB5C127"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e315bbbd-3a72-49de-bbd5-08cb0096cddf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=980&$top=1429&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=982&$top=1427&$maxpagesize=2"}' + headers: + apim-request-id: + - 83dbd796-8415-4a1c-a19f-404c958425d6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:54 GMT + etag: + - '"A3549D43281E97644DECD621761CBA25AADF1D376F20AB59C84EA058483BC573"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 83dbd796-8415-4a1c-a19f-404c958425d6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=982&$top=1427&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=984&$top=1425&$maxpagesize=2"}' + headers: + apim-request-id: + - 4516527e-0abe-4ec3-9a8c-302ba8dd07c9 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:54 GMT + etag: + - '"7B0F51CD6576CB194848EB52339FABCF4C591A66B15648A097074EADA06929C0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4516527e-0abe-4ec3-9a8c-302ba8dd07c9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=984&$top=1425&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=986&$top=1423&$maxpagesize=2"}' + headers: + apim-request-id: + - f0824e73-f0fc-4497-b1e4-bac3294a7b0f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:54 GMT + etag: + - '"F3064EE49F5B4BA7DD485421DD8F43FDEE399D3580DAAA9F9E8E3EB5B83860B2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f0824e73-f0fc-4497-b1e4-bac3294a7b0f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=986&$top=1423&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=988&$top=1421&$maxpagesize=2"}' + headers: + apim-request-id: + - 6a70b503-6e8c-479e-877b-35850b9340bb + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:54 GMT + etag: + - '"C4FFAD6E9F71104CAA3DA7D6CB697308FEA7BDF861E7A1632833E847CDBD472C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6a70b503-6e8c-479e-877b-35850b9340bb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=988&$top=1421&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=990&$top=1419&$maxpagesize=2"}' + headers: + apim-request-id: + - 9b13b2fb-aa07-4cc1-a011-ebabf40002e9 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:54 GMT + etag: + - '"27C451ECE3FBC1F7B5AB9CA4BBDB8B7311F4AD8F11B0F783E87898753A3326FD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9b13b2fb-aa07-4cc1-a011-ebabf40002e9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=990&$top=1419&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=992&$top=1417&$maxpagesize=2"}' + headers: + apim-request-id: + - 4406eff0-4923-4323-ada5-9db14ba8e763 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:54 GMT + etag: + - '"0EF26B7C809BE71E4613CC9B680AE80F8D86304777921BCE143177427A61E995"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4406eff0-4923-4323-ada5-9db14ba8e763 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=992&$top=1417&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=994&$top=1415&$maxpagesize=2"}' + headers: + apim-request-id: + - 11400a57-c9c0-4c81-8a50-a65538e9d06d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:55 GMT + etag: + - '"0FEB032645D2685F65E9D7DCA178C8FFFE4AD02040FBC972AD0D68644B998CAB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 11400a57-c9c0-4c81-8a50-a65538e9d06d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=994&$top=1415&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=996&$top=1413&$maxpagesize=2"}' + headers: + apim-request-id: + - d9330cc8-15c6-4b9b-9d49-618ac33329a0 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:55 GMT + etag: + - '"3C4A12465D37AC35132642468744E34F617D75494F27DFD0AA933C3C7630F0EA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d9330cc8-15c6-4b9b-9d49-618ac33329a0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=996&$top=1413&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=998&$top=1411&$maxpagesize=2"}' + headers: + apim-request-id: + - 720e2959-9d84-4433-b19d-2f668dc648a4 + cache-control: + - public,max-age=1 + content-length: + - '743' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:55 GMT + etag: + - '"88FD9A55B1F1E19A2D80C792BEC12D0297B9414273E8BC752A20679599831090"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 720e2959-9d84-4433-b19d-2f668dc648a4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=998&$top=1411&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1409&$maxpagesize=2"}' + headers: + apim-request-id: + - 310a986c-234a-41aa-a725-09ce68fe8119 + cache-control: + - public,max-age=1 + content-length: + - '1018' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:55 GMT + etag: + - '"0FECC03F4E1CF29DA3941F05455DFB638FB260FFD7DD39C5A532E37CA2137BC0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 310a986c-234a-41aa-a725-09ce68fe8119 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1409&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1002&$top=1407&$maxpagesize=2"}' + headers: + apim-request-id: + - 87eee26d-52b4-43b8-a7fe-0b34e010c927 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:55 GMT + etag: + - '"A90C6A20019180CCE66C56F814C658330CB4C1BB62BE3850A155ADC995A44FE8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 87eee26d-52b4-43b8-a7fe-0b34e010c927 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1002&$top=1407&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1004&$top=1405&$maxpagesize=2"}' + headers: + apim-request-id: + - 36e69f21-0347-4dfe-ba24-81ad8f805e64 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:56 GMT + etag: + - '"18BED04EB7F7611DA7726153CF0C96B0CBB17B052B1B7D058978863EF66A54B7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 36e69f21-0347-4dfe-ba24-81ad8f805e64 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1004&$top=1405&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1006&$top=1403&$maxpagesize=2"}' + headers: + apim-request-id: + - 2a8c4024-d35b-453c-aa62-3773d3fe5856 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:56 GMT + etag: + - '"AE24F3826BB88EA3A31DBA9450907F14496CF0801F5013CF39BF12F56AA77513"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2a8c4024-d35b-453c-aa62-3773d3fe5856 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1006&$top=1403&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1008&$top=1401&$maxpagesize=2"}' + headers: + apim-request-id: + - 85aeb1a9-74fc-4975-98b0-10363b641a84 + cache-control: + - public,max-age=1 + content-length: + - '741' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:56 GMT + etag: + - '"10C2FD92E922C36CC1F7BDE01102F698FA3F63193918A2A6A1B7B1AD80079AFC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 85aeb1a9-74fc-4975-98b0-10363b641a84 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1008&$top=1401&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1010&$top=1399&$maxpagesize=2"}' + headers: + apim-request-id: + - ed3730f7-c878-40f3-85f8-fdc1df2aae6e + cache-control: + - public,max-age=1 + content-length: + - '1018' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:56 GMT + etag: + - '"C2E50D20FF85A023456CCE82C5232A4CCFE895FC1419EA31509F179647970D21"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ed3730f7-c878-40f3-85f8-fdc1df2aae6e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1010&$top=1399&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1012&$top=1397&$maxpagesize=2"}' + headers: + apim-request-id: + - fe99bd8c-75f3-4c9f-b6bb-ed0c93a8ec26 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:56 GMT + etag: + - '"EB2E557E3771D24713124F992D584E203F371490860DF2E2AE96D3C3E85E0205"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fe99bd8c-75f3-4c9f-b6bb-ed0c93a8ec26 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1012&$top=1397&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1014&$top=1395&$maxpagesize=2"}' + headers: + apim-request-id: + - 749b0e8d-3ceb-4138-8868-058f0b191c76 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:56 GMT + etag: + - '"B2334DFAA4EF6926EF40C89B7CEA9E366B1590837DAD3ADCE4EFE1D4E3698FF8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 749b0e8d-3ceb-4138-8868-058f0b191c76 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1014&$top=1395&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1016&$top=1393&$maxpagesize=2"}' + headers: + apim-request-id: + - 741b7160-c796-4be8-8b45-18dcdb2c047a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:57 GMT + etag: + - '"A785ADB7FFE279F7931FA3C29F444E9D3B8711CB72B68BCC9F78A2478E70427C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 741b7160-c796-4be8-8b45-18dcdb2c047a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1016&$top=1393&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1018&$top=1391&$maxpagesize=2"}' + headers: + apim-request-id: + - e1b8e287-0a5d-4278-be02-d4f8dabb1058 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:57 GMT + etag: + - '"98EFA3633FE6C070ED210E1CE02BCEC648EF03CE19665A753DB08CC5D9671822"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e1b8e287-0a5d-4278-be02-d4f8dabb1058 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1018&$top=1391&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1020&$top=1389&$maxpagesize=2"}' + headers: + apim-request-id: + - 62552d8b-6065-48bb-8723-0fb635761e97 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:57 GMT + etag: + - '"3D5E45F35B3BDD52D3CAF9D082557E9CE834573B739619CACD5B2C420041483F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 62552d8b-6065-48bb-8723-0fb635761e97 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1020&$top=1389&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1022&$top=1387&$maxpagesize=2"}' + headers: + apim-request-id: + - 43a97446-3782-407e-a855-bd8ad79c3260 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:57 GMT + etag: + - '"A5F5EA7E21BA12FC57110984E46C4287F2B0614EC8F0706B00A0B4D7C4B576F8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 43a97446-3782-407e-a855-bd8ad79c3260 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1022&$top=1387&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1024&$top=1385&$maxpagesize=2"}' + headers: + apim-request-id: + - e0077e46-65fb-4979-9a2f-4d1248b9b9ac + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:57 GMT + etag: + - '"B6832E2FB52EEF0314D6FB3805F9BE54FDDEF04541ABF66BC728186D583A1998"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e0077e46-65fb-4979-9a2f-4d1248b9b9ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1024&$top=1385&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1026&$top=1383&$maxpagesize=2"}' + headers: + apim-request-id: + - 487e6edd-7738-4f60-ae67-fbf4b90f5590 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:58 GMT + etag: + - '"A473AC34B2120877219B952D52238A395FBA9FA8EB0466D777FDF20E0939D8E9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 487e6edd-7738-4f60-ae67-fbf4b90f5590 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1026&$top=1383&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1028&$top=1381&$maxpagesize=2"}' + headers: + apim-request-id: + - 7ecd419c-0952-435c-91be-f54aaec25f4c + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:58 GMT + etag: + - '"EDC52951BAE004533A2469A39685BD9E771D52D15E85B91DC7395A6352785E50"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7ecd419c-0952-435c-91be-f54aaec25f4c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1028&$top=1381&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1030&$top=1379&$maxpagesize=2"}' + headers: + apim-request-id: + - 6688de55-a304-4952-8c4d-c568c54d5780 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:58 GMT + etag: + - '"CE3C15BFC2AB6C2C35676AC475A9AE5A4AD8E61690B936C6F5BE2C50D91D424F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6688de55-a304-4952-8c4d-c568c54d5780 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1030&$top=1379&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1032&$top=1377&$maxpagesize=2"}' + headers: + apim-request-id: + - 4728f84d-85e8-472b-a7dc-ae84c9eca188 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:58 GMT + etag: + - '"FFC10AA671611CFE9F9AF8A8BCC453F0792E9664CCF5239E4E541B36B4736F30"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4728f84d-85e8-472b-a7dc-ae84c9eca188 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1032&$top=1377&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1034&$top=1375&$maxpagesize=2"}' + headers: + apim-request-id: + - 358eb616-61c7-445b-ac0b-a2c4d905c6a0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:58 GMT + etag: + - '"B83FA483DE8E50BDEB7402D0A1D1173B212FC559458819EFEAF231C2215A818A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 358eb616-61c7-445b-ac0b-a2c4d905c6a0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1034&$top=1375&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1036&$top=1373&$maxpagesize=2"}' + headers: + apim-request-id: + - 06b2f833-cb73-41ee-bb38-908dda690d58 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:58 GMT + etag: + - '"AC8E294C1D6605033292E6D7A660B282EEC2381B5C50D5249B7A0EC276831587"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 06b2f833-cb73-41ee-bb38-908dda690d58 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1036&$top=1373&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1038&$top=1371&$maxpagesize=2"}' + headers: + apim-request-id: + - e10d168a-23f4-4e4d-a342-849f2d2ebfc6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:59 GMT + etag: + - '"4A35038F14E264B98CA19CD7DFF6A6A539DC4C7BDFFB32B35EEC20703B090923"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e10d168a-23f4-4e4d-a342-849f2d2ebfc6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1038&$top=1371&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1040&$top=1369&$maxpagesize=2"}' + headers: + apim-request-id: + - 2cfb7056-2231-4de5-800c-188143464496 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:59 GMT + etag: + - '"27BA7C8A6E73AD5318AFD8DEB333D81BDAA9FC7A7DD978B879E3DFC92E329D11"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2cfb7056-2231-4de5-800c-188143464496 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1040&$top=1369&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1042&$top=1367&$maxpagesize=2"}' + headers: + apim-request-id: + - 0baae055-3e87-4a23-88a6-15cbad17ed95 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:59 GMT + etag: + - '"B0DF9D9CB5CC9FD10BDD5FBDB7A7DA154F4CC56D7F903F495554BB61B9757DF7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0baae055-3e87-4a23-88a6-15cbad17ed95 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1042&$top=1367&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1044&$top=1365&$maxpagesize=2"}' + headers: + apim-request-id: + - 9b1a9356-995c-45ae-8a05-8d383ffb3129 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:59 GMT + etag: + - '"6599482016A3C29B90BC96FB09C3BC1827A0A463971B4F2507483CA8AB129DC8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9b1a9356-995c-45ae-8a05-8d383ffb3129 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1044&$top=1365&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1046&$top=1363&$maxpagesize=2"}' + headers: + apim-request-id: + - 23bab570-2c33-4718-811a-8d25c76ff5eb + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:51:59 GMT + etag: + - '"918B471B89BC1C9A75D9658CDE407177083E23185413D9137BBF9CB55B2E4C52"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 23bab570-2c33-4718-811a-8d25c76ff5eb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1046&$top=1363&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1048&$top=1361&$maxpagesize=2"}' + headers: + apim-request-id: + - d894ec57-944e-4f80-a948-546cff3d8091 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:00 GMT + etag: + - '"53415A64AFAD18972B39A4680C74045D7D2F745F04C7B563F385441C8FE779FC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d894ec57-944e-4f80-a948-546cff3d8091 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1048&$top=1361&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1359&$maxpagesize=2"}' + headers: + apim-request-id: + - 5a7b62be-a452-4b12-9988-64185825e93c + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:00 GMT + etag: + - '"15A9386878B37E52C34BFE665552E9951BBC796F369F3D5BCB61206BB9A71230"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5a7b62be-a452-4b12-9988-64185825e93c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1359&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1052&$top=1357&$maxpagesize=2"}' + headers: + apim-request-id: + - 38a5e351-6c5e-4337-bdf0-75c28c8483fa + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:00 GMT + etag: + - '"C97F4B2575AAC761F10A9815CBEEA6497BF82D7C7738535A4D48E0F8D6625A35"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 38a5e351-6c5e-4337-bdf0-75c28c8483fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1052&$top=1357&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1054&$top=1355&$maxpagesize=2"}' + headers: + apim-request-id: + - 5ef6490a-f60a-4824-9eee-73e917969dec + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:00 GMT + etag: + - '"5D3EF36877E44E052431E439FC0726DC8CB50C60D100061DD574CD8A7B72A086"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5ef6490a-f60a-4824-9eee-73e917969dec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1054&$top=1355&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1056&$top=1353&$maxpagesize=2"}' + headers: + apim-request-id: + - e72c51fc-8740-4f19-8a55-f60301c55a45 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:00 GMT + etag: + - '"A96843795E2EF7DC6A9FDB720D75F997C4619D4EE5512F9A28CBDF4842868BF4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e72c51fc-8740-4f19-8a55-f60301c55a45 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1056&$top=1353&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1058&$top=1351&$maxpagesize=2"}' + headers: + apim-request-id: + - 92b3cc1f-8b6c-4f60-82d3-31877748955e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:00 GMT + etag: + - '"715A97AAF1295B70C73D3383707EFDEA641C0B9014D12CDE0F6F128B3509F560"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 92b3cc1f-8b6c-4f60-82d3-31877748955e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1058&$top=1351&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1060&$top=1349&$maxpagesize=2"}' + headers: + apim-request-id: + - 69478760-ef52-47a3-8361-ba4b946c4ac5 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:01 GMT + etag: + - '"96861790F0218FE5898BC49C1ACA09957741814C051FD54CF1B605C990D93C2E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 69478760-ef52-47a3-8361-ba4b946c4ac5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1060&$top=1349&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1062&$top=1347&$maxpagesize=2"}' + headers: + apim-request-id: + - 324d65ab-a0c1-49dd-9fac-80ff82f77b38 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:01 GMT + etag: + - '"71CD36D82220BBC3F170333DD8A22A22BCDA10CECBB387458066287B5B2A4738"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 324d65ab-a0c1-49dd-9fac-80ff82f77b38 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1062&$top=1347&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1064&$top=1345&$maxpagesize=2"}' + headers: + apim-request-id: + - 7e6e64b6-3b62-48ed-b30d-7a26cc1940bc + cache-control: + - public,max-age=1 + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:01 GMT + etag: + - '"1ACC077C073592BCE2A67CE24AE2CAFB2842E783551D393A1C0E9C76021276DC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7e6e64b6-3b62-48ed-b30d-7a26cc1940bc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1064&$top=1345&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1066&$top=1343&$maxpagesize=2"}' + headers: + apim-request-id: + - 1cdc4a22-1ef9-47ce-9d50-04468249f310 + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:01 GMT + etag: + - '"DC15852CD06227E07430F36E071E2B5AACF0F2B9A792905B1FCAAD5D0854C5CA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1cdc4a22-1ef9-47ce-9d50-04468249f310 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1066&$top=1343&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1068&$top=1341&$maxpagesize=2"}' + headers: + apim-request-id: + - 92bb3005-ea21-406a-8ee1-4dda66bcba6f + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:01 GMT + etag: + - '"81440E8C41717B7BCCC67F6D0C12BD528B38805B3B6EF8DF74CE754383526CFA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 92bb3005-ea21-406a-8ee1-4dda66bcba6f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1068&$top=1341&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1070&$top=1339&$maxpagesize=2"}' + headers: + apim-request-id: + - 6f584896-2152-47ef-a612-7c06f4705126 + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:02 GMT + etag: + - '"BEDD97CFFF6B6C1216F18808DF61D433A326E27A08F69AE9EFF4196DD31CE9DF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6f584896-2152-47ef-a612-7c06f4705126 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1070&$top=1339&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1072&$top=1337&$maxpagesize=2"}' + headers: + apim-request-id: + - c3652763-2f8b-492e-986b-7b5b672eb553 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:02 GMT + etag: + - '"ED26DD84970FC1F2A44BFA391020233919AECBFE92497F3A45776E919355EEC7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c3652763-2f8b-492e-986b-7b5b672eb553 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1072&$top=1337&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1074&$top=1335&$maxpagesize=2"}' + headers: + apim-request-id: + - a03d8531-c7d7-4f6e-88ab-eb7e16a4db2c + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:02 GMT + etag: + - '"79F05E903AD77E4A3EDD57BE3AE207DE2A2F68FB3E063C4E6005386A9505AF53"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a03d8531-c7d7-4f6e-88ab-eb7e16a4db2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1074&$top=1335&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1076&$top=1333&$maxpagesize=2"}' + headers: + apim-request-id: + - bba69587-6a45-475d-bb3d-2374f486439b + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:02 GMT + etag: + - '"A8803BC63AC5739A9BD9DA017C0D1C65A1F698AF34E1055F6B1E0DB005406836"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bba69587-6a45-475d-bb3d-2374f486439b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1076&$top=1333&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1078&$top=1331&$maxpagesize=2"}' + headers: + apim-request-id: + - fa1161f0-0b7f-4812-806b-069d905d5aea + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:02 GMT + etag: + - '"35F96502E17D9091998F2EE63C0BB6434EA0DDF39177266D1030CC244D2A5A37"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fa1161f0-0b7f-4812-806b-069d905d5aea + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1078&$top=1331&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1080&$top=1329&$maxpagesize=2"}' + headers: + apim-request-id: + - 468e72f3-2d70-4056-9bd8-6039869c3368 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:03 GMT + etag: + - '"D473281FC0EDE8205D6260703EB5A3AA3B3259CF58338148F26B5571EECB4B58"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 468e72f3-2d70-4056-9bd8-6039869c3368 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1080&$top=1329&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1082&$top=1327&$maxpagesize=2"}' + headers: + apim-request-id: + - 8dfb379e-8c50-4227-8814-9df6941f2609 + cache-control: + - public,max-age=1 + content-length: + - '1017' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:03 GMT + etag: + - '"CDA0796213DD27A0E53A94C6627C8AD30EF0DA18BC17AE38469104D86847465E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8dfb379e-8c50-4227-8814-9df6941f2609 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1082&$top=1327&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1084&$top=1325&$maxpagesize=2"}' + headers: + apim-request-id: + - 747dbc6c-6550-4027-91ef-fa95eb220537 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:03 GMT + etag: + - '"0D8A7AA02C75256D218FF867CD15B9451B5A56CA0E2A3CA31266FA00BEF288A2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 747dbc6c-6550-4027-91ef-fa95eb220537 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1084&$top=1325&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1086&$top=1323&$maxpagesize=2"}' + headers: + apim-request-id: + - 4664dec4-475a-4992-ba98-48b201e880e2 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:03 GMT + etag: + - '"DA7634890B059CA059EBB5967B592C8084AB5C812A9D312995DB644B662C993F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4664dec4-475a-4992-ba98-48b201e880e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1086&$top=1323&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1088&$top=1321&$maxpagesize=2"}' + headers: + apim-request-id: + - 3db7d4ed-b161-450f-961f-8d746fffb84f + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:03 GMT + etag: + - '"8E00889ED0F0259DB9D8793B1949BED31DBD047D0B3AD2187758761D4D1A6ED8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3db7d4ed-b161-450f-961f-8d746fffb84f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1088&$top=1321&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1090&$top=1319&$maxpagesize=2"}' + headers: + apim-request-id: + - 7d322d07-6b02-4d80-9de7-44d9e251ad85 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:04 GMT + etag: + - '"5E3640217E64C7831550EC6DCE7F726E92BE5F53B1A68AE61BE5E9EB2267F13B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7d322d07-6b02-4d80-9de7-44d9e251ad85 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1090&$top=1319&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1092&$top=1317&$maxpagesize=2"}' + headers: + apim-request-id: + - dbc9c300-f336-47b4-966f-a209a8b23b83 + cache-control: + - public,max-age=1 + content-length: + - '1017' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:04 GMT + etag: + - '"12F174F6463CC04CD65C6E1B9A15EAC5E03290693CE9BA95020FE860D467E0C2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dbc9c300-f336-47b4-966f-a209a8b23b83 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1092&$top=1317&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1094&$top=1315&$maxpagesize=2"}' + headers: + apim-request-id: + - d290bd81-388b-41eb-999c-1ceacdd82a7b + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:04 GMT + etag: + - '"4C802A81A36979608618197489C218B8E490E9B77FE253CA93E96ED2F41A0810"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d290bd81-388b-41eb-999c-1ceacdd82a7b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1094&$top=1315&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1096&$top=1313&$maxpagesize=2"}' + headers: + apim-request-id: + - 086a78a8-40ee-44d4-a1a9-17ed5318718f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:04 GMT + etag: + - '"180C7A5C8FADEEAB38B71B097D74C49D203D9A368D3809D688ADED731D138FE2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 086a78a8-40ee-44d4-a1a9-17ed5318718f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1096&$top=1313&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1098&$top=1311&$maxpagesize=2"}' + headers: + apim-request-id: + - f0351363-8fc8-470f-80a2-43851fa4e409 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:04 GMT + etag: + - '"1181B15BBBE261177142999D814723384610A255679959FABD80A92A631F4ADB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f0351363-8fc8-470f-80a2-43851fa4e409 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1098&$top=1311&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1309&$maxpagesize=2"}' + headers: + apim-request-id: + - b7e9aabf-6151-49c9-ac86-55849ab236d2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:04 GMT + etag: + - '"43BB4B90CFDB93C26E28BEEC4B62CAF1B9709636791273986B99608B0C74D23B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b7e9aabf-6151-49c9-ac86-55849ab236d2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1309&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1102&$top=1307&$maxpagesize=2"}' + headers: + apim-request-id: + - cbf41f4a-3642-4926-9ff2-d6a554def38f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:05 GMT + etag: + - '"E6AC589791F5D84E5AE8F5F97FAFC8146FBE9DD5830DB94E7027397CDB6A9185"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cbf41f4a-3642-4926-9ff2-d6a554def38f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1102&$top=1307&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1104&$top=1305&$maxpagesize=2"}' + headers: + apim-request-id: + - 3550fe5f-1be6-444a-b10f-891b15ca5e36 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:05 GMT + etag: + - '"A1EEDAECD576CECBCAD3378BD5F0D7F11A698A38F26E2DBF24980E22225F70C0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3550fe5f-1be6-444a-b10f-891b15ca5e36 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1104&$top=1305&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1106&$top=1303&$maxpagesize=2"}' + headers: + apim-request-id: + - 66df2b19-97a7-46f5-bc73-4b3ed00ba892 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:05 GMT + etag: + - '"61BB4B8F8E2567157801317BDFA858E4C5E9BEF38860B92B55FCE49718AF0D53"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 66df2b19-97a7-46f5-bc73-4b3ed00ba892 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1106&$top=1303&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1108&$top=1301&$maxpagesize=2"}' + headers: + apim-request-id: + - 81dee9b1-a7a0-47d1-8e1c-aec36e5bcda0 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:05 GMT + etag: + - '"A2E18DB743F63064948BBADAB8FEB9354020AC4FF26B594949EF205A8CBDBAF4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 81dee9b1-a7a0-47d1-8e1c-aec36e5bcda0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1108&$top=1301&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1110&$top=1299&$maxpagesize=2"}' + headers: + apim-request-id: + - 207b8994-cb96-4001-9782-ea95671e6a83 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:05 GMT + etag: + - '"4C5A91D439064B19C219B7E2FD783E4B725D2061E67989227ED0E933CA0A87D5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 207b8994-cb96-4001-9782-ea95671e6a83 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1110&$top=1299&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1112&$top=1297&$maxpagesize=2"}' + headers: + apim-request-id: + - 1940615a-2f2b-4657-bfb5-0fcdfdfaa5d1 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:06 GMT + etag: + - '"147A01A3EA65CF47C0EA2D72B2580F6BF5D70869DDE9D012EABDC7EE70708F85"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1940615a-2f2b-4657-bfb5-0fcdfdfaa5d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1112&$top=1297&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1114&$top=1295&$maxpagesize=2"}' + headers: + apim-request-id: + - 48865b4e-4457-45a2-86b5-99b7025fe643 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:06 GMT + etag: + - '"E99058874B3DC01E02FAC52C9C040453FEC0890D86EB3AB704A2B06E0A99DED1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 48865b4e-4457-45a2-86b5-99b7025fe643 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1114&$top=1295&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1116&$top=1293&$maxpagesize=2"}' + headers: + apim-request-id: + - 3dd2771a-0e8d-44f7-bd38-254e30c9bffd + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:06 GMT + etag: + - '"F7CCA4D20CD50B1FFF3BD32A804F7BD4303C5C931F311BEF8CF612E626A5445E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3dd2771a-0e8d-44f7-bd38-254e30c9bffd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1116&$top=1293&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1118&$top=1291&$maxpagesize=2"}' + headers: + apim-request-id: + - 3a7c3bf3-c6d3-4728-9bfd-3b9e95db9a4d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:06 GMT + etag: + - '"AA99CBF2E381D77C62615B93BD34968CCE5C6FAF24F6EE9CE7F25A14B5FBBBBA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3a7c3bf3-c6d3-4728-9bfd-3b9e95db9a4d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1118&$top=1291&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1120&$top=1289&$maxpagesize=2"}' + headers: + apim-request-id: + - 74c24f18-00c4-4100-8475-e34fb034e5e8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:06 GMT + etag: + - '"2BFC5746670B9A3A24E0049B7AA3C40C3AF82E34FF6DABC0A0C57F18BDE0F924"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 74c24f18-00c4-4100-8475-e34fb034e5e8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1120&$top=1289&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1122&$top=1287&$maxpagesize=2"}' + headers: + apim-request-id: + - 7e433827-e467-4926-9423-6900337decb1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:06 GMT + etag: + - '"3F9BE243C255AD3B164EDE746CFB788F991F379D5C9605BB5475E5DE951CE8A1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7e433827-e467-4926-9423-6900337decb1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1122&$top=1287&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1124&$top=1285&$maxpagesize=2"}' + headers: + apim-request-id: + - 1c308035-c4ab-48f1-8088-10d76944d3c9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:07 GMT + etag: + - '"4755BCB25D1459935B1C497C1D6A010901311DEF52711403AABE6BF078FDE24C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1c308035-c4ab-48f1-8088-10d76944d3c9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1124&$top=1285&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1126&$top=1283&$maxpagesize=2"}' + headers: + apim-request-id: + - ccd4409a-6eca-4676-81b8-a392f8ca9adb + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:07 GMT + etag: + - '"B43712312A3F7DF8177629CBBB0B05A0022D769F0B30F1D42CE3C93A118E1955"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ccd4409a-6eca-4676-81b8-a392f8ca9adb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1126&$top=1283&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1128&$top=1281&$maxpagesize=2"}' + headers: + apim-request-id: + - 4e541120-71a9-4e96-9017-43829b41b9d8 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:07 GMT + etag: + - '"AE24BDB374DF514C5C0C916236A51D2B0FB3E1090CA9D5C3985F6320FA2EDB4D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4e541120-71a9-4e96-9017-43829b41b9d8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1128&$top=1281&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1130&$top=1279&$maxpagesize=2"}' + headers: + apim-request-id: + - 17a70e7e-445c-430b-8be2-23a6de66c404 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:07 GMT + etag: + - '"5CBC41305BDDB1F8EBCC392CA2AF2148E08705D1A6082BCB92DA4EB4B3F81798"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 17a70e7e-445c-430b-8be2-23a6de66c404 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1130&$top=1279&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1132&$top=1277&$maxpagesize=2"}' + headers: + apim-request-id: + - 7a6cbe02-a8ab-43e2-842a-104b28e2ee01 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:07 GMT + etag: + - '"E788CA3C19178FAB3957F493845D2313A6C9757570C3598753A698CB1A93F6F4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7a6cbe02-a8ab-43e2-842a-104b28e2ee01 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1132&$top=1277&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1134&$top=1275&$maxpagesize=2"}' + headers: + apim-request-id: + - 63fbc64f-6059-4ca1-aa19-215c0d20d8a8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:08 GMT + etag: + - '"C6F960038F726C49718CE1F29C02491A5B8A33F86004E53C919A9498F7971587"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 63fbc64f-6059-4ca1-aa19-215c0d20d8a8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1134&$top=1275&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1136&$top=1273&$maxpagesize=2"}' + headers: + apim-request-id: + - 09ecae0a-5e9d-4bcf-b41e-63ea1d8f5dbb + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:08 GMT + etag: + - '"327FAA98F1FA86F2265D8FA04C6AA678BCA68897BDB50FA795B3C468E0CC7012"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 09ecae0a-5e9d-4bcf-b41e-63ea1d8f5dbb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1136&$top=1273&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1138&$top=1271&$maxpagesize=2"}' + headers: + apim-request-id: + - c9f76a92-1253-48aa-804b-398444daac61 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:08 GMT + etag: + - '"F5B22D865830D858C1CAC12064120C4D4DAA0654C39388A5BC518B6EB7C2AF22"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c9f76a92-1253-48aa-804b-398444daac61 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1138&$top=1271&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1140&$top=1269&$maxpagesize=2"}' + headers: + apim-request-id: + - bea2a621-992c-4670-a58b-c2f1ac0c0b67 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:08 GMT + etag: + - '"38C77DFA8A8438F212EA625C2317EE2C2BE785429BC0323008E96C0BFBF68978"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bea2a621-992c-4670-a58b-c2f1ac0c0b67 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1140&$top=1269&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1142&$top=1267&$maxpagesize=2"}' + headers: + apim-request-id: + - 9f96bc44-0dd8-441a-b684-0e0a32915ef7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:08 GMT + etag: + - '"2BA7482D6C6F301B795387DD16C44D33D74239ACE98293A97B6814522287E430"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9f96bc44-0dd8-441a-b684-0e0a32915ef7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1142&$top=1267&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1144&$top=1265&$maxpagesize=2"}' + headers: + apim-request-id: + - ab6c33fd-f54d-4fe4-b54b-482258898afc + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:08 GMT + etag: + - '"56F28310AF3D9299F20AE4A76233338E207BCFBFAAB8DA568BECA0C464849EAC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ab6c33fd-f54d-4fe4-b54b-482258898afc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1144&$top=1265&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1146&$top=1263&$maxpagesize=2"}' + headers: + apim-request-id: + - 94d7742e-cd3e-4041-b1b8-ac7e809d0af6 + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:09 GMT + etag: + - '"68AAA3E39EF384A88F6A448240CC01352AC81A115C486205D44FE52B6E5850A1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 94d7742e-cd3e-4041-b1b8-ac7e809d0af6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1146&$top=1263&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1148&$top=1261&$maxpagesize=2"}' + headers: + apim-request-id: + - 480e5e8a-969f-4fee-ac54-425d68828dab + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:09 GMT + etag: + - '"8FC4FF5C544D314AA4F962B781054436564BA33E64694D29C560383BB7498A15"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 480e5e8a-969f-4fee-ac54-425d68828dab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1148&$top=1261&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1259&$maxpagesize=2"}' + headers: + apim-request-id: + - eb822d54-16e2-4954-b8d8-d44dd9416ae5 + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:09 GMT + etag: + - '"176E37A85C69FD9E6262CDFC7309650726C07212A37D6EBBB343093F67D96AC3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eb822d54-16e2-4954-b8d8-d44dd9416ae5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1259&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1152&$top=1257&$maxpagesize=2"}' + headers: + apim-request-id: + - 07c93d9e-4b0a-4be4-b63a-9f56516b0b16 + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:09 GMT + etag: + - '"57AC7A56B147F7225CB4548D802D90BAD8284CC34D364C28977DE18844192F78"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 07c93d9e-4b0a-4be4-b63a-9f56516b0b16 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1152&$top=1257&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1154&$top=1255&$maxpagesize=2"}' + headers: + apim-request-id: + - 508cda35-433f-4366-b30b-3bd2cbe94db0 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:09 GMT + etag: + - '"E14BD9EBF4578A2BE9A04EF81B2FD1611C664B49A8CC15ACD22DA3911D53A107"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 508cda35-433f-4366-b30b-3bd2cbe94db0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1154&$top=1255&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1156&$top=1253&$maxpagesize=2"}' + headers: + apim-request-id: + - c6b4cc05-75ae-444c-81b8-4f1207b2ab30 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:10 GMT + etag: + - '"648889DF60D5C9DA5FFF70E6A25A183C79BAB4DAD5826B897870BC6E1D8EBB41"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c6b4cc05-75ae-444c-81b8-4f1207b2ab30 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1156&$top=1253&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1158&$top=1251&$maxpagesize=2"}' + headers: + apim-request-id: + - 2e3c1d32-4981-4cda-98e7-afd67a8138fa + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:10 GMT + etag: + - '"38C4DC295C3DF2C62866BC98D9E628F834C57A828351E154EAE8CBD3FE6B8C90"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2e3c1d32-4981-4cda-98e7-afd67a8138fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1158&$top=1251&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1160&$top=1249&$maxpagesize=2"}' + headers: + apim-request-id: + - 2e541da8-b07a-4b6a-83eb-ec5cb74ebc5b + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:10 GMT + etag: + - '"EE7A8E25A282AD18F52DA8CF65C13D83F99B1BC35641166E76864395D7C1FEBD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2e541da8-b07a-4b6a-83eb-ec5cb74ebc5b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1160&$top=1249&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1162&$top=1247&$maxpagesize=2"}' + headers: + apim-request-id: + - 6491b4d0-66b4-4993-ab03-72910c70ce09 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:10 GMT + etag: + - '"FE481A76AAF2A7D5098C59F67FFF81A9AE7D2EA14ADB5766D72F967963500AD1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6491b4d0-66b4-4993-ab03-72910c70ce09 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1162&$top=1247&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1164&$top=1245&$maxpagesize=2"}' + headers: + apim-request-id: + - 7b758063-95db-4b1f-a9b3-9b22d2d4d253 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:10 GMT + etag: + - '"BC257E104B2F0A678E5C5BE7425332DE6375CD2C965C5A283BDA74088EC5E596"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7b758063-95db-4b1f-a9b3-9b22d2d4d253 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1164&$top=1245&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1166&$top=1243&$maxpagesize=2"}' + headers: + apim-request-id: + - 9665ec6d-5939-44e4-89bd-860e9c256248 + cache-control: + - public,max-age=1 + content-length: + - '753' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:11 GMT + etag: + - '"CAB63E4B8AC7267DB5811E4A9DFD6E543B6022226711499142025E56C13834B9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9665ec6d-5939-44e4-89bd-860e9c256248 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1166&$top=1243&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1168&$top=1241&$maxpagesize=2"}' + headers: + apim-request-id: + - 996cb7f2-7930-405d-8c82-5ad70ae05bab + cache-control: + - public,max-age=1 + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:11 GMT + etag: + - '"2E1109490DC90BBED154D881FD0FBFE571DF24ED8ABF2D631F3D71BFF3370116"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 996cb7f2-7930-405d-8c82-5ad70ae05bab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1168&$top=1241&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1170&$top=1239&$maxpagesize=2"}' + headers: + apim-request-id: + - cb37aaaf-532e-4c63-940d-a33d2e463ae9 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:11 GMT + etag: + - '"3ACCA596EE6DC50A64FC4231254031FA4198B56845D29CFA75DCD08E4FBA1B74"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cb37aaaf-532e-4c63-940d-a33d2e463ae9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1170&$top=1239&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1172&$top=1237&$maxpagesize=2"}' + headers: + apim-request-id: + - 0a3763aa-0823-4698-9d68-36604823600c + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:11 GMT + etag: + - '"00EBDD79B54AD2E95988B7AC17844FC7DB9DB5584C35AB9153FE009E8543575A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0a3763aa-0823-4698-9d68-36604823600c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1172&$top=1237&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1174&$top=1235&$maxpagesize=2"}' + headers: + apim-request-id: + - 2604517c-1153-4f2e-9d2b-6314c36e9812 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:11 GMT + etag: + - '"C17D64025344EF21D0CDBBD783DE66BF15DF2E62E6622FD79785D9035AD65AE4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2604517c-1153-4f2e-9d2b-6314c36e9812 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1174&$top=1235&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1176&$top=1233&$maxpagesize=2"}' + headers: + apim-request-id: + - a0d2b465-f0aa-48e6-9956-50fd14e442fc + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:11 GMT + etag: + - '"4205A4547D4A6CC1B93F4C4BE4358B04F0E0009DBEFFBA41D15D34ED08F121CC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a0d2b465-f0aa-48e6-9956-50fd14e442fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1176&$top=1233&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1178&$top=1231&$maxpagesize=2"}' + headers: + apim-request-id: + - 66f5cb42-ae1a-4632-9513-cd6e3cc7e462 + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:12 GMT + etag: + - '"1242F1658B1080029460B17A399D932AF0BE338E5C20A1B664B755190DD9E91F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 66f5cb42-ae1a-4632-9513-cd6e3cc7e462 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1178&$top=1231&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1180&$top=1229&$maxpagesize=2"}' + headers: + apim-request-id: + - 45d33ce7-989c-4a78-8580-f47957cf8fff + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:12 GMT + etag: + - '"8BE38180AA118719C29DA8B77C98B630508E00B864E7650B376AA72B63CD354C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 45d33ce7-989c-4a78-8580-f47957cf8fff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1180&$top=1229&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1182&$top=1227&$maxpagesize=2"}' + headers: + apim-request-id: + - 7597676d-d1a3-4ad7-b1c9-4d794e00fade + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:12 GMT + etag: + - '"87AB0AFC45745FB6FF1468515824A99C1940F1F4A87AFECB027ED894C86A5025"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7597676d-d1a3-4ad7-b1c9-4d794e00fade + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1182&$top=1227&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1184&$top=1225&$maxpagesize=2"}' + headers: + apim-request-id: + - f315650a-e6d4-463b-bdaa-d9ea101d9674 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:12 GMT + etag: + - '"D8029B7FD5A1BEE551E014DFF92A3A0D8DC8D9DA203F19F00FCA72029A4A49DA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f315650a-e6d4-463b-bdaa-d9ea101d9674 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1184&$top=1225&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1186&$top=1223&$maxpagesize=2"}' + headers: + apim-request-id: + - 5849ae0e-dc2a-4bbe-93dd-6e8ba0d30cad + cache-control: + - public,max-age=1 + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:12 GMT + etag: + - '"E93BB63C84E310343927274E1D9C84028AD2B3216CA48DDAE205E804C17EC62B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5849ae0e-dc2a-4bbe-93dd-6e8ba0d30cad + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1186&$top=1223&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1188&$top=1221&$maxpagesize=2"}' + headers: + apim-request-id: + - 8500409d-0342-45b6-9a84-3a44bb2a72c4 + cache-control: + - public,max-age=1 + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:13 GMT + etag: + - '"C8E1970E18F949F5CFCBCC02533ACDAF5C832C14B92D425AAFE5CD2AFE2BCE1D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8500409d-0342-45b6-9a84-3a44bb2a72c4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1188&$top=1221&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1190&$top=1219&$maxpagesize=2"}' + headers: + apim-request-id: + - 5a50c407-f882-4ef5-b959-576ab04a5841 + cache-control: + - public,max-age=1 + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:13 GMT + etag: + - '"383284B5453217F373A821797DB1D43F4E5B3DF70FD93929137085224782BC28"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5a50c407-f882-4ef5-b959-576ab04a5841 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1190&$top=1219&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1192&$top=1217&$maxpagesize=2"}' + headers: + apim-request-id: + - b75006bf-b3f3-4008-b3ec-3c08b200654f + cache-control: + - public,max-age=1 + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:13 GMT + etag: + - '"4E7CE4F39DB5108A223E9DE374D8BF4C501ECCD255DFCAD9DEB6936A4F6659AA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b75006bf-b3f3-4008-b3ec-3c08b200654f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1192&$top=1217&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1194&$top=1215&$maxpagesize=2"}' + headers: + apim-request-id: + - 65d10324-1ab0-440e-b818-7b5a10b72458 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:13 GMT + etag: + - '"0631ABEF65EC981C691EAAF38089A29DEF5AB7DFD83D23A4A9C562FE8F5CF1D6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 65d10324-1ab0-440e-b818-7b5a10b72458 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1194&$top=1215&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1196&$top=1213&$maxpagesize=2"}' + headers: + apim-request-id: + - e5dca8e0-0f12-4a44-ad0c-ff65f0913051 + cache-control: + - public,max-age=1 + content-length: + - '753' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:13 GMT + etag: + - '"369BE8599DF8B3D22D407708A4AEC9891160077A098748CC91F84DFA436F52BB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5dca8e0-0f12-4a44-ad0c-ff65f0913051 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1196&$top=1213&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1198&$top=1211&$maxpagesize=2"}' + headers: + apim-request-id: + - 462bdacb-a684-4b27-b80e-703668c0184c + cache-control: + - public,max-age=1 + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:14 GMT + etag: + - '"923E209679B1B6D67103EA1801BC5B68CDDC45E3553467EB1BFD5091ECE596A2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 462bdacb-a684-4b27-b80e-703668c0184c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1198&$top=1211&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1209&$maxpagesize=2"}' + headers: + apim-request-id: + - dcf45362-3ca7-4725-829a-42c33e89659e + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:14 GMT + etag: + - '"FDE23DE0D24C53EAA55D56300BD573B1CA285213C5C45C4EDE0EE18A33D834F4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dcf45362-3ca7-4725-829a-42c33e89659e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1209&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1202&$top=1207&$maxpagesize=2"}' + headers: + apim-request-id: + - 24063fb6-85c1-45f0-8607-3e1cf42ccadc + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:14 GMT + etag: + - '"FAF2E009393E690EF4DA0678FCDF4576990060C13EBB763C3466387DC6F59760"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 24063fb6-85c1-45f0-8607-3e1cf42ccadc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1202&$top=1207&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1204&$top=1205&$maxpagesize=2"}' + headers: + apim-request-id: + - ade2d106-f31f-4a3e-ac13-eba98f9068cc + cache-control: + - public,max-age=1 + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:14 GMT + etag: + - '"AA299F9A5524959DCB58058F22228970A74E892B4AAADB24E10CF70E6323B70E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ade2d106-f31f-4a3e-ac13-eba98f9068cc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1204&$top=1205&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1206&$top=1203&$maxpagesize=2"}' + headers: + apim-request-id: + - 168a1e0b-46bd-47d1-8426-a9ee8436bb15 + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:14 GMT + etag: + - '"719D7A8CF43AD7D01BCE3CA8F12AAC80468F37CDDAE8C74C4EC79E00C9C29B89"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 168a1e0b-46bd-47d1-8426-a9ee8436bb15 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1206&$top=1203&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1208&$top=1201&$maxpagesize=2"}' + headers: + apim-request-id: + - a1e5bd8b-ef59-4da8-b5e7-41a2431d4afc + cache-control: + - public,max-age=1 + content-length: + - '753' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:14 GMT + etag: + - '"AA57568746D565B158320A655BB4BF7DAA35DDEE408943F316B156451B157DEB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1e5bd8b-ef59-4da8-b5e7-41a2431d4afc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1208&$top=1201&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1210&$top=1199&$maxpagesize=2"}' + headers: + apim-request-id: + - ede02d15-a884-4bd3-af74-c37bb5cac090 + cache-control: + - public,max-age=1 + content-length: + - '754' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:15 GMT + etag: + - '"11972C8A93A1A139FB7C85E08CEB9A3F9227D29D7D11265F30F16264B50DC260"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ede02d15-a884-4bd3-af74-c37bb5cac090 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1210&$top=1199&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1212&$top=1197&$maxpagesize=2"}' + headers: + apim-request-id: + - 74839932-c7af-40ec-8b2f-93847c7d87f8 + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:15 GMT + etag: + - '"DCCD2F9FBFE03FBAD766891DC1240CD6B636F4DAA7A3C5B81C46F9E9BDC8FA6D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 74839932-c7af-40ec-8b2f-93847c7d87f8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1212&$top=1197&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1214&$top=1195&$maxpagesize=2"}' + headers: + apim-request-id: + - 23ead99f-c2b3-4ba4-b53c-5c4d39597d1d + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:15 GMT + etag: + - '"5AFB7853BE7750E263B16D3DDAD9ACB8F8A56ED9580BCE0474E1B0DC133045CB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 23ead99f-c2b3-4ba4-b53c-5c4d39597d1d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1214&$top=1195&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1216&$top=1193&$maxpagesize=2"}' + headers: + apim-request-id: + - be3b534f-58b2-4098-9902-0bc08d3c7b48 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:15 GMT + etag: + - '"2B856D86F762577CADF9AEBDE8A334D274CA5335516BC208A90C1944A34E11C2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - be3b534f-58b2-4098-9902-0bc08d3c7b48 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1216&$top=1193&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1218&$top=1191&$maxpagesize=2"}' + headers: + apim-request-id: + - e7ef7caf-0df0-4bad-b45c-42f6a8a247ef + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:15 GMT + etag: + - '"0FABE2B442A4FD710A46DE51814B7537D57ADB53B0542A51580C53036F511723"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e7ef7caf-0df0-4bad-b45c-42f6a8a247ef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1218&$top=1191&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1220&$top=1189&$maxpagesize=2"}' + headers: + apim-request-id: + - 28d383ca-f338-424a-be28-f08a4dfd19ad + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:16 GMT + etag: + - '"85BC8C5D9EE3A0E91317D2939C416DE4C15FA6B70CB73D72AE9829673EB3F74F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 28d383ca-f338-424a-be28-f08a4dfd19ad + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1220&$top=1189&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1222&$top=1187&$maxpagesize=2"}' + headers: + apim-request-id: + - 539f047e-191d-48d4-a083-c711351ba758 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:16 GMT + etag: + - '"C64CE1482628252FE1B448A97C9F81167EB16D2AC20155E71D761D09730AE804"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 539f047e-191d-48d4-a083-c711351ba758 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1222&$top=1187&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1224&$top=1185&$maxpagesize=2"}' + headers: + apim-request-id: + - 2b061a46-9862-4c8e-b6f7-c3dd22c95e90 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:16 GMT + etag: + - '"F5623B75508D5E1331C082EF0F9C4F9B55309CCEFCC54530BFB346C6FC473BB3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2b061a46-9862-4c8e-b6f7-c3dd22c95e90 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1224&$top=1185&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1226&$top=1183&$maxpagesize=2"}' + headers: + apim-request-id: + - a405a530-5556-409d-b31c-3eba23341c45 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:16 GMT + etag: + - '"1B38825613C92D5F6E04D4C744ED7130AD0C629FA1037AE34E121AFFB1746A53"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a405a530-5556-409d-b31c-3eba23341c45 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1226&$top=1183&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1228&$top=1181&$maxpagesize=2"}' + headers: + apim-request-id: + - 2b517bb5-c4db-4fbc-9d1d-328d84376e3e + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:16 GMT + etag: + - '"90C74EB75AB62E29202332A752DE36666D91D5736FE0069563AF37D429DC31D8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2b517bb5-c4db-4fbc-9d1d-328d84376e3e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1228&$top=1181&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1230&$top=1179&$maxpagesize=2"}' + headers: + apim-request-id: + - ef294abf-d12c-41f2-a4a0-91b16174b385 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:16 GMT + etag: + - '"8004C0801E7016E0C53D89448E8C6A671E82212D8ACAD2D0C4421B280E0B34B0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ef294abf-d12c-41f2-a4a0-91b16174b385 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1230&$top=1179&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1232&$top=1177&$maxpagesize=2"}' + headers: + apim-request-id: + - 06d44b35-1a00-4260-bb58-55f644b1d936 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:17 GMT + etag: + - '"1FBA9F0BE79A698FABFB519988BE1A19436E956AE732420CEA2CFA5FA88F8D7A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 06d44b35-1a00-4260-bb58-55f644b1d936 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1232&$top=1177&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1234&$top=1175&$maxpagesize=2"}' + headers: + apim-request-id: + - 0be8a4b8-ac13-44cc-aff2-f5d946e6815a + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:17 GMT + etag: + - '"127ABFC0F335CF614FA3595CE2D96D96BF16F5B116018157321E282187FAB9CB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0be8a4b8-ac13-44cc-aff2-f5d946e6815a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1234&$top=1175&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1236&$top=1173&$maxpagesize=2"}' + headers: + apim-request-id: + - 1f19ce37-b87f-498d-b4f9-3198d99b5e97 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:17 GMT + etag: + - '"E5319B5180F6DB1187B370036A309D089211EA14F394D3A784776E92D90345E1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1f19ce37-b87f-498d-b4f9-3198d99b5e97 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1236&$top=1173&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1238&$top=1171&$maxpagesize=2"}' + headers: + apim-request-id: + - fb6b62a0-1f18-4e14-94f3-5551a9ba905f + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:17 GMT + etag: + - '"9170B2BF55CA03B7327757F0CC8552EAF9FFC5FEE2B2A7F45F8662583C3CAB68"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fb6b62a0-1f18-4e14-94f3-5551a9ba905f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1238&$top=1171&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1240&$top=1169&$maxpagesize=2"}' + headers: + apim-request-id: + - d4ac6ac7-c308-45c5-b935-3c6fd6dc28be + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:17 GMT + etag: + - '"9D25B613C9AF828DC45A8F625F745B62FAC28C68DD08B15845D911E030311143"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d4ac6ac7-c308-45c5-b935-3c6fd6dc28be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1240&$top=1169&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1242&$top=1167&$maxpagesize=2"}' + headers: + apim-request-id: + - c4f43381-6ecf-4deb-95e2-713c4d907f85 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:18 GMT + etag: + - '"B0FFB59A048F190B4767E63A79915A37F65BE850EA1485972078DEC911B6B46A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c4f43381-6ecf-4deb-95e2-713c4d907f85 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1242&$top=1167&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1244&$top=1165&$maxpagesize=2"}' + headers: + apim-request-id: + - 59db4018-66c3-46e1-8f72-c56e565a5479 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:18 GMT + etag: + - '"149C38AAC610DB02D2920364856CCB761BA2C885F9F2CA373D3C655C430A1A63"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 59db4018-66c3-46e1-8f72-c56e565a5479 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1244&$top=1165&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1246&$top=1163&$maxpagesize=2"}' + headers: + apim-request-id: + - 810da5ca-5bb9-4fea-b6ce-97cea17f9da9 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:18 GMT + etag: + - '"F7ED8FEB8644A41464CF45838727D70507EED1A90FFB444C628AD49C938F2BF7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 810da5ca-5bb9-4fea-b6ce-97cea17f9da9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1246&$top=1163&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1248&$top=1161&$maxpagesize=2"}' + headers: + apim-request-id: + - 8b1e95de-e486-4d78-ac67-1d223a9aff39 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:18 GMT + etag: + - '"6CCC33E766BE9C67A948BD787F2BFC10F2E53A50AF96FECAF0A4730510ACC1D5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8b1e95de-e486-4d78-ac67-1d223a9aff39 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1248&$top=1161&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1159&$maxpagesize=2"}' + headers: + apim-request-id: + - ec0c0882-1776-479b-9678-ed545f6d588f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:18 GMT + etag: + - '"2F0D89CB1E65444A585DFFDCE6CBD071DBD66D15B6C114691B14DACADBD8194A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ec0c0882-1776-479b-9678-ed545f6d588f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1159&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1252&$top=1157&$maxpagesize=2"}' + headers: + apim-request-id: + - 3ccb9355-74f8-4a22-bf90-57653402fd6f + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:18 GMT + etag: + - '"8654D118BA0B073AC89700F4E5124766B186D4C0DEF8B4B91835F85B2E5BF7BC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3ccb9355-74f8-4a22-bf90-57653402fd6f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1252&$top=1157&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1254&$top=1155&$maxpagesize=2"}' + headers: + apim-request-id: + - ef70edec-e1a1-4f87-9b02-469514ab0f49 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:19 GMT + etag: + - '"91283100D5AB5C8B8260604F5D61E1E66860F47E6C3480B3C72A1ACA643C71B7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ef70edec-e1a1-4f87-9b02-469514ab0f49 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1254&$top=1155&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1256&$top=1153&$maxpagesize=2"}' + headers: + apim-request-id: + - dfcb55d8-9930-46db-8bc6-0ea2795cb1ff + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:19 GMT + etag: + - '"9F0A8BAA713528B7A146D33CD2CF35CCF7D1E69087548BEED6AF7A1AA0C6DDD9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dfcb55d8-9930-46db-8bc6-0ea2795cb1ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1256&$top=1153&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1258&$top=1151&$maxpagesize=2"}' + headers: + apim-request-id: + - 6ab7f3ed-8e17-4424-8862-b180cd095511 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:19 GMT + etag: + - '"A03390444D83802614F5622003269052AD755268287131A81E6CB3034506CB1E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6ab7f3ed-8e17-4424-8862-b180cd095511 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1258&$top=1151&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1260&$top=1149&$maxpagesize=2"}' + headers: + apim-request-id: + - c284ed80-b362-4745-be54-71524ceba3ba + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:19 GMT + etag: + - '"86E046AFFC981A0DF4B6C3C2503FDBD1A249C32BB5DBBD5DA18F82FA9BFD247D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c284ed80-b362-4745-be54-71524ceba3ba + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1260&$top=1149&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1262&$top=1147&$maxpagesize=2"}' + headers: + apim-request-id: + - dbf7292b-31d6-427f-b799-7caab78b355d + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:19 GMT + etag: + - '"CEB0D0F250565CE3A69DE56DDAC34547F8F87A46780660DAB0429CC0AA47A1BB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dbf7292b-31d6-427f-b799-7caab78b355d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1262&$top=1147&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1264&$top=1145&$maxpagesize=2"}' + headers: + apim-request-id: + - d2dfbf12-5abb-4a03-a333-ebb3c782e3f2 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:20 GMT + etag: + - '"6B429CC81ED538963EA2CCCA45326D46F0AB02968C410C1939D4EF0BD45AB85F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d2dfbf12-5abb-4a03-a333-ebb3c782e3f2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1264&$top=1145&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1266&$top=1143&$maxpagesize=2"}' + headers: + apim-request-id: + - 095b5465-1caf-437c-a88d-bb7cab6bba07 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:20 GMT + etag: + - '"A650497B211CB68753F58D402BA8CC11AA89E561AB16EA71A82723B962223AC6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 095b5465-1caf-437c-a88d-bb7cab6bba07 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1266&$top=1143&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1268&$top=1141&$maxpagesize=2"}' + headers: + apim-request-id: + - 05a745ef-c73b-4bfa-927c-421e74b51edb + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:20 GMT + etag: + - '"B58E7D3D9B25EF4F387776460F51A050A39D975C0B705307387EB2C900A23E07"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 05a745ef-c73b-4bfa-927c-421e74b51edb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1268&$top=1141&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1270&$top=1139&$maxpagesize=2"}' + headers: + apim-request-id: + - 8af6bd06-ca36-4807-8805-7ab6c46f1910 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:20 GMT + etag: + - '"6AD1CE3DD608AD1160559C8D588B9E6EA426C927FAAC3757063882EA19D2F09E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8af6bd06-ca36-4807-8805-7ab6c46f1910 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1270&$top=1139&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1272&$top=1137&$maxpagesize=2"}' + headers: + apim-request-id: + - e3ffc6ad-8755-4709-88fd-86863dfe73c7 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:20 GMT + etag: + - '"E587C108D68F106573A33D306A6C2F99A00513E44D76F61729EB8AC787E9A57D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e3ffc6ad-8755-4709-88fd-86863dfe73c7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1272&$top=1137&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1274&$top=1135&$maxpagesize=2"}' + headers: + apim-request-id: + - 41c3dea8-cc32-44a9-8727-1c95c4ff61b4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:21 GMT + etag: + - '"25F688CB425A0C42FF25EF16BBC88109BFEDDF9EE44C3D589872377CC8333F47"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 41c3dea8-cc32-44a9-8727-1c95c4ff61b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1274&$top=1135&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1276&$top=1133&$maxpagesize=2"}' + headers: + apim-request-id: + - c69e0453-5771-4cee-af25-3e0ad24146fa + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:21 GMT + etag: + - '"9D15A09F168909BDAA5D92A1C6BCC27E67AF68A5B9885953D91C4347A8F1F3B6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c69e0453-5771-4cee-af25-3e0ad24146fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1276&$top=1133&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1278&$top=1131&$maxpagesize=2"}' + headers: + apim-request-id: + - 19140264-5e5e-4f79-8076-c5abce137342 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:21 GMT + etag: + - '"7089294BC3AD37E1B6C579A0FC561FBF1D23E96B632858986DBD7D224C3C35ED"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 19140264-5e5e-4f79-8076-c5abce137342 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1278&$top=1131&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1280&$top=1129&$maxpagesize=2"}' + headers: + apim-request-id: + - b146621d-4bca-45a7-a60b-035c677bc7fe + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:21 GMT + etag: + - '"ACAAE960BF385F1BECB2E1B2276C0ADEEFB4F10E9C687DDC6726A172B97CCF5A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b146621d-4bca-45a7-a60b-035c677bc7fe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1280&$top=1129&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1282&$top=1127&$maxpagesize=2"}' + headers: + apim-request-id: + - 37f4495a-8ae6-48c8-b409-5b7f60e80f89 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:21 GMT + etag: + - '"0AA55EA7C215FF106BBE2F22D52EE2C139C9479FA8FC8F8E5452FF75471349F8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 37f4495a-8ae6-48c8-b409-5b7f60e80f89 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1282&$top=1127&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1284&$top=1125&$maxpagesize=2"}' + headers: + apim-request-id: + - d8699f28-1280-4681-bcec-78e373814981 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:21 GMT + etag: + - '"C642C51ACC7A2451D3B0979D2DAB388E4E506E2CA478897FC083E00C58073F8E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d8699f28-1280-4681-bcec-78e373814981 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1284&$top=1125&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1286&$top=1123&$maxpagesize=2"}' + headers: + apim-request-id: + - a154d3c8-5b2b-4b78-8971-9d07c9d7c597 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:22 GMT + etag: + - '"A5538D574805A9FC47C7DCD2429454D12799DC2ACE18732832A46EE92E39B740"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a154d3c8-5b2b-4b78-8971-9d07c9d7c597 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1286&$top=1123&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1288&$top=1121&$maxpagesize=2"}' + headers: + apim-request-id: + - c5e551a5-2b4b-488f-9dc7-aa649bf053af + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:22 GMT + etag: + - '"CEA9A983C5F810F399188BAF1B295114001F4A65D5DAA150F7E63056202205EF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c5e551a5-2b4b-488f-9dc7-aa649bf053af + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1288&$top=1121&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1290&$top=1119&$maxpagesize=2"}' + headers: + apim-request-id: + - 256788a6-3c8e-4798-bb62-fff4afccdb77 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:22 GMT + etag: + - '"1F72222AEA034E768393BFB2E6C31AC48410096B7E35DA327AB002F99FAC976E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 256788a6-3c8e-4798-bb62-fff4afccdb77 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1290&$top=1119&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1292&$top=1117&$maxpagesize=2"}' + headers: + apim-request-id: + - 10c8ff8b-f718-4d6d-b99d-1fdd5c574af5 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:22 GMT + etag: + - '"3AC3809783674B53ADE4ED9F187D61DF42A47F22256DCEFCA9693165B22B5117"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 10c8ff8b-f718-4d6d-b99d-1fdd5c574af5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1292&$top=1117&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1294&$top=1115&$maxpagesize=2"}' + headers: + apim-request-id: + - 370fc37b-622c-4037-ab2b-10b76fe12d74 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:22 GMT + etag: + - '"3AC67ADE7F7BDFDF14F76B1F178B803F9C0456379DCD320FEFE1F069CA46305C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 370fc37b-622c-4037-ab2b-10b76fe12d74 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1294&$top=1115&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1296&$top=1113&$maxpagesize=2"}' + headers: + apim-request-id: + - 2cf4a986-c715-411f-a82f-9b27ff32e144 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:23 GMT + etag: + - '"71FE8CD4AEB64F2511A969F375EC00CA5F2818B8F0A628AFE22F93593AB5BC33"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2cf4a986-c715-411f-a82f-9b27ff32e144 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1296&$top=1113&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1298&$top=1111&$maxpagesize=2"}' + headers: + apim-request-id: + - bd78b585-0fe1-48fe-b91c-3c01b21359e7 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:23 GMT + etag: + - '"6EF84FF74A4BF1E0FF0093F596B85954A241B074067A7013CC9C6E0CDAF85D88"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bd78b585-0fe1-48fe-b91c-3c01b21359e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1298&$top=1111&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1109&$maxpagesize=2"}' + headers: + apim-request-id: + - fb740850-cb8b-467e-bf01-8a8bbb16506e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:23 GMT + etag: + - '"496846628A0A0B7628E25E8B6C33AEB601E50527E618D1BC9A3FFD29D1070E1D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fb740850-cb8b-467e-bf01-8a8bbb16506e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1109&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1302&$top=1107&$maxpagesize=2"}' + headers: + apim-request-id: + - 9aa9e57c-e6d3-4f1f-ab25-fc92304468ad + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:23 GMT + etag: + - '"C5157641A0EF9C6816932120D833828571025524F18C9AC7DCBFB41CBDFDFF79"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9aa9e57c-e6d3-4f1f-ab25-fc92304468ad + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1302&$top=1107&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1304&$top=1105&$maxpagesize=2"}' + headers: + apim-request-id: + - 819be5b4-a6b7-478e-917e-632852eab291 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:23 GMT + etag: + - '"D6D2B5D3B60C877BC77398DE13B0F9E5F24052F922704A27F1D38FFE39C668A2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 819be5b4-a6b7-478e-917e-632852eab291 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1304&$top=1105&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1306&$top=1103&$maxpagesize=2"}' + headers: + apim-request-id: + - 896011ee-0e69-413e-b530-21289a0afc10 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:24 GMT + etag: + - '"488C03DEB6DD33FA7F6CA9ADDCC339F0A14EAB86981BF20A8803691A7693DF7E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 896011ee-0e69-413e-b530-21289a0afc10 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1306&$top=1103&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1308&$top=1101&$maxpagesize=2"}' + headers: + apim-request-id: + - a785cfb5-7b37-404b-a8e5-c21351f68602 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:24 GMT + etag: + - '"BCDDC68DB102A54F0B167625127304B5FD19A3B094E5FB5C677015821C9B0913"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a785cfb5-7b37-404b-a8e5-c21351f68602 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1308&$top=1101&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1310&$top=1099&$maxpagesize=2"}' + headers: + apim-request-id: + - 48650000-a0a3-4e85-b6fb-d23891116297 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:24 GMT + etag: + - '"50E95C109074474C856F7BD2854DCABAF900F5B18DFF1F5D0F30BC591A880B90"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 48650000-a0a3-4e85-b6fb-d23891116297 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1310&$top=1099&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1312&$top=1097&$maxpagesize=2"}' + headers: + apim-request-id: + - dab2c26e-fc63-4c64-8d09-06034cdcb507 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:24 GMT + etag: + - '"4CB95FFC798A18208581CB221A89C0896919A95FDC0E19744FA7FD6E6626445B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dab2c26e-fc63-4c64-8d09-06034cdcb507 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1312&$top=1097&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1314&$top=1095&$maxpagesize=2"}' + headers: + apim-request-id: + - bc0172cc-46fd-4ab3-a5fb-0be1e0f1ecfb + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:24 GMT + etag: + - '"FED4A6D1FCD5618EC4B54D91BB5B188D7DE00A0FBCDA185343A5FF8B389E6A2C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bc0172cc-46fd-4ab3-a5fb-0be1e0f1ecfb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1314&$top=1095&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1316&$top=1093&$maxpagesize=2"}' + headers: + apim-request-id: + - 64a6f95b-82c3-4063-a851-7779ace46f92 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:24 GMT + etag: + - '"CBBEDEC34E16544AF61E53DE83377B7271A00579ADEDBE0AD5CE4788A451C60A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 64a6f95b-82c3-4063-a851-7779ace46f92 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1316&$top=1093&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1318&$top=1091&$maxpagesize=2"}' + headers: + apim-request-id: + - 30be66c9-ba52-41e2-9d16-2dba2dfd9baa + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:25 GMT + etag: + - '"1405888794EAB4CE02422CCD29ABB6DAB926F34CDBCA8115E72DDD238AA0D4F0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 30be66c9-ba52-41e2-9d16-2dba2dfd9baa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1318&$top=1091&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1320&$top=1089&$maxpagesize=2"}' + headers: + apim-request-id: + - 47f608fa-f9c4-47fe-b7a8-1c8123fb6838 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:25 GMT + etag: + - '"30B0D59BDD7BA320A3C9627591A6F12B24ED87BEF3743A762B67CD157B057BFB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 47f608fa-f9c4-47fe-b7a8-1c8123fb6838 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1320&$top=1089&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1322&$top=1087&$maxpagesize=2"}' + headers: + apim-request-id: + - c9df5580-ac51-46bf-83bb-c14600957b62 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:25 GMT + etag: + - '"9B20CDA573348DA6DB7C473B7A0BE51FE74738FF41BB6CB1FAD8614C8DA81ED7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c9df5580-ac51-46bf-83bb-c14600957b62 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1322&$top=1087&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1324&$top=1085&$maxpagesize=2"}' + headers: + apim-request-id: + - 5e8be422-4121-4c47-9495-08332c690305 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:25 GMT + etag: + - '"4BC8C70A934791B787984592A6334526CB961669B44C4FE8796A081A3DCE60A3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5e8be422-4121-4c47-9495-08332c690305 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1324&$top=1085&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1326&$top=1083&$maxpagesize=2"}' + headers: + apim-request-id: + - c7db6765-b76d-418c-989f-2d5a13c7091f + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:25 GMT + etag: + - '"60DD22295A2648B682459CD2C481C13F753EBA2AF7A81CF0F6BB907072FA6342"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c7db6765-b76d-418c-989f-2d5a13c7091f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1326&$top=1083&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1328&$top=1081&$maxpagesize=2"}' + headers: + apim-request-id: + - 30c402ef-fdb8-4fe5-bf94-725b2e4e459d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:26 GMT + etag: + - '"51F11DB6775AC48AB7CB198E0C6E3508819BFBCC0001E4A7EF077EC9A7967073"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 30c402ef-fdb8-4fe5-bf94-725b2e4e459d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1328&$top=1081&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1330&$top=1079&$maxpagesize=2"}' + headers: + apim-request-id: + - df464002-da36-43b0-a514-2da8d0af97f0 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:26 GMT + etag: + - '"77E8357ABA2F9FA2132A83170332EC50212232D2887ED788E712C0196CC46C3A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - df464002-da36-43b0-a514-2da8d0af97f0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1330&$top=1079&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1332&$top=1077&$maxpagesize=2"}' + headers: + apim-request-id: + - 5a3fe159-05b6-4985-89bd-cb1fac2d3ab5 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:26 GMT + etag: + - '"0A43AB2F7863C462E56B07F982667A371B884EB841CA8017C006BED2581E62A4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5a3fe159-05b6-4985-89bd-cb1fac2d3ab5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1332&$top=1077&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1334&$top=1075&$maxpagesize=2"}' + headers: + apim-request-id: + - 869e35b2-a956-4f48-b99f-85360e3b044f + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:26 GMT + etag: + - '"7D0C7AD4B0992F40E5B6D8407D00A9346C7F0DAFBC10E2091A055840FEE4BC57"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 869e35b2-a956-4f48-b99f-85360e3b044f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1334&$top=1075&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1336&$top=1073&$maxpagesize=2"}' + headers: + apim-request-id: + - 92ed0832-5202-4360-954b-92da3bf29999 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:26 GMT + etag: + - '"D72014A46A48750991F409F41EE2669BFEC8272A226E48520733563DAF813D5F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 92ed0832-5202-4360-954b-92da3bf29999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1336&$top=1073&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1338&$top=1071&$maxpagesize=2"}' + headers: + apim-request-id: + - 5081acba-d924-4b8d-b26b-35bb95483335 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:26 GMT + etag: + - '"ABA855A48D8FA8DF3B7D49A00982E93A0C4C7DDE33D6440FF2BD7FB02AE447A6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5081acba-d924-4b8d-b26b-35bb95483335 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1338&$top=1071&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1340&$top=1069&$maxpagesize=2"}' + headers: + apim-request-id: + - c3993358-ff10-405e-af1a-4131d0f27c6a + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:27 GMT + etag: + - '"2A7E829843E6F8F2CCBB958CA4C61EFDED65D3526EBD724DA2EB20B690B3159F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c3993358-ff10-405e-af1a-4131d0f27c6a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1340&$top=1069&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1342&$top=1067&$maxpagesize=2"}' + headers: + apim-request-id: + - 179b167f-451f-482f-93dd-b4b286156875 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:27 GMT + etag: + - '"0495F305C2EF364D62576ADA99735FA0F7027EDF9372FD791391FDB39770E582"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 179b167f-451f-482f-93dd-b4b286156875 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1342&$top=1067&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1344&$top=1065&$maxpagesize=2"}' + headers: + apim-request-id: + - 61deeb1e-cb69-410a-b347-507c0b8d06c3 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:27 GMT + etag: + - '"E4ACDAAC9AFCF7D541FCE687F019F3260FF59A43416889B2E73BB8EBB7EB2EF7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 61deeb1e-cb69-410a-b347-507c0b8d06c3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1344&$top=1065&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1346&$top=1063&$maxpagesize=2"}' + headers: + apim-request-id: + - bfc6ad93-24a9-41df-b35f-b15d25d4f359 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:27 GMT + etag: + - '"3A3BF80DF6FDD56B210AC502B723E9B7D67408DFE8A8E5E63C6C2814487409EE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bfc6ad93-24a9-41df-b35f-b15d25d4f359 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1346&$top=1063&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1348&$top=1061&$maxpagesize=2"}' + headers: + apim-request-id: + - af76c0ef-b9f3-4b00-b8ef-646128ba9bfe + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:27 GMT + etag: + - '"3AD486F31096A05BC2EB3844E3530CC6A74D212B11DC84669F9EC70C47D15928"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - af76c0ef-b9f3-4b00-b8ef-646128ba9bfe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1348&$top=1061&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1059&$maxpagesize=2"}' + headers: + apim-request-id: + - d7a0ae72-e179-4e60-a06a-2f32b3769d60 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:27 GMT + etag: + - '"EF21DC4B410A063D80854FAFA103029C9AC6CB931C9BE00CCC0D5ED58F48664D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d7a0ae72-e179-4e60-a06a-2f32b3769d60 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1059&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1352&$top=1057&$maxpagesize=2"}' + headers: + apim-request-id: + - b1c6ac7d-cd34-49eb-9590-3a00f1814056 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:28 GMT + etag: + - '"7E1BEF8EE3467C094C4226A3B8E9A196848E82E75D81801BA85D5761685D615D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b1c6ac7d-cd34-49eb-9590-3a00f1814056 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1352&$top=1057&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1354&$top=1055&$maxpagesize=2"}' + headers: + apim-request-id: + - 2a724247-77b8-43d1-9467-ab28e272af0a + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:28 GMT + etag: + - '"30BA60B1CEF2F022525275C693580E28A734B640F83D8BDA457594E994B22198"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2a724247-77b8-43d1-9467-ab28e272af0a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1354&$top=1055&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1356&$top=1053&$maxpagesize=2"}' + headers: + apim-request-id: + - d0a19624-e15a-4cd0-a05c-d37d1ef69e2a + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:28 GMT + etag: + - '"3CF775306DB5CFAC32ED83E8775494645C692967D7B55689B6AFF7A23D47AF60"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d0a19624-e15a-4cd0-a05c-d37d1ef69e2a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1356&$top=1053&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1358&$top=1051&$maxpagesize=2"}' + headers: + apim-request-id: + - 21263ca7-9071-479f-b4d6-582097c071b5 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:28 GMT + etag: + - '"F9E10A229B54AED52D848002522A49779C128E822E6ED7119417EA81E716E162"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 21263ca7-9071-479f-b4d6-582097c071b5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1358&$top=1051&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1360&$top=1049&$maxpagesize=2"}' + headers: + apim-request-id: + - 1a596580-444a-4eeb-bf34-388f7c475316 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:28 GMT + etag: + - '"19C85E4F540BE413A1443263DEF0BC6C5FA9FBFC7DFDBBE40225E913CC6E8FFF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1a596580-444a-4eeb-bf34-388f7c475316 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1360&$top=1049&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1362&$top=1047&$maxpagesize=2"}' + headers: + apim-request-id: + - 1ed2aaed-1aa4-41d2-925e-8e8e47f8053e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:28 GMT + etag: + - '"C6B523178B0E1F4B9992E5ABDFBEC219A03BFB4AB602CCB2FF16DF9E40CE34B6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1ed2aaed-1aa4-41d2-925e-8e8e47f8053e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1362&$top=1047&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1364&$top=1045&$maxpagesize=2"}' + headers: + apim-request-id: + - a1b61496-b813-462e-ae6e-bcb322e14af6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:30 GMT + etag: + - '"B3322E82A9123148CB2AD8499C3A4A66448099517D7ABB031AC173A0A1B6943B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1b61496-b813-462e-ae6e-bcb322e14af6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1364&$top=1045&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1366&$top=1043&$maxpagesize=2"}' + headers: + apim-request-id: + - 026b7e64-f364-4256-8126-b959586c7936 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:30 GMT + etag: + - '"A8D8C2FE75FB1D9AA6879870FA4BA752366F6E20D5CA519A100CD95728B28E83"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 026b7e64-f364-4256-8126-b959586c7936 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1366&$top=1043&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1368&$top=1041&$maxpagesize=2"}' + headers: + apim-request-id: + - bc971252-9b3a-4351-9539-3ed344d0e8c2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:30 GMT + etag: + - '"E2BF7C25BAE7E730D00C340FB26053E6C71CC134DCBC36EB412137B2E3350F56"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bc971252-9b3a-4351-9539-3ed344d0e8c2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1368&$top=1041&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1370&$top=1039&$maxpagesize=2"}' + headers: + apim-request-id: + - 6430c922-f669-458a-bded-5b2b808578be + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:30 GMT + etag: + - '"36FCDF27EEB910A5BD52579B95DCBD5A246FE797CC71467642BB384576A32A68"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6430c922-f669-458a-bded-5b2b808578be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1370&$top=1039&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1372&$top=1037&$maxpagesize=2"}' + headers: + apim-request-id: + - 46a0106a-2720-44fc-81e6-dc80682982e2 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:30 GMT + etag: + - '"A43B6588FB68A5C5D6B657566ED5114E832124930086EB021FC716B0F009E1F3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 46a0106a-2720-44fc-81e6-dc80682982e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1372&$top=1037&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1374&$top=1035&$maxpagesize=2"}' + headers: + apim-request-id: + - f67044ff-c62e-447a-a8a7-0117c02fa5dd + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:30 GMT + etag: + - '"4A07863B8EECF449BDC7EAFB3B7F8C9F08BB7FF0EDE0E05D46CFA3260D35AAFE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f67044ff-c62e-447a-a8a7-0117c02fa5dd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1374&$top=1035&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1376&$top=1033&$maxpagesize=2"}' + headers: + apim-request-id: + - 59b0a2b8-9d72-4270-8282-1fbf3bff6e51 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:31 GMT + etag: + - '"061AC3E04E7F4A2921E6AF66D3131F2E77435EFADD3FCAAA00473A4D60D097A4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 59b0a2b8-9d72-4270-8282-1fbf3bff6e51 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1376&$top=1033&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1378&$top=1031&$maxpagesize=2"}' + headers: + apim-request-id: + - 05adf53e-597f-4e48-a0e2-4e342a1619b1 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:31 GMT + etag: + - '"2AB1C5644F24F30C2E81BD21FA728F74FD10CE4FE4913D46C90C24695082CB1C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 05adf53e-597f-4e48-a0e2-4e342a1619b1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1378&$top=1031&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1380&$top=1029&$maxpagesize=2"}' + headers: + apim-request-id: + - ba6c7934-b32c-4ee4-8379-44c5ad2ce301 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:31 GMT + etag: + - '"65352F4A55A8835BF75AD25E8390EFC7BD539629373E202BC6ADF0554E6F6CF8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ba6c7934-b32c-4ee4-8379-44c5ad2ce301 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1380&$top=1029&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1382&$top=1027&$maxpagesize=2"}' + headers: + apim-request-id: + - 5fc68c14-6230-4262-a272-7ce3ea9a0090 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:31 GMT + etag: + - '"EE10F82B58C67FCB64B87768D3EDEAED973F71923D4F60B50212CF73DA738585"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5fc68c14-6230-4262-a272-7ce3ea9a0090 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1382&$top=1027&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1384&$top=1025&$maxpagesize=2"}' + headers: + apim-request-id: + - c9ef0725-2da8-4560-830c-f4de248b3fbf + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:31 GMT + etag: + - '"D80DA23782CBFFBA76FF25B974009A39848AE846A7C301B8CF38A4FDF89C58C1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c9ef0725-2da8-4560-830c-f4de248b3fbf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1384&$top=1025&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1386&$top=1023&$maxpagesize=2"}' + headers: + apim-request-id: + - ff6aaf24-1203-4bad-8c7e-31fe03e64ac9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:32 GMT + etag: + - '"360821590CC3681B0B580C0025993B5AF2D40D864110717D212D2F73464C7A51"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ff6aaf24-1203-4bad-8c7e-31fe03e64ac9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1386&$top=1023&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1388&$top=1021&$maxpagesize=2"}' + headers: + apim-request-id: + - 2c02fbf9-d0fc-4a99-bb9b-11e8c8b9bd94 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:32 GMT + etag: + - '"9FE882D2A60D4E6936C78056E7604B9372F29B664E130F24424F2DBAD3D129EB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2c02fbf9-d0fc-4a99-bb9b-11e8c8b9bd94 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1388&$top=1021&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1390&$top=1019&$maxpagesize=2"}' + headers: + apim-request-id: + - 37006820-43b5-4339-90a1-1956085925f6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:32 GMT + etag: + - '"5EE19BE4BC2E417E049357247332C7DDF5765454629F039EE4048D82CFF4C28F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 37006820-43b5-4339-90a1-1956085925f6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1390&$top=1019&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1392&$top=1017&$maxpagesize=2"}' + headers: + apim-request-id: + - 458c4453-ebac-42f3-8486-cc420a15c780 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:32 GMT + etag: + - '"3EFD5FB08DE88028C46D1FD781FB37FDE63811F4A0F320DCC6877EB157B884FB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 458c4453-ebac-42f3-8486-cc420a15c780 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1392&$top=1017&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1394&$top=1015&$maxpagesize=2"}' + headers: + apim-request-id: + - 3843ba6d-f8ea-40a8-a5e8-d4dd7a018aec + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:32 GMT + etag: + - '"E0C3199443F4DD099559B74C176089B466320FA377BBD1EC9E32C24D73447C0D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3843ba6d-f8ea-40a8-a5e8-d4dd7a018aec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1394&$top=1015&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1396&$top=1013&$maxpagesize=2"}' + headers: + apim-request-id: + - 4336f26b-438f-4cda-a92a-f944c84c6e07 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:33 GMT + etag: + - '"FA6E194C73DF1A837C5C0557830A3FDD49AE444B8A917D7465BB9554E82C8C5B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4336f26b-438f-4cda-a92a-f944c84c6e07 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1396&$top=1013&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1398&$top=1011&$maxpagesize=2"}' + headers: + apim-request-id: + - 8d703028-2ae5-42e3-81ee-11111ca1af99 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:33 GMT + etag: + - '"2B7D4F15D2BE0F24C1856A0F68E425D2038D0DE0AEA31D4BFA74AE437B2C36FC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8d703028-2ae5-42e3-81ee-11111ca1af99 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1398&$top=1011&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1009&$maxpagesize=2"}' + headers: + apim-request-id: + - 59bcf84f-a779-4ad0-b6cc-316714fefd59 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:33 GMT + etag: + - '"9646F3B09A11CEBA54EAD256A4F4E6579225AF25D6AB967B05DB60EB0698DB54"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 59bcf84f-a779-4ad0-b6cc-316714fefd59 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1009&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1402&$top=1007&$maxpagesize=2"}' + headers: + apim-request-id: + - f7ed3598-01cb-4e43-8f45-247316ca1ff3 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:33 GMT + etag: + - '"A78303698FEF22CC8190A70F944DC77BAEF6CF268058A01B6F1B0155B61A1E03"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f7ed3598-01cb-4e43-8f45-247316ca1ff3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1402&$top=1007&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1404&$top=1005&$maxpagesize=2"}' + headers: + apim-request-id: + - 19eec4b1-4795-4288-b593-3c40282e79f6 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:33 GMT + etag: + - '"771B1F37331B293A2317C549CBA4C07331DCB9BF0BDA3EB091C42380786F5B3F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 19eec4b1-4795-4288-b593-3c40282e79f6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1404&$top=1005&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1406&$top=1003&$maxpagesize=2"}' + headers: + apim-request-id: + - 465c349d-d037-4068-be70-a31a5f4a9a92 + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:33 GMT + etag: + - '"DA87287C8C33191516A5C3DB6C3009D0FAAA4288E5A369F1540D72E45282D082"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 465c349d-d037-4068-be70-a31a5f4a9a92 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1406&$top=1003&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1408&$top=1001&$maxpagesize=2"}' + headers: + apim-request-id: + - ad20bf9f-73d6-4b64-b41e-e978182a3c59 + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:34 GMT + etag: + - '"7DF40CB701578147CE4368C80B6A83A8CA60E3429DD5C0BD10C6C8738FEA7A18"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ad20bf9f-73d6-4b64-b41e-e978182a3c59 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1408&$top=1001&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1410&$top=999&$maxpagesize=2"}' + headers: + apim-request-id: + - b388e2e2-bbc0-4248-8837-f02c44f67db9 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:34 GMT + etag: + - '"47FA0ED0833E0516559F913B966086B407F419083C8D9651D4DA965C8213A40B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b388e2e2-bbc0-4248-8837-f02c44f67db9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1410&$top=999&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1412&$top=997&$maxpagesize=2"}' + headers: + apim-request-id: + - 8e1b57a1-1445-40aa-a863-fa4abc6e55df + cache-control: + - public,max-age=1 + content-length: + - '753' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:34 GMT + etag: + - '"D27A637EC28083DA24B0A7420CA0398F0EC24E759EBB3FB84CF6924FE981079A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8e1b57a1-1445-40aa-a863-fa4abc6e55df + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1412&$top=997&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1414&$top=995&$maxpagesize=2"}' + headers: + apim-request-id: + - 1c48b030-393d-4d24-ac99-5ced82c48b6d + cache-control: + - public,max-age=1 + content-length: + - '753' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:34 GMT + etag: + - '"6BE2AACB9A013964752D3198CBDDD996598307229B7074D1BA1D81DD4BCE0633"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1c48b030-393d-4d24-ac99-5ced82c48b6d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1414&$top=995&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1416&$top=993&$maxpagesize=2"}' + headers: + apim-request-id: + - 8d760104-c1d4-43d2-8628-285ab404d152 + cache-control: + - public,max-age=1 + content-length: + - '753' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:34 GMT + etag: + - '"1855CE01C05EAB4CDEDEA19D87F8B8B91229AAA63C409945A616E95E931F5F38"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8d760104-c1d4-43d2-8628-285ab404d152 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1416&$top=993&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1418&$top=991&$maxpagesize=2"}' + headers: + apim-request-id: + - 75129015-22ef-4130-8dc8-9a76d2b1c330 + cache-control: + - public,max-age=1 + content-length: + - '753' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:35 GMT + etag: + - '"2D7150BD7345CE86AB56077FAC4E2D6ABA7B32F19FB2A27DC6D79072B4B03A25"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 75129015-22ef-4130-8dc8-9a76d2b1c330 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1418&$top=991&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1420&$top=989&$maxpagesize=2"}' + headers: + apim-request-id: + - e7ac6281-14c7-4297-a3fc-5bd32a25a4af + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:35 GMT + etag: + - '"13CF6BFFA5589F4230C38EED08F3ADC51C2CC8957B5352F62F25684701FD3150"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e7ac6281-14c7-4297-a3fc-5bd32a25a4af + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1420&$top=989&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1422&$top=987&$maxpagesize=2"}' + headers: + apim-request-id: + - 0e063186-459a-49a1-97c7-08552419df01 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:35 GMT + etag: + - '"ECC1AF82E8BB8270EF595259C3BEA5134CC0381C2CF57E2F6ED1DA33969D8855"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0e063186-459a-49a1-97c7-08552419df01 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1422&$top=987&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1424&$top=985&$maxpagesize=2"}' + headers: + apim-request-id: + - b59f8d89-c33b-4814-aa44-16e461948517 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:35 GMT + etag: + - '"D21E29062AB80AD001A564F873EE3BF9C62C6C1C4F5156D011AD75F3352B2E45"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b59f8d89-c33b-4814-aa44-16e461948517 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1424&$top=985&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1426&$top=983&$maxpagesize=2"}' + headers: + apim-request-id: + - 42d531e2-c3c4-4547-b855-2b9cf015d02f + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:35 GMT + etag: + - '"AC86A573DD1D5D9FB0D79AA00DE92936524E3C0B2A4C4BC3CEC76A876F79D3EC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 42d531e2-c3c4-4547-b855-2b9cf015d02f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1426&$top=983&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1428&$top=981&$maxpagesize=2"}' + headers: + apim-request-id: + - d673b176-980e-441a-b589-48bf1ea57d34 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:35 GMT + etag: + - '"D773804E2A82CD6B3EEEEB5AE496084142136056ECF0ED00B85C81DBD937CEC7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d673b176-980e-441a-b589-48bf1ea57d34 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1428&$top=981&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1430&$top=979&$maxpagesize=2"}' + headers: + apim-request-id: + - 41dea0a0-a5b5-4b19-9112-27b632cb6aa1 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:36 GMT + etag: + - '"EB8C051AE43905644337B974B1EEF2344FEEF66B973092C897AFD545652D8BA6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 41dea0a0-a5b5-4b19-9112-27b632cb6aa1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1430&$top=979&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1432&$top=977&$maxpagesize=2"}' + headers: + apim-request-id: + - fcc2a275-f5e7-401f-a2ce-375416aa13e7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:36 GMT + etag: + - '"0E6B6C743566039B23CD538A8AF009FB63D13BBEE45A790CEE27FFCF452DA8CE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fcc2a275-f5e7-401f-a2ce-375416aa13e7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1432&$top=977&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1434&$top=975&$maxpagesize=2"}' + headers: + apim-request-id: + - f6d11302-2d86-466d-a619-1fb5665d96a0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:36 GMT + etag: + - '"D9ADB69D270480866BDC6FB60CC921A05AA10F0C1CE8422B9C3ED2F0F4E4DD13"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f6d11302-2d86-466d-a619-1fb5665d96a0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1434&$top=975&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1436&$top=973&$maxpagesize=2"}' + headers: + apim-request-id: + - 3ff78dd8-bb9c-44c0-aeb3-bf0b15b91071 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:36 GMT + etag: + - '"BECB9F6F0DCF7EB01E690C3F5BE4BB3AF8C0B9B02ED6638E7D2DD6D20DD373A1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3ff78dd8-bb9c-44c0-aeb3-bf0b15b91071 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1436&$top=973&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1438&$top=971&$maxpagesize=2"}' + headers: + apim-request-id: + - 27374323-c306-4d32-b62d-3c2ecfd55c85 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:36 GMT + etag: + - '"2E582B136EAEEBDB3A6331F8551FADCC5C557ECD0877A956DEFD57451BE6C100"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 27374323-c306-4d32-b62d-3c2ecfd55c85 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1438&$top=971&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1440&$top=969&$maxpagesize=2"}' + headers: + apim-request-id: + - 0a0dae22-5a2f-431f-897f-950def03edb6 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:37 GMT + etag: + - '"2A3051E53FF3641D3C20131A5D4C64AC834B6F9904088DE954EEE48778CBE653"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0a0dae22-5a2f-431f-897f-950def03edb6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1440&$top=969&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1442&$top=967&$maxpagesize=2"}' + headers: + apim-request-id: + - 67100c49-5f48-4583-85f8-9c01d96668e1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:37 GMT + etag: + - '"7967EB6C10433FB4E7E4E347179E7924034A638408774F631BD5EDBD8920A590"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 67100c49-5f48-4583-85f8-9c01d96668e1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1442&$top=967&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1444&$top=965&$maxpagesize=2"}' + headers: + apim-request-id: + - 9d59f191-e970-4e0b-bf96-6e3b1b1c0792 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:37 GMT + etag: + - '"AD39D25581F08B851A4DBA9080FB6907423E1DFDA5CBDB20CF4CE0127E95390F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9d59f191-e970-4e0b-bf96-6e3b1b1c0792 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1444&$top=965&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1446&$top=963&$maxpagesize=2"}' + headers: + apim-request-id: + - 165478d4-a19a-404a-ae37-3bac7bd70b8e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:37 GMT + etag: + - '"E71EEEA769C31BEE2E1C166A94A79AFDA046EF47732473F90374061296B996E7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 165478d4-a19a-404a-ae37-3bac7bd70b8e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1446&$top=963&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1448&$top=961&$maxpagesize=2"}' + headers: + apim-request-id: + - e4650db5-f299-401b-b821-cefb49806e5b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:37 GMT + etag: + - '"31D7D14FBB7209A3B30DB004046B7EDDC09B3CEEB90DC9B4A133637198A7FE11"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e4650db5-f299-401b-b821-cefb49806e5b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1448&$top=961&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=959&$maxpagesize=2"}' + headers: + apim-request-id: + - b22fedc2-dd9e-463d-a0f2-f8092468ee1f + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:37 GMT + etag: + - '"C160AA6E27379AF238FE557CA546B6FF2C714C497E1F4D24AF8D5431D37D0CDC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b22fedc2-dd9e-463d-a0f2-f8092468ee1f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=959&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1452&$top=957&$maxpagesize=2"}' + headers: + apim-request-id: + - 3d78623c-37b9-44b7-9d84-2304aa4abb01 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:38 GMT + etag: + - '"10F9292B5C8A01D46E1B7CD98C99D2554BB039CD23C1391943F21DA99E3C633E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3d78623c-37b9-44b7-9d84-2304aa4abb01 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1452&$top=957&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1454&$top=955&$maxpagesize=2"}' + headers: + apim-request-id: + - 80d6af45-07e3-4bc1-a2f5-6a5fe775ac62 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:38 GMT + etag: + - '"9C3D71E7E9E8ACC948DD7291499F8EA20E4A6E4635DE7C1209BA3FE7B88E0F8E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 80d6af45-07e3-4bc1-a2f5-6a5fe775ac62 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1454&$top=955&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1456&$top=953&$maxpagesize=2"}' + headers: + apim-request-id: + - 3b0a59a6-2595-43c9-b1de-1b85455f7b2e + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:38 GMT + etag: + - '"62201B1E1F7F79A176D8F28324A4DC7A5EE26A651E7075FFEB958E618C2C6958"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3b0a59a6-2595-43c9-b1de-1b85455f7b2e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1456&$top=953&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1458&$top=951&$maxpagesize=2"}' + headers: + apim-request-id: + - a8ec8029-a633-4694-913e-b9197f639108 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:38 GMT + etag: + - '"CA539D32FFD90BB4C155E064D08F9C77DC58FD4688C4BA6919F8751BFABAABD4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a8ec8029-a633-4694-913e-b9197f639108 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1458&$top=951&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1460&$top=949&$maxpagesize=2"}' + headers: + apim-request-id: + - 768d38a8-40f8-43e3-9115-b97bb0915430 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:38 GMT + etag: + - '"79844FA14F641B14EFDA2851218A3804E14DB10631289D589487AAA28FC934C6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 768d38a8-40f8-43e3-9115-b97bb0915430 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1460&$top=949&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1462&$top=947&$maxpagesize=2"}' + headers: + apim-request-id: + - 26597289-844e-408d-9950-05bf5bce6cbc + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:38 GMT + etag: + - '"EA167AD5AD77397D8E6D8F4591675CA13D59B86E192F6A9851D717D157E2EF47"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 26597289-844e-408d-9950-05bf5bce6cbc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1462&$top=947&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1464&$top=945&$maxpagesize=2"}' + headers: + apim-request-id: + - 775e2ecb-294a-4e5f-92c8-1a4523be0fb8 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:39 GMT + etag: + - '"472926BC4087AF93738EEBE9235B213CBC2F744F7703A9351C56E6D3F02CBF7A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 775e2ecb-294a-4e5f-92c8-1a4523be0fb8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1464&$top=945&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1466&$top=943&$maxpagesize=2"}' + headers: + apim-request-id: + - a6869049-8d56-4d51-95f2-e1bb376c0bdc + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:39 GMT + etag: + - '"90AA7BA44EB013E043E87FF21034227806957A5A122A0DC82C48DE614F30797D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a6869049-8d56-4d51-95f2-e1bb376c0bdc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1466&$top=943&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1468&$top=941&$maxpagesize=2"}' + headers: + apim-request-id: + - 25877ab8-afac-4383-ae47-7cb8e9056a7f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:39 GMT + etag: + - '"DDF97D931CD437D0412B7D82EDCF05EDC7E69C3B9543CF1CCA380FB8C1420428"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 25877ab8-afac-4383-ae47-7cb8e9056a7f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1468&$top=941&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1470&$top=939&$maxpagesize=2"}' + headers: + apim-request-id: + - 7d5d4707-b487-4095-baf1-e4d320804fce + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:39 GMT + etag: + - '"4284E8AB8A58EBF0A89E6000B7E0028DB8195ADEE2F038E1ED7EC2CAA25CB5CD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7d5d4707-b487-4095-baf1-e4d320804fce + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1470&$top=939&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1472&$top=937&$maxpagesize=2"}' + headers: + apim-request-id: + - e8c6a93b-49e0-4d18-ae9d-3d21091478fc + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:39 GMT + etag: + - '"6FF386DCFF9164A61BB46220597997F0B04AA65CF3F11E4334858BF501E8DEE5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e8c6a93b-49e0-4d18-ae9d-3d21091478fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1472&$top=937&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1474&$top=935&$maxpagesize=2"}' + headers: + apim-request-id: + - 08994934-0f47-49d6-afef-7b97af8086f4 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:39 GMT + etag: + - '"61C1DE35CDB418326E7EBFD6A5CDA95DA5FFD5E15E61608079E260A162E0182D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 08994934-0f47-49d6-afef-7b97af8086f4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1474&$top=935&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1476&$top=933&$maxpagesize=2"}' + headers: + apim-request-id: + - fb868e68-21da-4bd9-a81e-779236d53782 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:40 GMT + etag: + - '"F427BC1E6D2E468948E3AB1F8EA3FC04958614683DC1F88E493FF34C5C171198"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fb868e68-21da-4bd9-a81e-779236d53782 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1476&$top=933&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1478&$top=931&$maxpagesize=2"}' + headers: + apim-request-id: + - ff1999d5-ccf3-49cf-b228-393db66499ac + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:40 GMT + etag: + - '"390841ED1733824D74CECF6CFAA2F055703AFC1E3E4B6306F52243AE22A405B3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ff1999d5-ccf3-49cf-b228-393db66499ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1478&$top=931&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1480&$top=929&$maxpagesize=2"}' + headers: + apim-request-id: + - a982c37e-48ac-42e6-9da5-9f11e585fed4 + cache-control: + - public,max-age=1 + content-length: + - '743' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:40 GMT + etag: + - '"95FBB7E9654E5BFD172EA6ADFEFBBAFD32A62073D94CD4BF39D707FEF11C6C9F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a982c37e-48ac-42e6-9da5-9f11e585fed4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1480&$top=929&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1482&$top=927&$maxpagesize=2"}' + headers: + apim-request-id: + - 67a266f7-aa82-4d3c-a7aa-4cbcec401aa3 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:40 GMT + etag: + - '"FD6E6DE6C9BD8C845F60E48835410E6B3AA74B8C819EDA2DF1D97860D5F75CCA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 67a266f7-aa82-4d3c-a7aa-4cbcec401aa3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1482&$top=927&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1484&$top=925&$maxpagesize=2"}' + headers: + apim-request-id: + - 17ad3657-9ef0-4034-8694-8f2d2169f235 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:40 GMT + etag: + - '"20AE5E1840DC862EA2CE99B1DEB41A1A669FD84372F822B1617D3D44DE74B732"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 17ad3657-9ef0-4034-8694-8f2d2169f235 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1484&$top=925&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1486&$top=923&$maxpagesize=2"}' + headers: + apim-request-id: + - 7734c6d4-b478-4b6a-a797-35c5f99f888d + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:41 GMT + etag: + - '"23C7C3039923D31BC4684CAFE2E025C8C7D7FADBE772552E235615D73F4796EE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7734c6d4-b478-4b6a-a797-35c5f99f888d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1486&$top=923&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1488&$top=921&$maxpagesize=2"}' + headers: + apim-request-id: + - f4729fb6-633a-4d18-a2d6-543a387fcc28 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:41 GMT + etag: + - '"875E97934AD852B87E87EEF342D9959870A010C511CF187575DA0BA0FC838372"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f4729fb6-633a-4d18-a2d6-543a387fcc28 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1488&$top=921&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1490&$top=919&$maxpagesize=2"}' + headers: + apim-request-id: + - 35a658b5-abcc-42f6-b9dd-e7c7f0a5fb46 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:41 GMT + etag: + - '"4AD20C189AC7C12B88E276ECAEA794E9B17368793A92D490909C4D96DA9E9AA6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 35a658b5-abcc-42f6-b9dd-e7c7f0a5fb46 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1490&$top=919&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1492&$top=917&$maxpagesize=2"}' + headers: + apim-request-id: + - e3564998-c614-4433-8c50-5b319aea3770 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:41 GMT + etag: + - '"7E28FAAB2C700A320F17ACA55CEFEBABC82A854A8AA4E1CB2E71F7644FFCDF50"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e3564998-c614-4433-8c50-5b319aea3770 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1492&$top=917&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1494&$top=915&$maxpagesize=2"}' + headers: + apim-request-id: + - 719500dc-2940-42fb-a4f6-4b2ef15153f9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:41 GMT + etag: + - '"F45F3AE3FD1E43531C583097AE740E4A40F956FA9E76F2D75B2B2260E8518A30"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 719500dc-2940-42fb-a4f6-4b2ef15153f9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1494&$top=915&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1496&$top=913&$maxpagesize=2"}' + headers: + apim-request-id: + - 41ebc31a-d2b0-443d-a1fd-3e1a035e373f + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:42 GMT + etag: + - '"95F04F548C90D7CB3E4D79B1EC35B57C653E8220948999E28562E2EC74EC48A7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 41ebc31a-d2b0-443d-a1fd-3e1a035e373f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1496&$top=913&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1498&$top=911&$maxpagesize=2"}' + headers: + apim-request-id: + - 1c0f509e-4576-4bfe-a496-cdf8830d0ba6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:42 GMT + etag: + - '"EBE58305A4DAD1CCBC9FEB9F04984800F9685E892B37CE600B54A5F44C8408E1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1c0f509e-4576-4bfe-a496-cdf8830d0ba6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1498&$top=911&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=909&$maxpagesize=2"}' + headers: + apim-request-id: + - 7939fddb-53cc-405b-8cb9-27a2fd4e85ff + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:42 GMT + etag: + - '"9F3212628AAA3900A7961BC70430E47709C2695B65F3B5555670EAF7FA613685"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7939fddb-53cc-405b-8cb9-27a2fd4e85ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=909&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1502&$top=907&$maxpagesize=2"}' + headers: + apim-request-id: + - e81ad258-0d50-4f6d-b437-f374e8982c8d + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:42 GMT + etag: + - '"AF9D4467216413BD8E4F13246ECBF13A33CA55588D521338D971B6AE2138997B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e81ad258-0d50-4f6d-b437-f374e8982c8d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1502&$top=907&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1504&$top=905&$maxpagesize=2"}' + headers: + apim-request-id: + - a9911217-90f7-46f5-a31e-61ef2f8466aa + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:42 GMT + etag: + - '"E703D65B085731D768337379261F4D8DD4167FDAE9BF552A1D55E2DB582E023B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a9911217-90f7-46f5-a31e-61ef2f8466aa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1504&$top=905&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1506&$top=903&$maxpagesize=2"}' + headers: + apim-request-id: + - 1df0ab9e-7075-4c3e-a565-82b21840dcf0 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:42 GMT + etag: + - '"84FE183407AF2DE4AC5EABDFDAA228A2799280ED2570543FF7B038F6BB8E8A87"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1df0ab9e-7075-4c3e-a565-82b21840dcf0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1506&$top=903&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1508&$top=901&$maxpagesize=2"}' + headers: + apim-request-id: + - b64ce80f-2054-402a-8044-41df7707d223 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:43 GMT + etag: + - '"69B9EE56D5B553DBEEEAC3BB61E3CEAD474A93E067BF48FA8C5C29833CC541B5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b64ce80f-2054-402a-8044-41df7707d223 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1508&$top=901&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1510&$top=899&$maxpagesize=2"}' + headers: + apim-request-id: + - e8ebcebb-dd39-44ad-ab87-8fe8b5f45baa + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:43 GMT + etag: + - '"4ECEE73338F85AE9DAB95F3B54912895BE001BAB9B5633A594305CDADDDD8945"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e8ebcebb-dd39-44ad-ab87-8fe8b5f45baa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1510&$top=899&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1512&$top=897&$maxpagesize=2"}' + headers: + apim-request-id: + - 9a9ad885-7e90-4526-8d38-910df18ad3ab + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:43 GMT + etag: + - '"9AFB7420EFB3E3568425222D604E994BE1003950D9E234EC78E22A81CB4F9844"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9a9ad885-7e90-4526-8d38-910df18ad3ab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1512&$top=897&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1514&$top=895&$maxpagesize=2"}' + headers: + apim-request-id: + - 1dea777d-35e1-45da-92e9-7c77b695a536 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:43 GMT + etag: + - '"80A73928D815B15482E88C6127C50F3E78B0E7B2667551724D5BBE7C10D94ABD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1dea777d-35e1-45da-92e9-7c77b695a536 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1514&$top=895&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1516&$top=893&$maxpagesize=2"}' + headers: + apim-request-id: + - 5dfdd029-a5ca-42e9-9a33-fea4ee4c9c54 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:43 GMT + etag: + - '"2282EEA6B4BBEF729F46327E17AE33A54F106049A1B0DDF8BE0092E2EC1BF4E6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5dfdd029-a5ca-42e9-9a33-fea4ee4c9c54 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1516&$top=893&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1518&$top=891&$maxpagesize=2"}' + headers: + apim-request-id: + - 596ec83a-d4f1-4dac-9bd0-79498228d5e8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:44 GMT + etag: + - '"3B819EA0501EE7C9448135CDE7887FF77B0BC6E60A6D04E6A18AE8480F2504DD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 596ec83a-d4f1-4dac-9bd0-79498228d5e8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1518&$top=891&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1520&$top=889&$maxpagesize=2"}' + headers: + apim-request-id: + - 173fc337-f1da-4b9e-970e-0592187ea3c7 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:44 GMT + etag: + - '"3C79B558CF23212D6AE83176A6B103909590B4D85A10C4EC6652D266BF556177"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 173fc337-f1da-4b9e-970e-0592187ea3c7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1520&$top=889&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1522&$top=887&$maxpagesize=2"}' + headers: + apim-request-id: + - 43f7c4e9-6ed4-49f3-94ba-be119a519730 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:44 GMT + etag: + - '"9810E08C3CEDBE6720821B79257B1085232638BDD7147DF868CDC2BFC3484E10"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 43f7c4e9-6ed4-49f3-94ba-be119a519730 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1522&$top=887&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1524&$top=885&$maxpagesize=2"}' + headers: + apim-request-id: + - b47c4edd-0d1e-42d5-844e-0246225145bc + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:44 GMT + etag: + - '"1B431706C4C2E1B9891AEBC3B8D0E7713BA8B42EF429A968390D932ABB5E0BAC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b47c4edd-0d1e-42d5-844e-0246225145bc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1524&$top=885&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1526&$top=883&$maxpagesize=2"}' + headers: + apim-request-id: + - 8106984e-9fe6-4c25-b58d-da669fb0eb88 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:44 GMT + etag: + - '"59F56A64AB73DA694E13705302112C54ABD67EA910B2C0C870DC91924C20DE01"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8106984e-9fe6-4c25-b58d-da669fb0eb88 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1526&$top=883&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1528&$top=881&$maxpagesize=2"}' + headers: + apim-request-id: + - 67db6f0a-cea8-437a-9609-f014dbc0e819 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:45 GMT + etag: + - '"7BD8919FF89600D7D0C12450D94BF331C49566195134049E56E6BE1DB172B5CC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 67db6f0a-cea8-437a-9609-f014dbc0e819 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1528&$top=881&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1530&$top=879&$maxpagesize=2"}' + headers: + apim-request-id: + - e5c3df1a-af5f-482b-b969-db60e1520771 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:45 GMT + etag: + - '"8CEE02FB84F784CDF329CC7A0AD86AA764DF26BEC8C9E6F7E164BC6247EB0A0A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5c3df1a-af5f-482b-b969-db60e1520771 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1530&$top=879&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1532&$top=877&$maxpagesize=2"}' + headers: + apim-request-id: + - f5e53c94-8bc3-4167-b8e9-9476f0d0a850 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:45 GMT + etag: + - '"5BFE595923CB154C41E5B13A96FCEA938011BA57EC0D4B87A9EA769254CCDFAD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f5e53c94-8bc3-4167-b8e9-9476f0d0a850 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1532&$top=877&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1534&$top=875&$maxpagesize=2"}' + headers: + apim-request-id: + - b161a071-634a-4f91-a4d1-d3ba05d6726c + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:45 GMT + etag: + - '"C5603EECB222F6F21A70DCA4665D731B3CAF0C93FC67AF76746395A9589084DF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b161a071-634a-4f91-a4d1-d3ba05d6726c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1534&$top=875&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1536&$top=873&$maxpagesize=2"}' + headers: + apim-request-id: + - da470b58-6b2e-472d-a5dd-f0bccd14e4b2 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:45 GMT + etag: + - '"911E5F84BD74F8DD0CA74ABC0BDC50F41746980B91F967505D27A6AD52D75504"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - da470b58-6b2e-472d-a5dd-f0bccd14e4b2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1536&$top=873&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1538&$top=871&$maxpagesize=2"}' + headers: + apim-request-id: + - cb1c97bf-48f4-4950-82c4-ebf3c38ad85c + cache-control: + - public,max-age=1 + content-length: + - '750' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:46 GMT + etag: + - '"5C992A1187D3CC2C46F5B154913D119A868C3E6751D7C7ABDFA00A4C202A6BF2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cb1c97bf-48f4-4950-82c4-ebf3c38ad85c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1538&$top=871&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1540&$top=869&$maxpagesize=2"}' + headers: + apim-request-id: + - 4f80ee3e-3aaf-4174-b2c4-96da43fac076 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:46 GMT + etag: + - '"B59EB84882CDB2E6521BCE9CE36098EFA0045ED30D6FF8F4EBC5103B6FE112BC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4f80ee3e-3aaf-4174-b2c4-96da43fac076 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1540&$top=869&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1542&$top=867&$maxpagesize=2"}' + headers: + apim-request-id: + - c219cc80-f7ca-467e-8668-c7bc6463e960 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:46 GMT + etag: + - '"F9663F8292DB726B369FCF8883C8F1AF1F79A8134D5E0B9BA4F948BE0EE1F0C6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c219cc80-f7ca-467e-8668-c7bc6463e960 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1542&$top=867&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1544&$top=865&$maxpagesize=2"}' + headers: + apim-request-id: + - fe870b8e-fdb0-4ee3-9299-36e84ddcd6b2 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:46 GMT + etag: + - '"799D8E284515671D3166607AD38EB305A0527A9C4905892C4AF3EF3835117D81"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fe870b8e-fdb0-4ee3-9299-36e84ddcd6b2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1544&$top=865&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1546&$top=863&$maxpagesize=2"}' + headers: + apim-request-id: + - d65d7b33-0e3c-4ee9-98e8-579f9e008f43 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:46 GMT + etag: + - '"68EF8C1FBAAF212769E0602B133F4B7F5727F98E96E3E39186A397769A804ECB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d65d7b33-0e3c-4ee9-98e8-579f9e008f43 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1546&$top=863&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1548&$top=861&$maxpagesize=2"}' + headers: + apim-request-id: + - 1dd5ca3a-5b42-4e4f-93c4-7ed88a171885 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:46 GMT + etag: + - '"98B34432F37AC230D695DFE698F0B453BCC378FB0BDA1860B781798698BA9D89"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1dd5ca3a-5b42-4e4f-93c4-7ed88a171885 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1548&$top=861&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=859&$maxpagesize=2"}' + headers: + apim-request-id: + - ea008aae-340e-437a-b333-9862a6aa4e7e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:47 GMT + etag: + - '"820ABF95DB4E88F0F1EE16F45AC7941925F3C71E2573B13AF8581D2DC5EAA8D4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ea008aae-340e-437a-b333-9862a6aa4e7e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=859&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1552&$top=857&$maxpagesize=2"}' + headers: + apim-request-id: + - 8e1668da-ef28-4887-badc-f5b9f273a0f7 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:47 GMT + etag: + - '"FA31470681855DEB5C18FEDA4114775BF08F89AEBDDDF4A69E956ACCBC309DD6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8e1668da-ef28-4887-badc-f5b9f273a0f7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1552&$top=857&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1554&$top=855&$maxpagesize=2"}' + headers: + apim-request-id: + - a3b06be1-9a07-4c78-bfdd-3dd5b220c720 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:47 GMT + etag: + - '"BE73D12243C01AD9677201A4309DBA95E25AE3493A9196D3CF2C7B16889C1B2C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a3b06be1-9a07-4c78-bfdd-3dd5b220c720 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1554&$top=855&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1556&$top=853&$maxpagesize=2"}' + headers: + apim-request-id: + - 43d5d365-d7ff-4af5-ae9e-90e8d7e30e44 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:47 GMT + etag: + - '"5C92275175F0031D2FC0E803CB4A7E22E2D07C074DACDCE7F5CFC44D2BA6FE4C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 43d5d365-d7ff-4af5-ae9e-90e8d7e30e44 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1556&$top=853&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1558&$top=851&$maxpagesize=2"}' + headers: + apim-request-id: + - 2359f898-9007-4db1-978c-153c322951ea + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:47 GMT + etag: + - '"9299CE26AB668517CE0A7EBD6705261538EA20D45C831176B67F6D22A4A49D6D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2359f898-9007-4db1-978c-153c322951ea + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1558&$top=851&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1560&$top=849&$maxpagesize=2"}' + headers: + apim-request-id: + - b03887dc-6642-4202-b0ef-277010f4b556 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:48 GMT + etag: + - '"CB79A5EA56F05B6EDF3C8C56E39FE4EB074F33F2E0749D5023E8B65977BD22DD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b03887dc-6642-4202-b0ef-277010f4b556 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1560&$top=849&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1562&$top=847&$maxpagesize=2"}' + headers: + apim-request-id: + - 3d44f524-ca03-445a-8739-5a7bc75fbad8 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:48 GMT + etag: + - '"55EFBA6EEDE39B044F9E24CC69107F52B6E70DBACA65E45A2761A93793653D5E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3d44f524-ca03-445a-8739-5a7bc75fbad8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1562&$top=847&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1564&$top=845&$maxpagesize=2"}' + headers: + apim-request-id: + - abc7d0c8-78c2-4269-bcee-4c5e63083fca + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:48 GMT + etag: + - '"B8ABB2BD32DE631D23DF8EE3B46E3C61A87A0E2897AD7B9F919D2446A1731A5F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - abc7d0c8-78c2-4269-bcee-4c5e63083fca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1564&$top=845&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1566&$top=843&$maxpagesize=2"}' + headers: + apim-request-id: + - 1ecbd225-f775-4c86-95d3-0f94d9a4f42c + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:48 GMT + etag: + - '"4D3703EDDC614EEB12DB9015B57592568D18DC3A91810D3DA7B172E75459DC81"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1ecbd225-f775-4c86-95d3-0f94d9a4f42c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1566&$top=843&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1568&$top=841&$maxpagesize=2"}' + headers: + apim-request-id: + - 45badc59-ec9b-46b5-b088-570b56942850 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:48 GMT + etag: + - '"DCC0FC05D923FE91B8BF86D7E82B190034D611C41E9FF4D0E57BE8B2B9120899"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 45badc59-ec9b-46b5-b088-570b56942850 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1568&$top=841&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1570&$top=839&$maxpagesize=2"}' + headers: + apim-request-id: + - bb2f5efc-c54e-4573-813d-99ea42344d6c + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:48 GMT + etag: + - '"1066A7F26AD68466530B0D54BF69E1B13DB209DA764A5270182ED8FDD1FE2C9E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bb2f5efc-c54e-4573-813d-99ea42344d6c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1570&$top=839&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1572&$top=837&$maxpagesize=2"}' + headers: + apim-request-id: + - 9579312a-eb31-4a6c-88cd-74915366e165 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:49 GMT + etag: + - '"17642EEAEF3AD48D31193A6178A585D51BE93D8FA0F36B978B11978187420BF2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9579312a-eb31-4a6c-88cd-74915366e165 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1572&$top=837&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1574&$top=835&$maxpagesize=2"}' + headers: + apim-request-id: + - a613c268-6d34-4921-a72f-fab59e9fde00 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:49 GMT + etag: + - '"8E3AF3EA33B15D1D21245E420F5D42BA09EEF9F622D72DCC61AB158BE7C04615"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a613c268-6d34-4921-a72f-fab59e9fde00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1574&$top=835&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1576&$top=833&$maxpagesize=2"}' + headers: + apim-request-id: + - f494b299-60c4-4e61-a559-e2f69085c584 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:49 GMT + etag: + - '"510FE51CB68EC512826D8DC9652D0BB9DEA1EE7ED695F6E1F041430F2692E13A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f494b299-60c4-4e61-a559-e2f69085c584 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1576&$top=833&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1578&$top=831&$maxpagesize=2"}' + headers: + apim-request-id: + - e58f061f-0f66-4808-89fd-db76eae61c9b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:49 GMT + etag: + - '"19825D979B1EEF4C04DEE2298F43278B1BE3F463FAA5F58728FC93CBD73EFF4F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e58f061f-0f66-4808-89fd-db76eae61c9b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1578&$top=831&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1580&$top=829&$maxpagesize=2"}' + headers: + apim-request-id: + - 9b194534-7caf-4b17-8960-0d8e02dba9e0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:49 GMT + etag: + - '"3285F751F65A35AAA9197F0026DF542729DAD4F24F5C1017018C46BB76C50229"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9b194534-7caf-4b17-8960-0d8e02dba9e0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1580&$top=829&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1582&$top=827&$maxpagesize=2"}' + headers: + apim-request-id: + - 090406b6-f39c-457b-b5d0-d967333579fe + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:50 GMT + etag: + - '"9DBD42618AD77ED044EA1935B4F5F1D815990ACBA9B44D18149378C1AC6C19D0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 090406b6-f39c-457b-b5d0-d967333579fe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1582&$top=827&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1584&$top=825&$maxpagesize=2"}' + headers: + apim-request-id: + - 02537ed3-1927-48d9-b5e9-191211bf780f + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:50 GMT + etag: + - '"A233260EF4F9B36D766C0F86C766290CDD191E643152653279B0812C08E8E449"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 02537ed3-1927-48d9-b5e9-191211bf780f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1584&$top=825&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1586&$top=823&$maxpagesize=2"}' + headers: + apim-request-id: + - b56532e1-90ac-489d-bfcd-e89db7a6ffb6 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:50 GMT + etag: + - '"EACB94DE1CDD92B801A60E475119FFE41CF8D6273A34A8435CF54F452E338E89"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b56532e1-90ac-489d-bfcd-e89db7a6ffb6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1586&$top=823&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1588&$top=821&$maxpagesize=2"}' + headers: + apim-request-id: + - 34a0bf26-c115-4040-8e6f-4bdb87bdd5f1 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:50 GMT + etag: + - '"E8D803C8FC25EC58A5F1AAF4BB4233AB423C846F7294A5CA2C01C9D8731E4FB2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 34a0bf26-c115-4040-8e6f-4bdb87bdd5f1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1588&$top=821&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1590&$top=819&$maxpagesize=2"}' + headers: + apim-request-id: + - 96f32c2d-4dc1-4cc1-8f38-120ec909d681 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:50 GMT + etag: + - '"D52F3CA40CDDC12AE9E2758F4593995EB616756DB5ACAB17BA641598909B4314"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 96f32c2d-4dc1-4cc1-8f38-120ec909d681 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1590&$top=819&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1592&$top=817&$maxpagesize=2"}' + headers: + apim-request-id: + - 0f690929-be39-454a-a836-53f220dcf542 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:51 GMT + etag: + - '"61917A9C55AF807F0F779F7F348E976497F5B0A9AAFB3AB556DC66943C660194"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0f690929-be39-454a-a836-53f220dcf542 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1592&$top=817&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1594&$top=815&$maxpagesize=2"}' + headers: + apim-request-id: + - 0f46f48c-e472-4ba8-86d9-fa693d2cf010 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:51 GMT + etag: + - '"CE0985A4C8C5710115486AFA3DC233795C2976544E563395EBFC7C224C6AEB29"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0f46f48c-e472-4ba8-86d9-fa693d2cf010 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1594&$top=815&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1596&$top=813&$maxpagesize=2"}' + headers: + apim-request-id: + - ba04e870-00f8-4384-bf26-9a5533da0137 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:51 GMT + etag: + - '"B0771829177DB4A9A8E72EC5B51CDD708C7E542410BB8FFCF1EFD21B1C941FAF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ba04e870-00f8-4384-bf26-9a5533da0137 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1596&$top=813&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1598&$top=811&$maxpagesize=2"}' + headers: + apim-request-id: + - 54aee021-db01-4ae4-8f4f-0aa5400b07ee + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:51 GMT + etag: + - '"65FC2298ADF13F9164BDE1E7F1D18E90765BAABF4FBA09AE99D56A6C82B81807"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 54aee021-db01-4ae4-8f4f-0aa5400b07ee + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1598&$top=811&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=809&$maxpagesize=2"}' + headers: + apim-request-id: + - af14319d-5910-44b0-b030-0f22a86e1ac2 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:51 GMT + etag: + - '"B968BFCC267EE35B480D7FA85802F019B79D736AC3F7863DC516F00ADE920154"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - af14319d-5910-44b0-b030-0f22a86e1ac2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=809&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1602&$top=807&$maxpagesize=2"}' + headers: + apim-request-id: + - 0f466c77-8861-4cf6-a313-1240c7b7a3ca + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:51 GMT + etag: + - '"45736A3E156E563495BE3B4C8461EA9B5F18774CFB08555105A7755A14CC3F75"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0f466c77-8861-4cf6-a313-1240c7b7a3ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1602&$top=807&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1604&$top=805&$maxpagesize=2"}' + headers: + apim-request-id: + - 2207e9e2-1103-4cbe-96b5-0c73a272b079 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:52 GMT + etag: + - '"961831074EBF99DC7AFDA50631FA86ACD7BB04641A1FB1D22D3BF52A464AD811"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2207e9e2-1103-4cbe-96b5-0c73a272b079 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1604&$top=805&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1606&$top=803&$maxpagesize=2"}' + headers: + apim-request-id: + - 5befc05c-8fe5-41b2-ac2c-3dbfdaefb1e2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:52 GMT + etag: + - '"47D0BF3204A15806B7B67EFBA8267E4A2E9CBCAFDEC4AA5042ED11D74AD5745F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5befc05c-8fe5-41b2-ac2c-3dbfdaefb1e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1606&$top=803&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1608&$top=801&$maxpagesize=2"}' + headers: + apim-request-id: + - 4d9de493-b5db-49f1-84ff-f2bee95da706 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:52 GMT + etag: + - '"626797DB9B7DA7B23EC77848F7398C641EE5C87337E799ED666286854E28A57A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4d9de493-b5db-49f1-84ff-f2bee95da706 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1608&$top=801&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1610&$top=799&$maxpagesize=2"}' + headers: + apim-request-id: + - bd88d8ce-1d50-4613-93ab-f80f85d94d3e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:52 GMT + etag: + - '"90A80D96CECCB4E8AE1743C1773FC6C07F95BD26BC8E31A86E4B5040B6027FE9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bd88d8ce-1d50-4613-93ab-f80f85d94d3e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1610&$top=799&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1612&$top=797&$maxpagesize=2"}' + headers: + apim-request-id: + - 29fed8b7-e054-4fbc-b517-4f07685807dc + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:52 GMT + etag: + - '"793B9E70556279EBF9E3D24422F283C84788BA2675142913E02193D2606D873B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 29fed8b7-e054-4fbc-b517-4f07685807dc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1612&$top=797&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1614&$top=795&$maxpagesize=2"}' + headers: + apim-request-id: + - 0e358821-49fb-4c13-88a5-5bf3694d3732 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:53 GMT + etag: + - '"CBF4D273CCF3E0B0664DECCBE7CC11E958906341E7C70CEFFA0A306F8DB5998C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0e358821-49fb-4c13-88a5-5bf3694d3732 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1614&$top=795&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1616&$top=793&$maxpagesize=2"}' + headers: + apim-request-id: + - 15956cbd-86f2-44c5-9662-baf279b9be3b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:53 GMT + etag: + - '"653360AC14E4FA3C0D7CCEDFCB3C17D54A430710CB42E59AAC0714C83A17E859"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 15956cbd-86f2-44c5-9662-baf279b9be3b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1616&$top=793&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1618&$top=791&$maxpagesize=2"}' + headers: + apim-request-id: + - 74b662ca-5abe-42d8-b78e-793c2a51e44e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:53 GMT + etag: + - '"496FD10403B223B4DB2E9920C320156F235AC485023993D0E3DDAB5B7A51551F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 74b662ca-5abe-42d8-b78e-793c2a51e44e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1618&$top=791&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1620&$top=789&$maxpagesize=2"}' + headers: + apim-request-id: + - 2ec5a879-f12b-434a-bf81-a8cfc17782bf + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:53 GMT + etag: + - '"81BD71DD11E6A16F9B9C2B2EA162039148D23EC9C6020FBDB784A9BEFCB70895"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2ec5a879-f12b-434a-bf81-a8cfc17782bf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1620&$top=789&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1622&$top=787&$maxpagesize=2"}' + headers: + apim-request-id: + - 71ee2a6c-e814-43c2-b64e-8e44fb0801a4 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:53 GMT + etag: + - '"7D47EBB8580C44EB21F4DB9BE795F2819FF210F543A280EA2A95609CBFEB7DA2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 71ee2a6c-e814-43c2-b64e-8e44fb0801a4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1622&$top=787&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1624&$top=785&$maxpagesize=2"}' + headers: + apim-request-id: + - 381703d4-d9cb-4765-a8f1-19313e59689f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:54 GMT + etag: + - '"E0360894191CE86907F778D693275AA09CF7C9183C3BB53B844470D801E7AB98"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 381703d4-d9cb-4765-a8f1-19313e59689f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1624&$top=785&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1626&$top=783&$maxpagesize=2"}' + headers: + apim-request-id: + - bebac731-7004-473d-90a8-8cd4b81a77f1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:54 GMT + etag: + - '"ED680F60FDDF1B70F08B37CA35864C25A5DD7C2F561804D9CE1EDEC473E12F4B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bebac731-7004-473d-90a8-8cd4b81a77f1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1626&$top=783&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1628&$top=781&$maxpagesize=2"}' + headers: + apim-request-id: + - 69fcafff-12b1-46fb-9df9-a5a2de64f079 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:54 GMT + etag: + - '"BA9CF79517D425A822E89E8EA9D358F6B10724F4DB4B77D4A54F228FA6D679C5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 69fcafff-12b1-46fb-9df9-a5a2de64f079 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1628&$top=781&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1630&$top=779&$maxpagesize=2"}' + headers: + apim-request-id: + - 8dffed44-b1a3-47e0-a174-1e7053da7205 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:54 GMT + etag: + - '"6ED1AB0D384589D682F1F7645F5F76656271451C35A9F5782C7E1F4541B9861E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8dffed44-b1a3-47e0-a174-1e7053da7205 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1630&$top=779&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1632&$top=777&$maxpagesize=2"}' + headers: + apim-request-id: + - ce37bb3c-2367-44ee-9291-1dc091340aa1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:54 GMT + etag: + - '"9A5A4BADE21FC6EC28FA0938B5A98208292343BBD7BB72A365FE5A1D294C042F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ce37bb3c-2367-44ee-9291-1dc091340aa1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1632&$top=777&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1634&$top=775&$maxpagesize=2"}' + headers: + apim-request-id: + - 2c9b6598-0f7a-4852-b6b5-05ff058b8036 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:54 GMT + etag: + - '"FEF25D1F4831C4542BD72CF3A3A757579635ABE9F907AC8C3AA768396B8FC055"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2c9b6598-0f7a-4852-b6b5-05ff058b8036 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1634&$top=775&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1636&$top=773&$maxpagesize=2"}' + headers: + apim-request-id: + - 764e7f46-ddca-4059-8054-bfbdfd06a2e4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:55 GMT + etag: + - '"99AC119C52755F4DF9E8F405D697CA481AF58446BE84A41E9ECD3BA1CD1EF06C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 764e7f46-ddca-4059-8054-bfbdfd06a2e4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1636&$top=773&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1638&$top=771&$maxpagesize=2"}' + headers: + apim-request-id: + - fa7d3e4f-d8ea-43ff-b712-f6c4e5348725 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:55 GMT + etag: + - '"7D436C053B176980685593389B0C58529144D9F7636C9327DE2DC8E008595D26"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fa7d3e4f-d8ea-43ff-b712-f6c4e5348725 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1638&$top=771&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1640&$top=769&$maxpagesize=2"}' + headers: + apim-request-id: + - d77af267-ffaa-4cb3-93e5-a0b8548835fe + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:55 GMT + etag: + - '"8CE18CBD7503458929DACFFBDC7CC90B0F4E342D9F32D598D81D7F39EAE20949"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d77af267-ffaa-4cb3-93e5-a0b8548835fe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1640&$top=769&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1642&$top=767&$maxpagesize=2"}' + headers: + apim-request-id: + - 0f11d99f-c7fa-4517-950d-028628622f51 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:55 GMT + etag: + - '"2C23ADACD5367E4929211F1E5960100EF51A701E79DA6099C2E5BFD59652370E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0f11d99f-c7fa-4517-950d-028628622f51 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1642&$top=767&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1644&$top=765&$maxpagesize=2"}' + headers: + apim-request-id: + - 53fe845a-628a-4c00-b5c8-ae162fd6dab3 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:55 GMT + etag: + - '"8E464EDC25D462E096E464AAECC18BEAF0C612FE0D76FE96BE2446753D6EF3A1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 53fe845a-628a-4c00-b5c8-ae162fd6dab3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1644&$top=765&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1646&$top=763&$maxpagesize=2"}' + headers: + apim-request-id: + - e23b4394-dda4-4965-990b-2faff2f072df + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:56 GMT + etag: + - '"B00A1E1E4FF5474655E2526AB02A6D804BEE22AB4012447F21B6B7115A8D322F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e23b4394-dda4-4965-990b-2faff2f072df + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1646&$top=763&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1648&$top=761&$maxpagesize=2"}' + headers: + apim-request-id: + - 1dbf7ef1-54be-437e-a636-1f2a563426d3 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:56 GMT + etag: + - '"7DE07324C49469B87EA967D6EF6C1B1D6DF030911EBBFA69170A520CFB09C22C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1dbf7ef1-54be-437e-a636-1f2a563426d3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1648&$top=761&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=759&$maxpagesize=2"}' + headers: + apim-request-id: + - e70008cd-6525-45b9-a79c-f6074a8f9ce8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:56 GMT + etag: + - '"5BCEDBCDA8F28B64DB5740112FD0037DA98FAF807BC18CF6271846A1EBAA9555"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e70008cd-6525-45b9-a79c-f6074a8f9ce8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=759&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1652&$top=757&$maxpagesize=2"}' + headers: + apim-request-id: + - 90fc8fb9-b99c-4ae3-87e4-01e08e2c3103 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:56 GMT + etag: + - '"65E6683711B637175F6DBD7CD83F572C09703005F6FF296D80B064BDFBA50E53"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 90fc8fb9-b99c-4ae3-87e4-01e08e2c3103 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1652&$top=757&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1654&$top=755&$maxpagesize=2"}' + headers: + apim-request-id: + - 342b621c-162e-406b-9731-0b9317e1ab53 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:56 GMT + etag: + - '"0707B5317A1DA09A7BE2754DFFD13F9F35747C75A243773DA4AE294BF9386244"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 342b621c-162e-406b-9731-0b9317e1ab53 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1654&$top=755&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1656&$top=753&$maxpagesize=2"}' + headers: + apim-request-id: + - 626427a9-1c5a-4595-b9a4-854e8cb99653 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:57 GMT + etag: + - '"C8B5ED378F9062DF93B8FFDD2E754AFA07B3A5CE72A08413B62189E214411EE8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 626427a9-1c5a-4595-b9a4-854e8cb99653 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1656&$top=753&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1658&$top=751&$maxpagesize=2"}' + headers: + apim-request-id: + - df9afc1d-67b7-4cc6-860f-7e4bf07c87fa + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:57 GMT + etag: + - '"B26837FAE96613CF647A1DB4370A1A165035D891D71BB1FC38DA68E58E608EEE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - df9afc1d-67b7-4cc6-860f-7e4bf07c87fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1658&$top=751&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1660&$top=749&$maxpagesize=2"}' + headers: + apim-request-id: + - 382f113c-c494-48d7-a2d7-0b122ac8f277 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:57 GMT + etag: + - '"305A2D7372D950B194E0D95120943D9BA776C115E50BA2CE9BDEF3CA219399E9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 382f113c-c494-48d7-a2d7-0b122ac8f277 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1660&$top=749&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1662&$top=747&$maxpagesize=2"}' + headers: + apim-request-id: + - 0ff4f19e-ec24-4873-a743-faa56dbf84fe + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:57 GMT + etag: + - '"5A7D4E6679A6414E2FE0E2EF2E87C2661684F8E0C5C2AED1797CF8C65F091D86"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0ff4f19e-ec24-4873-a743-faa56dbf84fe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1662&$top=747&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1664&$top=745&$maxpagesize=2"}' + headers: + apim-request-id: + - e5bc3b6c-0630-46f2-85ea-be9ecdbdb571 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:57 GMT + etag: + - '"4EF0D60D1CE6C48C02CBF69677A82AE7975089EF9A98246BC79440955A0DF5EE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5bc3b6c-0630-46f2-85ea-be9ecdbdb571 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1664&$top=745&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1666&$top=743&$maxpagesize=2"}' + headers: + apim-request-id: + - c4a7cef1-0468-42d3-8fb9-90de61f99f73 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:57 GMT + etag: + - '"D60DADBFBBA93F1F4244A639355F36778466EC775C9DC2B11F2C9AB35D9C095D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c4a7cef1-0468-42d3-8fb9-90de61f99f73 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1666&$top=743&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1668&$top=741&$maxpagesize=2"}' + headers: + apim-request-id: + - c82e3b42-503c-4025-ad7e-768141521796 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:58 GMT + etag: + - '"FB42D554F20CF4D82E8464DD18200448E6382ACC72860E47789431289586A1A3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c82e3b42-503c-4025-ad7e-768141521796 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1668&$top=741&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1670&$top=739&$maxpagesize=2"}' + headers: + apim-request-id: + - be1ace0b-7912-4856-8481-aecbaf6a5ddc + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:58 GMT + etag: + - '"23A48A533571264C7063850821BB5CBBABC5F47F5D05D9C62200B5139E0699A2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - be1ace0b-7912-4856-8481-aecbaf6a5ddc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1670&$top=739&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1672&$top=737&$maxpagesize=2"}' + headers: + apim-request-id: + - 90a2c303-c8ff-4c43-9912-187eed39e20a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:58 GMT + etag: + - '"985CE183F5FA985BE8F7D721C26E22986B0280B6BFA5F9D73213B33DA19ECB56"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 90a2c303-c8ff-4c43-9912-187eed39e20a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1672&$top=737&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1674&$top=735&$maxpagesize=2"}' + headers: + apim-request-id: + - 71a9dc27-8de4-4df0-98bd-049f36287a15 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:58 GMT + etag: + - '"4B2B4B2F04B3BBCFEBB536F65BD3A389240E3B9E2586DCD53D4A1D5E68A06DB7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 71a9dc27-8de4-4df0-98bd-049f36287a15 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1674&$top=735&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1676&$top=733&$maxpagesize=2"}' + headers: + apim-request-id: + - 4df0ad84-3d99-4e08-8995-8d3b9a35e83c + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:58 GMT + etag: + - '"CDC056D2E42E62B26B116DB78DBA7A672D16ABE5C838F81D599D4184DD49673B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4df0ad84-3d99-4e08-8995-8d3b9a35e83c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1676&$top=733&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1678&$top=731&$maxpagesize=2"}' + headers: + apim-request-id: + - 53b364e4-c33b-475f-9e68-a1c18590e5f3 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:59 GMT + etag: + - '"018E02012900238C4B48A29FC51F38BE7AD25BB3C87956DEE7CBE5508E9768AD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 53b364e4-c33b-475f-9e68-a1c18590e5f3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1678&$top=731&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1680&$top=729&$maxpagesize=2"}' + headers: + apim-request-id: + - 914f381c-79d8-4616-8318-1cb1614c6e00 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:59 GMT + etag: + - '"8D9EE11A92B8EA4FAE2915C06C029F7C374F3872969B02DA894B57375113D40E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 914f381c-79d8-4616-8318-1cb1614c6e00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1680&$top=729&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1682&$top=727&$maxpagesize=2"}' + headers: + apim-request-id: + - 87ec4139-d940-4aeb-8ddc-9708782ea09f + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:59 GMT + etag: + - '"DAE7DCC6F867A301F7B557E9E7D0D0283DC979EB4C961B72FE42187E23CEEA23"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 87ec4139-d940-4aeb-8ddc-9708782ea09f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1682&$top=727&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1684&$top=725&$maxpagesize=2"}' + headers: + apim-request-id: + - f87cafba-1039-4ed0-98c4-73dabc6c8ace + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:59 GMT + etag: + - '"00704EE3CCBE2A69C74094B731C3D5290730F6D584FA2BFF84E8782B439AF508"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f87cafba-1039-4ed0-98c4-73dabc6c8ace + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1684&$top=725&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1686&$top=723&$maxpagesize=2"}' + headers: + apim-request-id: + - 205df93b-5944-4e4e-9451-bd2f217c5b36 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:52:59 GMT + etag: + - '"FBAA5756C11F53C56540EDCB4E85883C2E802817F6EB48D7E1306A51A29CF226"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 205df93b-5944-4e4e-9451-bd2f217c5b36 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1686&$top=723&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1688&$top=721&$maxpagesize=2"}' + headers: + apim-request-id: + - ed58d7ce-eb01-49eb-9005-5a330aa060a0 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:00 GMT + etag: + - '"2D38026156596D2F2B7A99BC645F8CE90A09B8D4356D70959D9ABD36A3AF0177"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ed58d7ce-eb01-49eb-9005-5a330aa060a0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1688&$top=721&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1690&$top=719&$maxpagesize=2"}' + headers: + apim-request-id: + - 7558b6da-9dbf-4acf-9e68-65452a435b0b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:00 GMT + etag: + - '"ABC291653C8A584FE00D9BF0A840B82BC6549F7191BE12DBCBA84034EA3E2503"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7558b6da-9dbf-4acf-9e68-65452a435b0b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1690&$top=719&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1692&$top=717&$maxpagesize=2"}' + headers: + apim-request-id: + - ef715445-917c-4749-9515-846ca837b52c + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:00 GMT + etag: + - '"7BF4EA9EE2D8FD229F975088BBC5BBF29E821CDD5D5407EC7880B3DFEA4CB282"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ef715445-917c-4749-9515-846ca837b52c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1692&$top=717&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1694&$top=715&$maxpagesize=2"}' + headers: + apim-request-id: + - 5b1d55d9-9ac1-4b03-9398-e25e0c74553f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:00 GMT + etag: + - '"510165BAC0D903D6D771EA5271D945E8C29A2CF87D022F6412EB17BEBA2F4367"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5b1d55d9-9ac1-4b03-9398-e25e0c74553f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1694&$top=715&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1696&$top=713&$maxpagesize=2"}' + headers: + apim-request-id: + - 1de1db37-2058-4c31-b771-f0292ca41c09 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:00 GMT + etag: + - '"8B8ACB1744D6CB34BB10D95ABB3C080DECBB3A6B4A21A8A20BAAC854DB2ED0B7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1de1db37-2058-4c31-b771-f0292ca41c09 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1696&$top=713&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1698&$top=711&$maxpagesize=2"}' + headers: + apim-request-id: + - 08b5aa99-ed04-4a97-b810-e058a390c99a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:01 GMT + etag: + - '"0CD57DE43A8AEAB5C8E558EB5498AD5CD108E497BC5AAAC159E9D839C47CAE4B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 08b5aa99-ed04-4a97-b810-e058a390c99a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1698&$top=711&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=709&$maxpagesize=2"}' + headers: + apim-request-id: + - c34ef5bb-34e6-480e-83b9-3f930e998773 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:01 GMT + etag: + - '"53E5FE39DBE8924158059C1857ED326087AE2FD3C373462FDD96779826140CFF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c34ef5bb-34e6-480e-83b9-3f930e998773 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=709&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1702&$top=707&$maxpagesize=2"}' + headers: + apim-request-id: + - 356e5de1-2905-4cec-8866-5b1dbee308d2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:01 GMT + etag: + - '"53ACAB9E5CAE31A8A45267F13384F0A7ACDB54648EA76D33E0CB54EC1D975523"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 356e5de1-2905-4cec-8866-5b1dbee308d2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1702&$top=707&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1704&$top=705&$maxpagesize=2"}' + headers: + apim-request-id: + - 922445cd-2f79-4bf2-8652-9e99418ae4ea + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:01 GMT + etag: + - '"A948B0C040945A3CFB840B81EFF6B14C9C0DEA733B91D3245A5C974F9ADC4D09"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 922445cd-2f79-4bf2-8652-9e99418ae4ea + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1704&$top=705&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1706&$top=703&$maxpagesize=2"}' + headers: + apim-request-id: + - 302f845f-641e-4eba-ac52-6b03691dcc15 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:01 GMT + etag: + - '"7AF07FF1CD8E5C00DA6E00C0419CA379D6EC7F2E98CA182F860E2E39606FAE5A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 302f845f-641e-4eba-ac52-6b03691dcc15 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1706&$top=703&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1708&$top=701&$maxpagesize=2"}' + headers: + apim-request-id: + - 48a2b92b-d378-4d17-94c8-e8f90e14b499 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:01 GMT + etag: + - '"D9B80D166D2484F5F2EB549F3A9AC95B6B0A759D1FA6D0779FD1CCD45ED9356D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 48a2b92b-d378-4d17-94c8-e8f90e14b499 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1708&$top=701&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1710&$top=699&$maxpagesize=2"}' + headers: + apim-request-id: + - 695b971c-6ae4-44bb-b807-777166cec035 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:02 GMT + etag: + - '"45600EE9B10A73A3C10A8A7CF9E6CD587417F56BBEB16B594B447F5FA92E5FAB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 695b971c-6ae4-44bb-b807-777166cec035 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1710&$top=699&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1712&$top=697&$maxpagesize=2"}' + headers: + apim-request-id: + - 8f972978-bb5e-4816-bcbe-18bfd69e8cb1 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:02 GMT + etag: + - '"6EED9C259EDB13256252499A53A67EBA3B3ECF96EBE69C43B1D47217AFE6CFA4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8f972978-bb5e-4816-bcbe-18bfd69e8cb1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1712&$top=697&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1714&$top=695&$maxpagesize=2"}' + headers: + apim-request-id: + - e03eb84d-9e4a-4888-ab27-971fdb3f5704 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:02 GMT + etag: + - '"F879A38F60DF0AF7B8E7DDBF2945AE0F776304E3323943F851AD1B6C988F5C7C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e03eb84d-9e4a-4888-ab27-971fdb3f5704 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1714&$top=695&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1716&$top=693&$maxpagesize=2"}' + headers: + apim-request-id: + - 2f1c8dce-05e6-4500-be21-9c27ce3617a2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:02 GMT + etag: + - '"2E68FF4460A00ABC5004B28946C97CEFC564050EC1032A06B95200D6BB6C00B7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2f1c8dce-05e6-4500-be21-9c27ce3617a2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1716&$top=693&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1718&$top=691&$maxpagesize=2"}' + headers: + apim-request-id: + - 02782016-2163-409a-8b91-a5dfd06e36b4 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:02 GMT + etag: + - '"FBF2DE5CABED947D25BC94DA0DB26474A63525D6455651F9F1D93AE41AD873FF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 02782016-2163-409a-8b91-a5dfd06e36b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1718&$top=691&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1720&$top=689&$maxpagesize=2"}' + headers: + apim-request-id: + - d3d3aac8-d3c2-4d23-9400-a34185f3183c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:03 GMT + etag: + - '"13C72CFC5C2DC0BEBCDB1A2B338BE1549BB6D6A22F5F3A175026F4699D19C3F8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d3d3aac8-d3c2-4d23-9400-a34185f3183c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1720&$top=689&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1722&$top=687&$maxpagesize=2"}' + headers: + apim-request-id: + - bdc24e46-9138-4e0c-95d4-d7c1bccd72ec + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:03 GMT + etag: + - '"08258E4A8BECFA0047740D11C97AE3A8785A42C7AD4C919E3943A1107FC71A9F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bdc24e46-9138-4e0c-95d4-d7c1bccd72ec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1722&$top=687&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1724&$top=685&$maxpagesize=2"}' + headers: + apim-request-id: + - 63855588-8531-4a8b-add1-286060f8e570 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:03 GMT + etag: + - '"DA8540BB55696ED90C36D93853B5213C06D34AE3C161B2E29A5D3AA49B613D9B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 63855588-8531-4a8b-add1-286060f8e570 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1724&$top=685&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1726&$top=683&$maxpagesize=2"}' + headers: + apim-request-id: + - debbb769-96f5-468c-8662-948d0cedce2d + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:03 GMT + etag: + - '"9C2845AB5FBE605C11FD013382A6BE8A20DA1AF275F87611D5E1A8F0E0B8C13F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - debbb769-96f5-468c-8662-948d0cedce2d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1726&$top=683&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1728&$top=681&$maxpagesize=2"}' + headers: + apim-request-id: + - ebe72342-0cc2-44e3-960c-652385fa7b56 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:03 GMT + etag: + - '"AEDB47441AA6DBF5277969432087B79EABA5EC80F8DE3E88901B34B1C07EF66C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ebe72342-0cc2-44e3-960c-652385fa7b56 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1728&$top=681&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1730&$top=679&$maxpagesize=2"}' + headers: + apim-request-id: + - dcf148ec-5a63-4903-9b46-d3cc0effcb22 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:04 GMT + etag: + - '"2FD28E576304FD06C7465FF868BE2C8B41A9D1EFE1FCC405310282F6735926C8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dcf148ec-5a63-4903-9b46-d3cc0effcb22 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1730&$top=679&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1732&$top=677&$maxpagesize=2"}' + headers: + apim-request-id: + - 812d8a74-c7fd-4d5a-aa9a-77a7825e68cc + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:04 GMT + etag: + - '"23E9DC69C040B1F8841A3FEC90CA09F34C7047FE1A5724D70E8A1F8A24E284C7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 812d8a74-c7fd-4d5a-aa9a-77a7825e68cc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1732&$top=677&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1734&$top=675&$maxpagesize=2"}' + headers: + apim-request-id: + - 583e12f1-3413-4fd2-8c84-778822d4f816 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:04 GMT + etag: + - '"C20D6802883F832150812447FD60220E4DFB6B10A27178A3DC8684A0D97FFD3C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 583e12f1-3413-4fd2-8c84-778822d4f816 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1734&$top=675&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1736&$top=673&$maxpagesize=2"}' + headers: + apim-request-id: + - 45c78d94-2ff7-4b9a-b794-b12b230dde58 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:04 GMT + etag: + - '"F41BDC3781C02E1BAD1BFAB223EA2E69BDC966D8B1D2282F4F76149FC932E8F3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 45c78d94-2ff7-4b9a-b794-b12b230dde58 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1736&$top=673&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1738&$top=671&$maxpagesize=2"}' + headers: + apim-request-id: + - f25c471c-e17b-46b3-bf94-643162478651 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:04 GMT + etag: + - '"ED1B4EB1B5E6DC2940F458CD2C0EE400FA76742EFBF78316F5D23A06C57557EF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f25c471c-e17b-46b3-bf94-643162478651 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1738&$top=671&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1740&$top=669&$maxpagesize=2"}' + headers: + apim-request-id: + - 02e76cab-f9ed-480a-8a23-c4182de1321a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:05 GMT + etag: + - '"6460D61B0AA18DFA2742D7B05E82559936D9DBC9CF787CED1FC2BCD87ACE9665"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 02e76cab-f9ed-480a-8a23-c4182de1321a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1740&$top=669&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1742&$top=667&$maxpagesize=2"}' + headers: + apim-request-id: + - eb147314-c783-4a3d-8130-f860e092a3f4 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:05 GMT + etag: + - '"B1753AA73A1F83E3BB9AFB75D533834A9B628C5245B4EF21A1F4C2793F4D7A56"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eb147314-c783-4a3d-8130-f860e092a3f4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1742&$top=667&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1744&$top=665&$maxpagesize=2"}' + headers: + apim-request-id: + - 9118d33d-218d-4415-9eb2-3f09db0d2954 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:05 GMT + etag: + - '"11311AA13E751CFE29B6D38A067BDB6E8128FC644A2536AC9C9996111275913F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9118d33d-218d-4415-9eb2-3f09db0d2954 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1744&$top=665&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1746&$top=663&$maxpagesize=2"}' + headers: + apim-request-id: + - 188ff57b-7a95-45eb-a9b8-18c57f9a8d7a + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:05 GMT + etag: + - '"F51D8A5B5F66A12D7AD3ECEBF952B25C606FB575E37DD5CC9B4A32926AE42D66"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 188ff57b-7a95-45eb-a9b8-18c57f9a8d7a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1746&$top=663&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1748&$top=661&$maxpagesize=2"}' + headers: + apim-request-id: + - 10fce40f-107e-4067-85d0-37dc734c55fa + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:05 GMT + etag: + - '"CEAE6228DEDB622017AAB590367AFE3A7F9D35CF5D2C0210213A03A382A30492"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 10fce40f-107e-4067-85d0-37dc734c55fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1748&$top=661&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=659&$maxpagesize=2"}' + headers: + apim-request-id: + - adacb4a8-a90f-4341-95e0-422b1ffd1429 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:06 GMT + etag: + - '"6D3CE4466CA181E1FB79E8BCD1F11C9B861625D54E8878D98B365F955F89B1F2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - adacb4a8-a90f-4341-95e0-422b1ffd1429 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=659&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1752&$top=657&$maxpagesize=2"}' + headers: + apim-request-id: + - f1083fdf-e86a-4415-a48a-435d5cf7d160 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:06 GMT + etag: + - '"F37D0C8D506930909337AB83A36A0789C64903384FE6004C164080E35B1E7A02"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f1083fdf-e86a-4415-a48a-435d5cf7d160 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1752&$top=657&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1754&$top=655&$maxpagesize=2"}' + headers: + apim-request-id: + - 97ca4d55-0886-47c2-b19c-2bbf6a8a10d1 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:06 GMT + etag: + - '"1A1DA056100032D680C42AC6A15B2C352DE9B7642EFD60D7E818CE2176FE323C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 97ca4d55-0886-47c2-b19c-2bbf6a8a10d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1754&$top=655&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1756&$top=653&$maxpagesize=2"}' + headers: + apim-request-id: + - 4ce709f1-fa2b-4ac0-9a67-3e9a6b6dbcc3 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:06 GMT + etag: + - '"6AA3BDA0AA7D4B1C3F8496B08393D2D1F0A13605055131DC15DC4B3B8353EABC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4ce709f1-fa2b-4ac0-9a67-3e9a6b6dbcc3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1756&$top=653&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1758&$top=651&$maxpagesize=2"}' + headers: + apim-request-id: + - 1c282ba2-2a8c-4ae0-9a98-34bb55b8055a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:06 GMT + etag: + - '"12B52C50F6DC5B334813EE822AADD404BDC430F4A7B9F10DA32910CC9C263986"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1c282ba2-2a8c-4ae0-9a98-34bb55b8055a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1758&$top=651&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1760&$top=649&$maxpagesize=2"}' + headers: + apim-request-id: + - 228e2486-15f9-46a7-b90f-2adad72f75ea + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:06 GMT + etag: + - '"4E21AF7B248A98EC6239B88FBD41F25DC6EDD8C506D331136B14BEA10A863B4B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 228e2486-15f9-46a7-b90f-2adad72f75ea + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1760&$top=649&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1762&$top=647&$maxpagesize=2"}' + headers: + apim-request-id: + - 1a7461aa-92b7-4c20-b221-6cf3dbf68a2c + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:07 GMT + etag: + - '"D209623C5E069EE7BC5AA22A672B3CB27C5D6D3957FFDDDD1834ACA4F51376EE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1a7461aa-92b7-4c20-b221-6cf3dbf68a2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1762&$top=647&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1764&$top=645&$maxpagesize=2"}' + headers: + apim-request-id: + - 2b987018-3297-4173-9f5f-15dc89fa1979 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:07 GMT + etag: + - '"1B18F20AB7F5B85FACBCB0B4A80BDA71C14344E07287316B293ECA8D77284400"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2b987018-3297-4173-9f5f-15dc89fa1979 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1764&$top=645&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1766&$top=643&$maxpagesize=2"}' + headers: + apim-request-id: + - f07f6faf-c1af-4a80-a267-5aac9e0af91a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:07 GMT + etag: + - '"EF1EA150153C80A51EA6EAD1399F7E3AED2EBE3C6C25A2F02EDDDD5A6697C0FC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f07f6faf-c1af-4a80-a267-5aac9e0af91a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1766&$top=643&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1768&$top=641&$maxpagesize=2"}' + headers: + apim-request-id: + - 3f72be75-4719-4fbb-814a-157159ca2df5 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:07 GMT + etag: + - '"966CDBD99C958D77D23F6989D3DE8AE47629041C2F29B53C80C88BD74688611F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3f72be75-4719-4fbb-814a-157159ca2df5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1768&$top=641&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1770&$top=639&$maxpagesize=2"}' + headers: + apim-request-id: + - 679b0f83-2139-4e6f-87ea-b81d0aaad8b4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:07 GMT + etag: + - '"32E321A6AEB3027EF5FDBC2C475998E731672E8A593032A1F0EAEBE3533130CF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 679b0f83-2139-4e6f-87ea-b81d0aaad8b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1770&$top=639&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1772&$top=637&$maxpagesize=2"}' + headers: + apim-request-id: + - e5c13189-118d-43cb-9685-d068f8594481 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:08 GMT + etag: + - '"F34F6FE261C45563BF41C8279ADC4E24592B0EEAFF6E3C0B0F571DF56B59353C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5c13189-118d-43cb-9685-d068f8594481 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1772&$top=637&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1774&$top=635&$maxpagesize=2"}' + headers: + apim-request-id: + - 6e59d7f1-c120-4687-9f08-f3202bf8db95 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:08 GMT + etag: + - '"04E033929676BD21FFE8672DC89B0036E34A1060029C86DB994C0415EC71C408"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6e59d7f1-c120-4687-9f08-f3202bf8db95 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1774&$top=635&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1776&$top=633&$maxpagesize=2"}' + headers: + apim-request-id: + - 8507d73c-dc38-45d5-9499-433f6d72d489 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:08 GMT + etag: + - '"ACFF6B8F4B5FEBED1B22683192763B85DFB64E9057FD958F005B5C040201E1C5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8507d73c-dc38-45d5-9499-433f6d72d489 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1776&$top=633&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1778&$top=631&$maxpagesize=2"}' + headers: + apim-request-id: + - cb4b8c30-186f-4b15-9d8b-4f514788380c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:08 GMT + etag: + - '"995D5E462DE5A77CB28E35F94DB60025212B13521C47053CFAA25ECF8BFC1192"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cb4b8c30-186f-4b15-9d8b-4f514788380c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1778&$top=631&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1780&$top=629&$maxpagesize=2"}' + headers: + apim-request-id: + - 7c44765d-42d8-4023-8b1d-29497e148eab + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:08 GMT + etag: + - '"1470154C26C17534E3F3A7A2E7DBCF7D2D414604146F056377928C85EC03DC7B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7c44765d-42d8-4023-8b1d-29497e148eab + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1780&$top=629&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1782&$top=627&$maxpagesize=2"}' + headers: + apim-request-id: + - 09f2a915-1dbc-4d06-bf69-385a38445e07 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:09 GMT + etag: + - '"686D7804B81ED030CA5A6C341BECEB3ADD4224B00D781B293B5A98CB554CC7DE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 09f2a915-1dbc-4d06-bf69-385a38445e07 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1782&$top=627&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1784&$top=625&$maxpagesize=2"}' + headers: + apim-request-id: + - cf6ca9b5-9778-4432-a0c5-62ca9a25d8de + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:09 GMT + etag: + - '"39AB9408E21890BDA221AA3924874AFB742FFC4AD378E6D02B11A3672E2B689F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cf6ca9b5-9778-4432-a0c5-62ca9a25d8de + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1784&$top=625&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1786&$top=623&$maxpagesize=2"}' + headers: + apim-request-id: + - 153716ff-2a0d-4973-8587-13b0af98979d + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:09 GMT + etag: + - '"F9EBAA1EEFED863F19C9C2106C3464F14855C13C2CF7EBCB75F09347E734518C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 153716ff-2a0d-4973-8587-13b0af98979d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1786&$top=623&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1788&$top=621&$maxpagesize=2"}' + headers: + apim-request-id: + - 37450c68-6239-4e6d-aa2e-3acaf3265d71 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:09 GMT + etag: + - '"EC547E8B6682AC0D2B6A8D0ACC8353C89E06D7FB3A542415E33769D7066E92FD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 37450c68-6239-4e6d-aa2e-3acaf3265d71 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1788&$top=621&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1790&$top=619&$maxpagesize=2"}' + headers: + apim-request-id: + - e72587d7-711e-46e1-ab2e-47e966bd4293 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:09 GMT + etag: + - '"66AF4F0DEE6DC10FF9EF099A2A127CF99D45719B9C674B13B8591EAEE7EB0DAA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e72587d7-711e-46e1-ab2e-47e966bd4293 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1790&$top=619&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1792&$top=617&$maxpagesize=2"}' + headers: + apim-request-id: + - d0a8b806-9361-4628-a82a-385038fb14d3 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:10 GMT + etag: + - '"441E65DCF15C0651888961C1890062FCCA2E554FB7A68007E742D94B5CE3C76C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d0a8b806-9361-4628-a82a-385038fb14d3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1792&$top=617&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1794&$top=615&$maxpagesize=2"}' + headers: + apim-request-id: + - fe899061-c3e8-4644-ab32-a71c44589419 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:10 GMT + etag: + - '"D04F5FCE4080872D85C4CDB5BAF387EDB7CF6EBA348223E86A704309BDA95835"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fe899061-c3e8-4644-ab32-a71c44589419 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1794&$top=615&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1796&$top=613&$maxpagesize=2"}' + headers: + apim-request-id: + - 823d40a7-1ec0-4c72-92ed-643e21d1c371 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:10 GMT + etag: + - '"29D29D24294E30F4D00ED10A1329ECADC3D20598CFAC7ADBE3E2A33B86F0BFD7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 823d40a7-1ec0-4c72-92ed-643e21d1c371 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1796&$top=613&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1798&$top=611&$maxpagesize=2"}' + headers: + apim-request-id: + - 79bfd527-eec8-41dc-90bb-788411f46f77 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:10 GMT + etag: + - '"B40758B131564E78029D845EE367F654F17DC7001D815FE59BA18EEC9B2A4ED1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 79bfd527-eec8-41dc-90bb-788411f46f77 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1798&$top=611&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=609&$maxpagesize=2"}' + headers: + apim-request-id: + - 56e7e01a-c2fa-4d2a-946a-8ec76a8ec96f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:10 GMT + etag: + - '"0E9477A9F2F80F7F9D0998EE3DAF67CCA507610E189C3E1338986D571DF5616F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 56e7e01a-c2fa-4d2a-946a-8ec76a8ec96f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=609&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1802&$top=607&$maxpagesize=2"}' + headers: + apim-request-id: + - 45205dcb-ecd5-42ce-a868-cd5682d3e87e + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:11 GMT + etag: + - '"25B1947FCA1E437F6F3E8BE20646BCB65CE369FB6D275FD98A4772F612A7B562"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 45205dcb-ecd5-42ce-a868-cd5682d3e87e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1802&$top=607&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1804&$top=605&$maxpagesize=2"}' + headers: + apim-request-id: + - 21ecf147-eb44-46ed-bc77-5d18a37f8a51 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:11 GMT + etag: + - '"2DFA56C3DF8C12E372CFCBF007F30B7B217BBA00EE49AB17BED38451C3AC559D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 21ecf147-eb44-46ed-bc77-5d18a37f8a51 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1804&$top=605&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1806&$top=603&$maxpagesize=2"}' + headers: + apim-request-id: + - bb559925-3524-4a19-a3c8-a6ceb83b5801 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:11 GMT + etag: + - '"6805805126B999FA8D61D323BA413310ED644B29FE06CEBFFC99C1272B32C7BC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bb559925-3524-4a19-a3c8-a6ceb83b5801 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1806&$top=603&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1808&$top=601&$maxpagesize=2"}' + headers: + apim-request-id: + - 293bd2b8-fac6-44d7-a269-f52e7b727e0a + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:11 GMT + etag: + - '"F9C83CFDCB6866887F22AE8AF5E9CA6FF89B89D617BFF17CC431C1E6C326CDA0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 293bd2b8-fac6-44d7-a269-f52e7b727e0a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1808&$top=601&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1810&$top=599&$maxpagesize=2"}' + headers: + apim-request-id: + - d9cc3734-09c4-4c5e-bc33-7b60e9790589 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:11 GMT + etag: + - '"B5005E97E3161F110136B965DFD81A3D8B220B4719165596399826CE978194B1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d9cc3734-09c4-4c5e-bc33-7b60e9790589 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1810&$top=599&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1812&$top=597&$maxpagesize=2"}' + headers: + apim-request-id: + - 00de2e27-e973-4260-be16-e766374217af + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:11 GMT + etag: + - '"90A856CC9DECF3228F34EBB1963959AB69A02D44B82E65D704BF512780679B7C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 00de2e27-e973-4260-be16-e766374217af + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1812&$top=597&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1814&$top=595&$maxpagesize=2"}' + headers: + apim-request-id: + - fd01b98a-ff7d-49fd-9f35-28c6b1d9653a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:12 GMT + etag: + - '"8E8006C7D47AE8D9F094645E90AF73DAC63B292B4DC427D46B8AE66C0396AC29"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fd01b98a-ff7d-49fd-9f35-28c6b1d9653a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1814&$top=595&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1816&$top=593&$maxpagesize=2"}' + headers: + apim-request-id: + - a50902e7-8066-4750-96ed-d6d2798e6d6b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:12 GMT + etag: + - '"780EBD974262C56959F7DF4100B485108C5AD4534CC30C8D76454C5BFEB61B5E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a50902e7-8066-4750-96ed-d6d2798e6d6b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1816&$top=593&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1818&$top=591&$maxpagesize=2"}' + headers: + apim-request-id: + - b7749bcb-cb00-4381-9b15-0deb306ef1b0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:12 GMT + etag: + - '"7E12EC2F9209EDFB101FCD4FBCCFC48FCA0B58C9BF9B2D2DC718B93BC38C9786"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b7749bcb-cb00-4381-9b15-0deb306ef1b0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1818&$top=591&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1820&$top=589&$maxpagesize=2"}' + headers: + apim-request-id: + - bfadae45-da80-4235-80ac-3fd5122c74f2 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:12 GMT + etag: + - '"B7F26CFB3EF91098DBC21483C88BD55DE0D8F0F7E980E598007C68196BD9C71A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bfadae45-da80-4235-80ac-3fd5122c74f2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1820&$top=589&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1822&$top=587&$maxpagesize=2"}' + headers: + apim-request-id: + - 68972345-a912-4991-8a17-7c76ad4b006b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:12 GMT + etag: + - '"75F2274ED616BBBA1F71C17AC43DFB9FA80F1A3B55296A25DF0457708EFD7D27"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 68972345-a912-4991-8a17-7c76ad4b006b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1822&$top=587&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1824&$top=585&$maxpagesize=2"}' + headers: + apim-request-id: + - bac261b3-4b29-43aa-83a3-10e2116f7e04 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:13 GMT + etag: + - '"C5644C1201CEF49F5AE00F7931952EB84C5F0603402793F3CD83EEE5E5137F37"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bac261b3-4b29-43aa-83a3-10e2116f7e04 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1824&$top=585&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1826&$top=583&$maxpagesize=2"}' + headers: + apim-request-id: + - 12fa7d13-fbbd-4a0b-9953-3ee0da2d49a6 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:13 GMT + etag: + - '"E8E315DA601785D2883F1A9BA155E7BF0C0722C7927757EAF00B04EFF2B2B201"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 12fa7d13-fbbd-4a0b-9953-3ee0da2d49a6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1826&$top=583&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1828&$top=581&$maxpagesize=2"}' + headers: + apim-request-id: + - 04d68d27-617f-484d-a8b6-4063da2b2486 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:13 GMT + etag: + - '"F73B27C8A70FA3F0751323D42BD557A98937504134195738483F50894FBFEC80"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 04d68d27-617f-484d-a8b6-4063da2b2486 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1828&$top=581&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1830&$top=579&$maxpagesize=2"}' + headers: + apim-request-id: + - ea4c0489-8ad1-4c91-8071-361a9186c822 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:13 GMT + etag: + - '"64C52373F4FD62F9FE222E5E018A7FAE554716E262DB9FED6227CB85B3CA9C32"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ea4c0489-8ad1-4c91-8071-361a9186c822 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1830&$top=579&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1832&$top=577&$maxpagesize=2"}' + headers: + apim-request-id: + - e3fac824-7207-4662-8697-4043f1c95655 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:13 GMT + etag: + - '"71EA638A205A6BE5E1E4D6FAC22F16D8032F4B4570710EF7CB5812AB4C10ACB6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e3fac824-7207-4662-8697-4043f1c95655 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1832&$top=577&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1834&$top=575&$maxpagesize=2"}' + headers: + apim-request-id: + - e31e74d9-87e1-4983-a13b-b85ec447b204 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:14 GMT + etag: + - '"EFA4AFC87331FE86DCF39A0883F02439205E0DCEDC372964E84AAF442CC5887F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e31e74d9-87e1-4983-a13b-b85ec447b204 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1834&$top=575&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1836&$top=573&$maxpagesize=2"}' + headers: + apim-request-id: + - e75a8640-77c9-4f1c-8653-f9e845a3fd0a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:14 GMT + etag: + - '"D26B39DCDCC38A1FAFF4F22A137971F9AA3E5296F0019D107209FEEE5A9951E1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e75a8640-77c9-4f1c-8653-f9e845a3fd0a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1836&$top=573&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1838&$top=571&$maxpagesize=2"}' + headers: + apim-request-id: + - 26bbe69a-7a05-45ed-ab7d-40a21a056cca + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:14 GMT + etag: + - '"0AA0F752B6E875810312B4237690C22E1ACA7BDE2B21D1F6A1C6B7E843F40768"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 26bbe69a-7a05-45ed-ab7d-40a21a056cca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1838&$top=571&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1840&$top=569&$maxpagesize=2"}' + headers: + apim-request-id: + - 0ec04f0d-4699-4071-90cf-ddb4aaf60b42 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:14 GMT + etag: + - '"B7EA0C1FDA47FE18AF4FCF6416D73E49C8B2AEB5CCF9595AA14261B386F2F10D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0ec04f0d-4699-4071-90cf-ddb4aaf60b42 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1840&$top=569&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1842&$top=567&$maxpagesize=2"}' + headers: + apim-request-id: + - 325768e7-0f7f-40b1-b4b4-33930116e656 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:14 GMT + etag: + - '"D45AD4ABECCFCDB06D3E2901AB5ED8C59AEB8009AD02532FEDCD6AC1D50692A1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 325768e7-0f7f-40b1-b4b4-33930116e656 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1842&$top=567&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1844&$top=565&$maxpagesize=2"}' + headers: + apim-request-id: + - a001f949-1260-4c72-81c4-94bfd0d7a9f5 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:14 GMT + etag: + - '"A2A473CA9B2BCE420FE9012618308834AE2F33399FE7D2E37FBA71F7E8A0FC40"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a001f949-1260-4c72-81c4-94bfd0d7a9f5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1844&$top=565&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1846&$top=563&$maxpagesize=2"}' + headers: + apim-request-id: + - 0179747c-e9b1-4354-af74-cd5c1116880b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:15 GMT + etag: + - '"55E80408696DA1721A1EE277E10717E3580A59176513B6C060262F059E60250F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0179747c-e9b1-4354-af74-cd5c1116880b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1846&$top=563&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1848&$top=561&$maxpagesize=2"}' + headers: + apim-request-id: + - ab27bcbf-367b-44ec-8505-460ddb42ec2e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:15 GMT + etag: + - '"204040BA559ABCE5DC087DBBA0A5093C002E42E4CF2B07B3C77B7E477306F32E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ab27bcbf-367b-44ec-8505-460ddb42ec2e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1848&$top=561&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=559&$maxpagesize=2"}' + headers: + apim-request-id: + - 2b7a7808-eabe-4ad0-9d27-b2ebe315f1d1 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:15 GMT + etag: + - '"B3E6D3693ED55104B73FA0D24239CA161A1A97025B361224E9960C979A10FFFC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2b7a7808-eabe-4ad0-9d27-b2ebe315f1d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=559&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1852&$top=557&$maxpagesize=2"}' + headers: + apim-request-id: + - a7b5cb4e-a5c6-45b0-8d7e-3f2fd22bead0 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:15 GMT + etag: + - '"05D443519E8A4AFE907A999DF4221A2F3DDDF46E6D79A023A05BA39B2C5BA17F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a7b5cb4e-a5c6-45b0-8d7e-3f2fd22bead0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1852&$top=557&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1854&$top=555&$maxpagesize=2"}' + headers: + apim-request-id: + - 9ff4915a-690a-4e2c-af7a-efe567dc009f + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:15 GMT + etag: + - '"55DA8BC4ACB7D9A4169171FC73366FDC2C12A5FFDC8C8AF09827154DB3825EFD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9ff4915a-690a-4e2c-af7a-efe567dc009f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1854&$top=555&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1856&$top=553&$maxpagesize=2"}' + headers: + apim-request-id: + - a4a31196-91a4-46dd-b0cd-6f41ef51b72c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:16 GMT + etag: + - '"E14925B7F4AFBE4D09C8383EE59CDBCEAE62392B07F2966607D4895B891B07DD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a4a31196-91a4-46dd-b0cd-6f41ef51b72c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1856&$top=553&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1858&$top=551&$maxpagesize=2"}' + headers: + apim-request-id: + - 53e41133-0005-4250-9c17-d4680f2b3819 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:16 GMT + etag: + - '"0AE27DED12FE22688F432EB3C93BC45597AA8C8F5129B9D7C957BD439833D608"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 53e41133-0005-4250-9c17-d4680f2b3819 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1858&$top=551&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1860&$top=549&$maxpagesize=2"}' + headers: + apim-request-id: + - c45f6940-d4e6-4298-88bf-1f8fe2a81c2d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:16 GMT + etag: + - '"2EB389BBA2E821D76F7F9CECAA3E74DCA24553537185AFCE3E78CFF02ACF7E3A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c45f6940-d4e6-4298-88bf-1f8fe2a81c2d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1860&$top=549&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1862&$top=547&$maxpagesize=2"}' + headers: + apim-request-id: + - f12df659-a701-43ab-ac66-71d796aa0aad + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:16 GMT + etag: + - '"1DF15E945A89048E301E294613CFCAE997F2EF39453FC8C82808C9C39C370714"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f12df659-a701-43ab-ac66-71d796aa0aad + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1862&$top=547&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1864&$top=545&$maxpagesize=2"}' + headers: + apim-request-id: + - 69c2a65e-5a6b-41ec-823a-66e3606636a8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:16 GMT + etag: + - '"86D8A28B04FACBA2A84851A2EA3D4A34D920431F02D88E435AFC4C55CC38BD5F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 69c2a65e-5a6b-41ec-823a-66e3606636a8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1864&$top=545&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1866&$top=543&$maxpagesize=2"}' + headers: + apim-request-id: + - 09b89b92-605a-4f08-8547-e994c72847d4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:17 GMT + etag: + - '"0168B650CD9C80EB0AB306F9970D85ADE23B2B3836A9B895F2C0820BBE58A8C7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 09b89b92-605a-4f08-8547-e994c72847d4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1866&$top=543&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1868&$top=541&$maxpagesize=2"}' + headers: + apim-request-id: + - d6e07653-5ec3-4ad5-8bba-47ef75055d28 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:17 GMT + etag: + - '"31EBE5B1580CE39460359D0689694B99B36A1EF46EDE9CEB4FEA1760BF7E3D6F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d6e07653-5ec3-4ad5-8bba-47ef75055d28 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1868&$top=541&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1870&$top=539&$maxpagesize=2"}' + headers: + apim-request-id: + - 717ed6b9-a66d-43f4-b509-b561c03dfe4a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:17 GMT + etag: + - '"BF006C77F3991FB013AD0A803A93E940BCBEB89177A2F21DE7AC360AE4AD8788"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 717ed6b9-a66d-43f4-b509-b561c03dfe4a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1870&$top=539&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1872&$top=537&$maxpagesize=2"}' + headers: + apim-request-id: + - a1c80c96-4223-45b5-8094-063070e7eacf + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:17 GMT + etag: + - '"D288C09F0E44DCFED464B05EA0551A3BBD84A4E5FE17A79B456659B38DB70A75"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a1c80c96-4223-45b5-8094-063070e7eacf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1872&$top=537&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1874&$top=535&$maxpagesize=2"}' + headers: + apim-request-id: + - b3a59ee2-9a09-46e3-9576-55fef8d2321a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:17 GMT + etag: + - '"7F724B33F6D20CA63A4448FB00DEE6F65E36D5FD1F4BDB7FA1FBF422D31B207A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b3a59ee2-9a09-46e3-9576-55fef8d2321a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1874&$top=535&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1876&$top=533&$maxpagesize=2"}' + headers: + apim-request-id: + - 84307e37-7dd2-48aa-98ff-0e5ea42b431e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:18 GMT + etag: + - '"62E87BB75833211F2F6ED7085BC3B8FCBEA4AAF89B824C2B9DFC79611593F346"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 84307e37-7dd2-48aa-98ff-0e5ea42b431e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1876&$top=533&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1878&$top=531&$maxpagesize=2"}' + headers: + apim-request-id: + - b708a51f-83af-4dd9-9a29-99fd242ef5de + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:18 GMT + etag: + - '"7D4221D68F6E82D45E3B777106478DE460FC4F185094B98241B1BE0C2DF56C4E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b708a51f-83af-4dd9-9a29-99fd242ef5de + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1878&$top=531&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1880&$top=529&$maxpagesize=2"}' + headers: + apim-request-id: + - 42af8d4d-eb4c-4509-856e-55873ce6f69b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:18 GMT + etag: + - '"3B2D14E6DC7CD8266865D8601F134B7D2D7DF168FBD151F309BB0DE46070DCA5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 42af8d4d-eb4c-4509-856e-55873ce6f69b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1880&$top=529&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1882&$top=527&$maxpagesize=2"}' + headers: + apim-request-id: + - 938a8e90-7a65-4c8f-8905-c02887f96d4c + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:18 GMT + etag: + - '"F96D68D399671C892D3D29367919F76D7108DE96ED57C7A37056EDE02C290E56"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 938a8e90-7a65-4c8f-8905-c02887f96d4c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1882&$top=527&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1884&$top=525&$maxpagesize=2"}' + headers: + apim-request-id: + - 8e43d3b2-7de9-4cce-9cae-e71ce39957f5 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:18 GMT + etag: + - '"5CA351E89806848E0FD6D76CE390A939D4DFF52A6CBFDEB5ACA8F498CA3FDD2F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8e43d3b2-7de9-4cce-9cae-e71ce39957f5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1884&$top=525&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1886&$top=523&$maxpagesize=2"}' + headers: + apim-request-id: + - d05563d8-eb97-4921-ba53-b1fda9a45596 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:18 GMT + etag: + - '"923043C9D87A6C3E09B6E4BE2D29206CA20750F6F0DEAB3A0D17344DE9E71109"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d05563d8-eb97-4921-ba53-b1fda9a45596 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1886&$top=523&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1888&$top=521&$maxpagesize=2"}' + headers: + apim-request-id: + - 1a5a3cbc-167b-46f5-ace3-994a0ee0c6d4 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:19 GMT + etag: + - '"D1D145CC5DAD3DD22F4DD3177509D0DBA08B2EB1F0F525986381F9E8A47CE51B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1a5a3cbc-167b-46f5-ace3-994a0ee0c6d4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1888&$top=521&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1890&$top=519&$maxpagesize=2"}' + headers: + apim-request-id: + - 8e8c347e-5d42-4c3f-a775-6182bab51a20 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:19 GMT + etag: + - '"BE5A0C9748D241EA1F2F148902BE127247DC1A30272CCC0AA32D1D86D4B6DBB4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8e8c347e-5d42-4c3f-a775-6182bab51a20 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1890&$top=519&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1892&$top=517&$maxpagesize=2"}' + headers: + apim-request-id: + - b7d3d404-1f27-4dfc-b71f-7a20c9d62ba9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:19 GMT + etag: + - '"25B20B54BFE850B0AC12149A9D311FB6984E8E68BD51751A7F2B7B073E3F1C8B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b7d3d404-1f27-4dfc-b71f-7a20c9d62ba9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1892&$top=517&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1894&$top=515&$maxpagesize=2"}' + headers: + apim-request-id: + - eb50e51a-29df-4c9b-b772-7232e5cf23a4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:19 GMT + etag: + - '"9BC6B3A01F718913F7648154E97ED70E07250A4963CAF941BA7AF446D7AF1C87"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eb50e51a-29df-4c9b-b772-7232e5cf23a4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1894&$top=515&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1896&$top=513&$maxpagesize=2"}' + headers: + apim-request-id: + - 8fde0b2a-3a8d-42bc-b253-15dee22039fc + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:19 GMT + etag: + - '"FC3B694457D190969001E0C87F5390B37C045B41484B8E14F28CD99F0AB366FD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8fde0b2a-3a8d-42bc-b253-15dee22039fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1896&$top=513&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1898&$top=511&$maxpagesize=2"}' + headers: + apim-request-id: + - f038a650-5ef8-4040-9f8c-42ca22fdf577 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:20 GMT + etag: + - '"4D90D01DBA1FB7DE1F493FC471F4E06E4A9CB578D4FDDF8973B281EAF2C2C843"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f038a650-5ef8-4040-9f8c-42ca22fdf577 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1898&$top=511&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=509&$maxpagesize=2"}' + headers: + apim-request-id: + - 47187830-66be-4281-b330-cbf009b709e0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:20 GMT + etag: + - '"FB0CA49D417DAFEA5F82E854AF8EAC66B72ECA98644FF55C6F4ED35B82C23752"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 47187830-66be-4281-b330-cbf009b709e0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=509&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1902&$top=507&$maxpagesize=2"}' + headers: + apim-request-id: + - ad3fca98-4aa8-4a77-ae51-25851fd8d12d + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:20 GMT + etag: + - '"7367941E42A3104E014AE6E2F47DF7D7E6B95337FBF7A77B05B9FC089A8FF422"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ad3fca98-4aa8-4a77-ae51-25851fd8d12d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1902&$top=507&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1904&$top=505&$maxpagesize=2"}' + headers: + apim-request-id: + - 217ae0e7-7dcb-4094-88e9-bd2b41b71404 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:20 GMT + etag: + - '"4E8DE306B28EABD1C6850E4B5E331B92E96796AD48B6D95E8750C01B235E3812"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 217ae0e7-7dcb-4094-88e9-bd2b41b71404 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1904&$top=505&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1906&$top=503&$maxpagesize=2"}' + headers: + apim-request-id: + - 806a36c6-ded0-4834-84f7-bbab11732f66 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:20 GMT + etag: + - '"518994C44AC2E9D4D3B20D7CFAD3D3B4FD32CC58CDF019CA676C950A23851422"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 806a36c6-ded0-4834-84f7-bbab11732f66 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1906&$top=503&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1908&$top=501&$maxpagesize=2"}' + headers: + apim-request-id: + - 3562733b-a071-4942-b5a5-c416667452a3 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:21 GMT + etag: + - '"457ED796400B7E7075384B3D77048EBA75A376A0E81CFBF1DD9CC219F322278E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3562733b-a071-4942-b5a5-c416667452a3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1908&$top=501&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1910&$top=499&$maxpagesize=2"}' + headers: + apim-request-id: + - e4e2babb-69f3-42f2-8fb2-75b8e05ef84f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:21 GMT + etag: + - '"60706861FF8CF3310DA9FAB16FC132814C4E7735C8A7EDD8BEB37B7528B3151F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e4e2babb-69f3-42f2-8fb2-75b8e05ef84f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1910&$top=499&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1912&$top=497&$maxpagesize=2"}' + headers: + apim-request-id: + - 90524d71-ad22-420a-9cf8-c3dd11e79d5d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:21 GMT + etag: + - '"55B819933BF54B37A100942FD9CD67229CFD65CA220BD9C8E762D81122306841"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 90524d71-ad22-420a-9cf8-c3dd11e79d5d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1912&$top=497&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1914&$top=495&$maxpagesize=2"}' + headers: + apim-request-id: + - 7aa335ac-3f29-478f-b61b-224117e38fe9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:21 GMT + etag: + - '"23119CD586B3C8D7BBB62489C69617F2B563D07D9C32B67565B0F2252C4932CB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7aa335ac-3f29-478f-b61b-224117e38fe9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1914&$top=495&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1916&$top=493&$maxpagesize=2"}' + headers: + apim-request-id: + - 7692ecd2-97b2-42fb-9655-fa76f47f3d45 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:21 GMT + etag: + - '"1D44370943C1A79F48FD73991BF8C7193BFFBEE0C01CD3C2DBE4D82588D64AC2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7692ecd2-97b2-42fb-9655-fa76f47f3d45 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1916&$top=493&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1918&$top=491&$maxpagesize=2"}' + headers: + apim-request-id: + - f7c86cf6-5b91-439a-af9c-8c29d2359cd6 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:22 GMT + etag: + - '"DFB1D93E7D3E6E35A8EECF6D341D33E825CFB65E736F88CD3FCD1FF93450FD02"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f7c86cf6-5b91-439a-af9c-8c29d2359cd6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1918&$top=491&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1920&$top=489&$maxpagesize=2"}' + headers: + apim-request-id: + - ba37196c-a8d6-476b-8bf6-a641f6642d5d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:22 GMT + etag: + - '"12340E8C15A0F7B2188B99F4CE8E79E25011D72C932D4AA4302E8DF0ABD77716"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ba37196c-a8d6-476b-8bf6-a641f6642d5d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1920&$top=489&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1922&$top=487&$maxpagesize=2"}' + headers: + apim-request-id: + - 62286128-7e98-4f60-9a33-65851218dfec + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:22 GMT + etag: + - '"4400EFEAA65364738DF97FAD870F19B9F130F5691DAEC24A5F3F97D95CD28B22"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 62286128-7e98-4f60-9a33-65851218dfec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1922&$top=487&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1924&$top=485&$maxpagesize=2"}' + headers: + apim-request-id: + - 48c62fec-b1d1-40e6-a71f-9eeacec99cb0 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:22 GMT + etag: + - '"CD76C6B213AEE7A6A9B190B3A20B32D5A4B2FBC7BE2BCF5090B027475A0D4BD6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 48c62fec-b1d1-40e6-a71f-9eeacec99cb0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1924&$top=485&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1926&$top=483&$maxpagesize=2"}' + headers: + apim-request-id: + - 49d128c0-6847-4109-a6e6-c59c89db0bcf + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:22 GMT + etag: + - '"E85056DFA73E6925AC7D58A9A7A8793873EAF70157C23FDA3B41E42534EB8300"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 49d128c0-6847-4109-a6e6-c59c89db0bcf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1926&$top=483&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1928&$top=481&$maxpagesize=2"}' + headers: + apim-request-id: + - 35a25493-51af-4c80-bcd4-06a7a24b93ee + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:23 GMT + etag: + - '"9ECE72CB701043646E2FA4953A2E0115C9547E64CFE8ACF5E7CD2E605D8B556B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 35a25493-51af-4c80-bcd4-06a7a24b93ee + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1928&$top=481&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1930&$top=479&$maxpagesize=2"}' + headers: + apim-request-id: + - cb99868b-1a04-4f82-aab7-cf2d7d573a7c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:23 GMT + etag: + - '"0E93B6D4E6E5750E0B05D23391BD304EA148BA51591D0058A3A1CA898032A592"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cb99868b-1a04-4f82-aab7-cf2d7d573a7c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1930&$top=479&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1932&$top=477&$maxpagesize=2"}' + headers: + apim-request-id: + - 6768e34d-542c-4121-98b9-bababf2f7401 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:23 GMT + etag: + - '"8AB79012F1F24AF6FDA072528F8453C2C60104154E35CC274E07356842B47227"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6768e34d-542c-4121-98b9-bababf2f7401 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1932&$top=477&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1934&$top=475&$maxpagesize=2"}' + headers: + apim-request-id: + - b5fae401-1ff7-49a6-8d8a-304befc6859d + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:23 GMT + etag: + - '"FE17AD1E54438761EA9BCAA7A8EC080BCA2D65DECBC11EB192AABA9FE2E39E23"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b5fae401-1ff7-49a6-8d8a-304befc6859d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1934&$top=475&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1936&$top=473&$maxpagesize=2"}' + headers: + apim-request-id: + - 1b270117-c3cb-4d94-a451-2597d6b05b51 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:23 GMT + etag: + - '"D0AE95BD69FA9153EB667B98951BAF82346ABE75767325125730ACF1800E8D54"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1b270117-c3cb-4d94-a451-2597d6b05b51 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1936&$top=473&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1938&$top=471&$maxpagesize=2"}' + headers: + apim-request-id: + - 099f68ba-0a1d-4d7a-b59d-18659eb2029f + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:24 GMT + etag: + - '"25D830A872AA14E2E684AA85FC75BC8A034947511B0F819057A518031CA3D218"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 099f68ba-0a1d-4d7a-b59d-18659eb2029f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1938&$top=471&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1940&$top=469&$maxpagesize=2"}' + headers: + apim-request-id: + - 16107643-be4a-4aaa-9c82-6592d854a6b8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:24 GMT + etag: + - '"015F99B075C7E65B5B4223B0AAD73B3C833DC33FC6EBBE2457AA297A9783F17D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 16107643-be4a-4aaa-9c82-6592d854a6b8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1940&$top=469&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1942&$top=467&$maxpagesize=2"}' + headers: + apim-request-id: + - e5a14c0a-d982-4a5b-924c-d1061050df9b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:24 GMT + etag: + - '"AE339251F6B9DB03C8EA737FDF91D340A1C9D90A44BFFD78AB98AEDB7D011DE0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5a14c0a-d982-4a5b-924c-d1061050df9b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1942&$top=467&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1944&$top=465&$maxpagesize=2"}' + headers: + apim-request-id: + - 1577f007-4c2f-4896-b2fb-11f70b4d21d5 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:24 GMT + etag: + - '"A563C2CF0169341173BB2D9336881C8EA9EAFDEA6CBB712DDD1CF3C05A08D198"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1577f007-4c2f-4896-b2fb-11f70b4d21d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1944&$top=465&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1946&$top=463&$maxpagesize=2"}' + headers: + apim-request-id: + - 03d39792-c941-4402-9008-e5307f7bf30a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:24 GMT + etag: + - '"1F5C3DC506FE88878CE85A01327A36B5B671D87FC4533FA4C584931A960D8D0F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 03d39792-c941-4402-9008-e5307f7bf30a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1946&$top=463&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1948&$top=461&$maxpagesize=2"}' + headers: + apim-request-id: + - cdced63b-58ca-4f24-9595-809cb6f77f8c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:25 GMT + etag: + - '"5684696CC588BFCC2B91654DEC405FBA6CC3BBCC82B62BCFD672F35B9DEC5933"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cdced63b-58ca-4f24-9595-809cb6f77f8c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1948&$top=461&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=459&$maxpagesize=2"}' + headers: + apim-request-id: + - 07928ee6-6de7-4f18-8205-81f1e3972fd6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:25 GMT + etag: + - '"0D61C7247B3C578B35276D573866C190F04EDD07E78C9A9D03DAE069F930FEBC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 07928ee6-6de7-4f18-8205-81f1e3972fd6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=459&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1952&$top=457&$maxpagesize=2"}' + headers: + apim-request-id: + - 39e46e5f-5a74-480d-899c-c380f71c6a73 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:25 GMT + etag: + - '"E7CF19C803CE415E7E045133E7BFAD3238FDECB47EFBA0596750779999770897"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 39e46e5f-5a74-480d-899c-c380f71c6a73 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1952&$top=457&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1954&$top=455&$maxpagesize=2"}' + headers: + apim-request-id: + - a7b69b61-02cf-44ac-bf13-e2d318230437 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:25 GMT + etag: + - '"3F8194EA628DDCA5BCDB7AA9A563B9A2E8FF31872F56EEEE8100ACEA3D48110E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a7b69b61-02cf-44ac-bf13-e2d318230437 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1954&$top=455&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1956&$top=453&$maxpagesize=2"}' + headers: + apim-request-id: + - 02164fd4-ef24-43ee-99fb-dfa9973b85cd + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:25 GMT + etag: + - '"7C6BA52D95186BF62DB3B1AFFFAA0E1EFA7A979E49C1246865FA1CFA4565F72D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 02164fd4-ef24-43ee-99fb-dfa9973b85cd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1956&$top=453&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1958&$top=451&$maxpagesize=2"}' + headers: + apim-request-id: + - 88c248ec-79f2-46d8-97a9-330b909b3831 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:25 GMT + etag: + - '"9C4F4C86D88AF6DA39D36E6B503134E4C0A905F75C24628A286C11B1CC5BAAF0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 88c248ec-79f2-46d8-97a9-330b909b3831 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1958&$top=451&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1960&$top=449&$maxpagesize=2"}' + headers: + apim-request-id: + - 43d16707-2b03-40bb-ab27-8bf3f9c4cefc + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:26 GMT + etag: + - '"54BC47D6E33AC00578B0E819102FA7CA1F647BADEEC446A5F2FE84055EFDE108"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 43d16707-2b03-40bb-ab27-8bf3f9c4cefc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1960&$top=449&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1962&$top=447&$maxpagesize=2"}' + headers: + apim-request-id: + - 7f335841-48a3-4a44-8e95-914ee915407a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:26 GMT + etag: + - '"BADD69221C2E1A52606B2F49716FF7BCAB20FF643DD6B4F6B823B33AAB3C963C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7f335841-48a3-4a44-8e95-914ee915407a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1962&$top=447&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1964&$top=445&$maxpagesize=2"}' + headers: + apim-request-id: + - be8c31d9-7fb2-44ac-9484-00824756ddce + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:26 GMT + etag: + - '"F72CA2FABCADDABBD314EEA63035A1D852E1F50E63C5F5831D169E239B36B9C6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - be8c31d9-7fb2-44ac-9484-00824756ddce + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1964&$top=445&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1966&$top=443&$maxpagesize=2"}' + headers: + apim-request-id: + - 8fda9ef4-e5e3-4bb0-97ba-8525008ed9ee + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:26 GMT + etag: + - '"1BB01F897C29D3E4F4D9C8C7FF7C5D595A34BC7EEFB1AF9D7D40AF7F81D53D32"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8fda9ef4-e5e3-4bb0-97ba-8525008ed9ee + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1966&$top=443&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1968&$top=441&$maxpagesize=2"}' + headers: + apim-request-id: + - c370dd80-24ce-44bd-98be-c78f1ce150a9 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:26 GMT + etag: + - '"BD3054A1008184085FFF79AE99B1A123D73FFC089EE5F669E48F7F0BEAC8E82E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c370dd80-24ce-44bd-98be-c78f1ce150a9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1968&$top=441&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1970&$top=439&$maxpagesize=2"}' + headers: + apim-request-id: + - 4d6e219d-b8ca-47fd-b438-a33ababbcdf3 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:27 GMT + etag: + - '"2BA1BA3D6683EF12EEE1567536F6BF40D319DC555252EE3F1E8CCA99E050893B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4d6e219d-b8ca-47fd-b438-a33ababbcdf3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1970&$top=439&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1972&$top=437&$maxpagesize=2"}' + headers: + apim-request-id: + - 00803f6c-b19f-4319-a146-225c62786f43 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:27 GMT + etag: + - '"ED515890AD0B6B1D64CC211756FA20851FD2A353823C28857D289D9A258EDDB2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 00803f6c-b19f-4319-a146-225c62786f43 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1972&$top=437&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1974&$top=435&$maxpagesize=2"}' + headers: + apim-request-id: + - df4e98d9-351d-49dc-ab9a-a0678998f937 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:27 GMT + etag: + - '"82B3291B5540B7664BFB0417F3281573E91056207C5090B921A3DCB1CE233412"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - df4e98d9-351d-49dc-ab9a-a0678998f937 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1974&$top=435&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1976&$top=433&$maxpagesize=2"}' + headers: + apim-request-id: + - d105b14d-43cd-4427-a202-9669f629ba58 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:27 GMT + etag: + - '"AD8F71D0B6982AB599A2E06E10F6B5845811F5938FC208D0138711FDA45E89EE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d105b14d-43cd-4427-a202-9669f629ba58 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1976&$top=433&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1978&$top=431&$maxpagesize=2"}' + headers: + apim-request-id: + - 390beb46-96d4-43d4-8bc1-c93a18ac828f + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:28 GMT + etag: + - '"D8650BB4A68D82D09FDA367B967668BF69A64F2D8816FBD828738C83FAA88C29"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 390beb46-96d4-43d4-8bc1-c93a18ac828f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1978&$top=431&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1980&$top=429&$maxpagesize=2"}' + headers: + apim-request-id: + - aaceecb8-19a8-425d-b2ad-24cfb46d49b6 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:28 GMT + etag: + - '"70B51957A6469ABE40F5451F6EB9C85924B1306A8EE6EDED2772D8DDF260DF50"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - aaceecb8-19a8-425d-b2ad-24cfb46d49b6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1980&$top=429&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1982&$top=427&$maxpagesize=2"}' + headers: + apim-request-id: + - d93f0745-c6d3-4e1a-9b97-739e5cd12803 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:28 GMT + etag: + - '"E5F01AB1071F898AAB760692AEFDD98C665EF150D1B5EAF77321FCB852698429"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d93f0745-c6d3-4e1a-9b97-739e5cd12803 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1982&$top=427&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1984&$top=425&$maxpagesize=2"}' + headers: + apim-request-id: + - f0bc7e4b-138d-4d6c-98fa-87030593daa2 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:28 GMT + etag: + - '"1948A5C2E8C127B11EA934D07AA27DBB1F39D0734B2E3A5944C57F1348D7DA37"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f0bc7e4b-138d-4d6c-98fa-87030593daa2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1984&$top=425&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1986&$top=423&$maxpagesize=2"}' + headers: + apim-request-id: + - d048387f-3766-42d3-8422-30609e4907fa + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:28 GMT + etag: + - '"D3B2F9C56D6E0EEFF9AD24BB71AF8F4A368B899F60F4AE2D96A7793F0819483D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d048387f-3766-42d3-8422-30609e4907fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1986&$top=423&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1988&$top=421&$maxpagesize=2"}' + headers: + apim-request-id: + - 5a1d7a08-b6ac-4358-b9c8-cb17d61ee264 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:28 GMT + etag: + - '"41A10241348252A56219242A30B437C280B2A6C02E7AFB0560075110E4A565EE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5a1d7a08-b6ac-4358-b9c8-cb17d61ee264 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1988&$top=421&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1990&$top=419&$maxpagesize=2"}' + headers: + apim-request-id: + - 1499091b-196c-4717-bc8e-a4574dfda830 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:29 GMT + etag: + - '"4B218C82B195B5A51CD277C2703AC307F847A700119BD2F53312D151F340BE64"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1499091b-196c-4717-bc8e-a4574dfda830 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1990&$top=419&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1992&$top=417&$maxpagesize=2"}' + headers: + apim-request-id: + - ede57dac-79b4-49fa-9a2a-2774eaccb99d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:29 GMT + etag: + - '"82212E064800516244F7F040A4A61C5AB6767176C95790418F9F8B7CB41D77B7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ede57dac-79b4-49fa-9a2a-2774eaccb99d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1992&$top=417&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1994&$top=415&$maxpagesize=2"}' + headers: + apim-request-id: + - 2e2c781c-99e6-4ba1-b9e7-a807eb033cc9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:29 GMT + etag: + - '"A5FB01EEE0B09C46AB8E0A8D880F5D43B001D95ACEFB560114F40D4EDF32AD57"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2e2c781c-99e6-4ba1-b9e7-a807eb033cc9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1994&$top=415&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1996&$top=413&$maxpagesize=2"}' + headers: + apim-request-id: + - 5dac5a88-e5d2-4f5c-8c37-1ab345c2128b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:29 GMT + etag: + - '"A9936E9757A6926E496C45401B238145848602D9D6D996A761CAEAA16C7E45E5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5dac5a88-e5d2-4f5c-8c37-1ab345c2128b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1996&$top=413&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1998&$top=411&$maxpagesize=2"}' + headers: + apim-request-id: + - 7eb3d6a8-1af2-4372-8bd8-daf7dd484680 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:29 GMT + etag: + - '"076B596A26645627D9B6F50C2EA4EDC7BEA715CA702B666331A7EC0B2C513D63"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7eb3d6a8-1af2-4372-8bd8-daf7dd484680 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1998&$top=411&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=409&$maxpagesize=2"}' + headers: + apim-request-id: + - c1107939-51a5-422c-a228-3685893d3c44 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:30 GMT + etag: + - '"B074A42F178A01DFC54FD2FCB01E59234139022C850E453100272CFEB0C1840E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c1107939-51a5-422c-a228-3685893d3c44 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=409&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2002&$top=407&$maxpagesize=2"}' + headers: + apim-request-id: + - 09d85798-0481-4270-b33d-c24f7f3be869 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:30 GMT + etag: + - '"20B1D2470C5FE3E1010E068747AFE9B8004FD9E69FA21165B7273D1B4748F80A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 09d85798-0481-4270-b33d-c24f7f3be869 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2002&$top=407&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2004&$top=405&$maxpagesize=2"}' + headers: + apim-request-id: + - 2e82775b-8691-40b0-88e7-4e850d0fce03 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:30 GMT + etag: + - '"E9FEE92A34CB4D4065020DA03A7E5B5867EC625062E8FEBD90B9FDF4A06C0A97"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2e82775b-8691-40b0-88e7-4e850d0fce03 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2004&$top=405&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2006&$top=403&$maxpagesize=2"}' + headers: + apim-request-id: + - fd1fce06-6702-4392-8784-f2a30508816a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:30 GMT + etag: + - '"DE2B3A271CA0B08C54F48C94B78959291EF822D45233B49301F2432A2B926798"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fd1fce06-6702-4392-8784-f2a30508816a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2006&$top=403&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2008&$top=401&$maxpagesize=2"}' + headers: + apim-request-id: + - 86f28318-de51-4979-9846-453dd94a1329 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:30 GMT + etag: + - '"E71042BA0A8F64F07C382305981BE3B7C67E1893994AF35C383110EE19D0CF0E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 86f28318-de51-4979-9846-453dd94a1329 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2008&$top=401&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2010&$top=399&$maxpagesize=2"}' + headers: + apim-request-id: + - 3af085dd-1b82-45f9-bf3f-e1a2ecc8f0bb + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:31 GMT + etag: + - '"34B9606E216C8174EBE6274B0C4833F66D97C5573E43A4385FF3D89D9258DDA2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3af085dd-1b82-45f9-bf3f-e1a2ecc8f0bb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2010&$top=399&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2012&$top=397&$maxpagesize=2"}' + headers: + apim-request-id: + - 5154e4c2-9fbf-41a3-8cbd-fc548030c4cc + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:31 GMT + etag: + - '"4D9417AB07756A622706AD42CF244874C3E49FA5C4173E23CE56B15AA870913C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5154e4c2-9fbf-41a3-8cbd-fc548030c4cc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2012&$top=397&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2014&$top=395&$maxpagesize=2"}' + headers: + apim-request-id: + - 1d78eaf0-008e-4c77-be8d-43a9d6d74275 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:31 GMT + etag: + - '"73043020410B1DAC41EB7329D58BEA54CD19646B16F9D29477A4DDCD6074B233"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1d78eaf0-008e-4c77-be8d-43a9d6d74275 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2014&$top=395&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2016&$top=393&$maxpagesize=2"}' + headers: + apim-request-id: + - 018ef378-14ab-4385-b657-68b848209ab4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:31 GMT + etag: + - '"1A755AE20F1D9EEA6CB50CF643452B1CD758C77109564E73BBFDE8DA170DB33F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 018ef378-14ab-4385-b657-68b848209ab4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2016&$top=393&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2018&$top=391&$maxpagesize=2"}' + headers: + apim-request-id: + - 667cff68-d0f9-473f-96d4-c1a2ee880ebf + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:31 GMT + etag: + - '"CDFF8E3556EAD8F2AC8A9A0837583D5811711F964575844081FF4DD5A9A392DC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 667cff68-d0f9-473f-96d4-c1a2ee880ebf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2018&$top=391&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2020&$top=389&$maxpagesize=2"}' + headers: + apim-request-id: + - c32e0780-09f2-45b1-a177-b1bc24f3da42 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:33 GMT + etag: + - '"441BA446C171A973007DCABE23EC5C8155DC193BE8DC6609BEB461160F99CEE9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c32e0780-09f2-45b1-a177-b1bc24f3da42 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2020&$top=389&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2022&$top=387&$maxpagesize=2"}' + headers: + apim-request-id: + - 0669d288-e3f2-499f-bf44-1802f70aad8f + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:33 GMT + etag: + - '"240B56F7B68F0BFDEFBAC3709683265322B0AD2CF99FE9D80EB12D4B13EC5914"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0669d288-e3f2-499f-bf44-1802f70aad8f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2022&$top=387&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2024&$top=385&$maxpagesize=2"}' + headers: + apim-request-id: + - 492d1f77-be40-4eb2-add3-f20aab96b7ad + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:33 GMT + etag: + - '"F9EE9361B6FF0D9D1A33E8B4E0BAEB45950D0ED0B8A02A3144A6F5D090C223F5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 492d1f77-be40-4eb2-add3-f20aab96b7ad + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2024&$top=385&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2026&$top=383&$maxpagesize=2"}' + headers: + apim-request-id: + - b786dcae-89a4-49de-b438-c09807024c71 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:33 GMT + etag: + - '"62E21C6468F1448B00AB1CE623A201F08F84CD1926590ADC363E7954E8646C60"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b786dcae-89a4-49de-b438-c09807024c71 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2026&$top=383&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2028&$top=381&$maxpagesize=2"}' + headers: + apim-request-id: + - cc655285-92b3-49cd-89f6-1773bdc85c8a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:33 GMT + etag: + - '"7CF420731E32552704D1F4FA61BF18D5051ADA18F8988087564FCA5AE0A34046"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cc655285-92b3-49cd-89f6-1773bdc85c8a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2028&$top=381&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2030&$top=379&$maxpagesize=2"}' + headers: + apim-request-id: + - a955071b-43fc-439e-96c1-f2c411622cf0 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:33 GMT + etag: + - '"0F56E1CB7304279E4AC4E89F6A795F2D4D102F358C5398AEFE81A0054548FDD0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a955071b-43fc-439e-96c1-f2c411622cf0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2030&$top=379&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2032&$top=377&$maxpagesize=2"}' + headers: + apim-request-id: + - d5f7f3fc-abfc-48df-bf7a-1988ca5d2d62 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:34 GMT + etag: + - '"9E77961F5DCCF559C431C655949CD027D31285F2593A8533883FF390C64AF74A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d5f7f3fc-abfc-48df-bf7a-1988ca5d2d62 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2032&$top=377&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2034&$top=375&$maxpagesize=2"}' + headers: + apim-request-id: + - 74530e5e-fa0e-4fd7-b18b-924876f6edf9 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:34 GMT + etag: + - '"61C129D38929D9308C01442C5A5A0D45E154A3959190C813275A29D323D33382"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 74530e5e-fa0e-4fd7-b18b-924876f6edf9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2034&$top=375&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2036&$top=373&$maxpagesize=2"}' + headers: + apim-request-id: + - cc59a154-e4a8-423d-9e36-13660b0a0d28 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:34 GMT + etag: + - '"3CEA75F461C7ADED31DCE28A69EC37E2D35F9CDB3091FB3AF574CA66DACCA2D7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cc59a154-e4a8-423d-9e36-13660b0a0d28 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2036&$top=373&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2038&$top=371&$maxpagesize=2"}' + headers: + apim-request-id: + - 41e2b4ce-022f-4428-8ab9-0fef13cb72bf + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:34 GMT + etag: + - '"74116B7494529179A26F2AE1DF046BE05EC4BFF4F573E72D25D6337C7E87E4A6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 41e2b4ce-022f-4428-8ab9-0fef13cb72bf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2038&$top=371&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2040&$top=369&$maxpagesize=2"}' + headers: + apim-request-id: + - b3e94b85-516f-47d4-8bb9-5f90800ce1ea + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:34 GMT + etag: + - '"DE2AB2A5B6338F294E22FFFE06A1B79BDECA7E8447D3A5B6FA9880867C6D40F9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b3e94b85-516f-47d4-8bb9-5f90800ce1ea + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2040&$top=369&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2042&$top=367&$maxpagesize=2"}' + headers: + apim-request-id: + - 17ea38d1-775f-440a-98e9-b12f3c859c00 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:35 GMT + etag: + - '"EE5A5B1601C458DE21CDA7717C475F976C94E053D0BDD617CD24BB6B2D28C891"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 17ea38d1-775f-440a-98e9-b12f3c859c00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2042&$top=367&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2044&$top=365&$maxpagesize=2"}' + headers: + apim-request-id: + - 75f8f452-76cd-478e-9273-82b36cab2ed4 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:35 GMT + etag: + - '"2A5F12308DDB567AE9E65FD877BA4F75EF129AB7D0D5EFB2E99D686B1E503DFF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 75f8f452-76cd-478e-9273-82b36cab2ed4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2044&$top=365&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2046&$top=363&$maxpagesize=2"}' + headers: + apim-request-id: + - 59e9890e-7d12-4674-82d4-6240071421e8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:35 GMT + etag: + - '"8D9E1FC191FFDA364427124EC70D5E2FAD43DC5CCD4A2BEC3D67E39AF154DBC1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 59e9890e-7d12-4674-82d4-6240071421e8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2046&$top=363&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2048&$top=361&$maxpagesize=2"}' + headers: + apim-request-id: + - c96b30b9-3bae-46c6-83af-07955bc08960 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:35 GMT + etag: + - '"0A334F94AC2CF6C6CE398EBD3405D6564F13104E0AFA84472B6089340B7B17BD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c96b30b9-3bae-46c6-83af-07955bc08960 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2048&$top=361&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=359&$maxpagesize=2"}' + headers: + apim-request-id: + - 2a5f5ad2-3f6e-4883-a492-e94b4b0bc6b4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:35 GMT + etag: + - '"8C7A816198C5A2DB77331DF3F874979AB50BCF48482E93B639B77B8C70633359"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2a5f5ad2-3f6e-4883-a492-e94b4b0bc6b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=359&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2052&$top=357&$maxpagesize=2"}' + headers: + apim-request-id: + - 596a7916-d964-4238-892b-b4536eebc50b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:36 GMT + etag: + - '"74FE6B4D4622FABB4A8D14D14AEAE654CEA0D1C34F4FA7711AC3B525935E4F30"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 596a7916-d964-4238-892b-b4536eebc50b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2052&$top=357&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2054&$top=355&$maxpagesize=2"}' + headers: + apim-request-id: + - 6d93fec0-ad59-4730-a282-636e79b49450 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:36 GMT + etag: + - '"E749F085E164B48E21920221CD2A73A479BAF2EAD6F369AB4BEB946ACC35BDC6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6d93fec0-ad59-4730-a282-636e79b49450 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2054&$top=355&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2056&$top=353&$maxpagesize=2"}' + headers: + apim-request-id: + - 5d786b41-6d18-4a64-906e-67f95740e047 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:36 GMT + etag: + - '"11074AEB33653F7C7376C277DD46ED80FC374E6D9EE624BE0E5E95EA7A448004"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5d786b41-6d18-4a64-906e-67f95740e047 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2056&$top=353&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2058&$top=351&$maxpagesize=2"}' + headers: + apim-request-id: + - 2b4d7d53-8b1c-4b3b-99ae-6205ed8f9712 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:36 GMT + etag: + - '"37766BB3F9F2FF384F2DC13E357705160C5FB8C3564A10C09EC3FBF4199A7D7D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2b4d7d53-8b1c-4b3b-99ae-6205ed8f9712 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2058&$top=351&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2060&$top=349&$maxpagesize=2"}' + headers: + apim-request-id: + - 6c0a3af0-f313-4ea5-ad43-9c134f61fa4a + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:36 GMT + etag: + - '"42D06936600B63D3CCF4F645F1AE087A2D6280B35F6EC77AC47FBFAB349E755D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6c0a3af0-f313-4ea5-ad43-9c134f61fa4a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2060&$top=349&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2062&$top=347&$maxpagesize=2"}' + headers: + apim-request-id: + - 7489b6cb-bda5-4a09-a66b-a6c5ef58fa10 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:37 GMT + etag: + - '"6C75AB8F61B39F7383E61C71116394679ABB39D733138F0E0A9E07B80D5147C1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7489b6cb-bda5-4a09-a66b-a6c5ef58fa10 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2062&$top=347&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2064&$top=345&$maxpagesize=2"}' + headers: + apim-request-id: + - 53b42132-6fd7-419d-93b0-5442d839fce2 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:37 GMT + etag: + - '"32AE5A41BF7C6B220CA8003DE02A4A75AD9C3C8EEEA9E8E4D1D99587FA619BFA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 53b42132-6fd7-419d-93b0-5442d839fce2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2064&$top=345&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2066&$top=343&$maxpagesize=2"}' + headers: + apim-request-id: + - a5969301-f02f-4395-9a40-a001a9c657a9 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:37 GMT + etag: + - '"CEA8B73E5F058DBD305EBC3902B1A2DDEC7D00462B9D6FB7ADBDA7CB2E3FFD38"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a5969301-f02f-4395-9a40-a001a9c657a9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2066&$top=343&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2068&$top=341&$maxpagesize=2"}' + headers: + apim-request-id: + - a77f29b7-dd55-43df-a20e-d51a9029011e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:37 GMT + etag: + - '"794B890F66E2E4C666CE6EE68E785FAD29C986D7BFFFA17EBAA94E448D883475"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a77f29b7-dd55-43df-a20e-d51a9029011e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2068&$top=341&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2070&$top=339&$maxpagesize=2"}' + headers: + apim-request-id: + - 50bae88a-b82d-4adf-9ef5-713f9830e1e0 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:37 GMT + etag: + - '"A6C88E67B083F8FE19BDE0C42C657776816035ED7EE5EDFBD56038C40496CB20"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 50bae88a-b82d-4adf-9ef5-713f9830e1e0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2070&$top=339&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2072&$top=337&$maxpagesize=2"}' + headers: + apim-request-id: + - 98e25699-68a9-4f70-9f0f-67b8b1a7dbf8 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:38 GMT + etag: + - '"DAE712A4EBC5E244D0E0B297EA8A43F582F0973D9D03D3278F50B8E760097353"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 98e25699-68a9-4f70-9f0f-67b8b1a7dbf8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2072&$top=337&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2074&$top=335&$maxpagesize=2"}' + headers: + apim-request-id: + - 4282828e-e311-4c91-b1c5-51a510f10f35 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:38 GMT + etag: + - '"B7005FFD3A1327BD327FA2892EBE02186A5F693FB2BA4AC5022349EEA126D124"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4282828e-e311-4c91-b1c5-51a510f10f35 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2074&$top=335&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2076&$top=333&$maxpagesize=2"}' + headers: + apim-request-id: + - f565e475-b2d5-4229-a66c-2a0196116de5 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:38 GMT + etag: + - '"09E86A26A84CCC952A19DFB4B61F729CB47828778A0FCB9280749DA915AEDF53"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f565e475-b2d5-4229-a66c-2a0196116de5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2076&$top=333&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2078&$top=331&$maxpagesize=2"}' + headers: + apim-request-id: + - 0c077acc-ab85-4fb1-a78f-f61cf9b2b8c4 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:38 GMT + etag: + - '"F6567752CD19911A3CD4864144494460AB2B5D42EBEBF65EF82B2520BA60F4CE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0c077acc-ab85-4fb1-a78f-f61cf9b2b8c4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2078&$top=331&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2080&$top=329&$maxpagesize=2"}' + headers: + apim-request-id: + - 125035eb-1116-4235-b1f1-05b034812521 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:38 GMT + etag: + - '"877E7C77E7961D5A72E6368398785112368C2A74DC67FAA4BBB1A09E067EFB00"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 125035eb-1116-4235-b1f1-05b034812521 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2080&$top=329&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2082&$top=327&$maxpagesize=2"}' + headers: + apim-request-id: + - 9a78a667-27ac-4949-a705-307205ebba78 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:38 GMT + etag: + - '"1954A318B192B8CA21015BA496C1836FA194D835302590EB9254B1441540046F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9a78a667-27ac-4949-a705-307205ebba78 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2082&$top=327&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2084&$top=325&$maxpagesize=2"}' + headers: + apim-request-id: + - d64ca0c8-9d3d-4c6c-b2b2-82d18c387c91 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:39 GMT + etag: + - '"6284ECA8A03F0B94D7CADDCF62C7D2A424CFA770DFF740F8740355195BE08F65"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d64ca0c8-9d3d-4c6c-b2b2-82d18c387c91 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2084&$top=325&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2086&$top=323&$maxpagesize=2"}' + headers: + apim-request-id: + - 66a098c0-8196-44a7-93f7-c541784d2697 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:39 GMT + etag: + - '"54E0DCB8867BB1D7E823276B7493E2430BB83954549EBEC74AE66B54522A8016"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 66a098c0-8196-44a7-93f7-c541784d2697 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2086&$top=323&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2088&$top=321&$maxpagesize=2"}' + headers: + apim-request-id: + - 117299a1-dd52-4e14-939d-b02b9f713c28 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:39 GMT + etag: + - '"2B4B9A25153CC1EE210AF81D8A46E74C0C2F4330FC2CBAC758C931D83ED6506E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 117299a1-dd52-4e14-939d-b02b9f713c28 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2088&$top=321&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2090&$top=319&$maxpagesize=2"}' + headers: + apim-request-id: + - 5871d1a6-f1a3-4ffa-a387-41b7bbcadf6a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:39 GMT + etag: + - '"E12664B0FF65296A7DBF36CA4BB5C3746DD0287652E1F74BE8D5C2EDB3113EF1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5871d1a6-f1a3-4ffa-a387-41b7bbcadf6a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2090&$top=319&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2092&$top=317&$maxpagesize=2"}' + headers: + apim-request-id: + - 7eaef089-e272-4e23-a183-0da612460020 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:39 GMT + etag: + - '"BBCEA13E3364566EB9777A2A74F43544BD58A74839895BE8BD231D509492EC0A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7eaef089-e272-4e23-a183-0da612460020 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2092&$top=317&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2094&$top=315&$maxpagesize=2"}' + headers: + apim-request-id: + - f9ee47cf-f048-47e2-8316-11d5dbc5908c + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:40 GMT + etag: + - '"DAF78FD76AF2E23AE25F5D574F57ECC2A1C1897583C17A43383FDDAEF31619A7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f9ee47cf-f048-47e2-8316-11d5dbc5908c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2094&$top=315&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2096&$top=313&$maxpagesize=2"}' + headers: + apim-request-id: + - 90dc9388-13f6-466d-bf35-de3f8e462463 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:40 GMT + etag: + - '"E78C7DBF4F1DA7F561B165B95C08B4F6C751AA6F294E6DD48A161B2D8EAD19AA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 90dc9388-13f6-466d-bf35-de3f8e462463 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2096&$top=313&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2098&$top=311&$maxpagesize=2"}' + headers: + apim-request-id: + - 48352ab7-755b-443c-9be5-fdbf5eac42e9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:40 GMT + etag: + - '"95ED3585E40D7CD9B64DEB6C51182AFE1B00A1C8763457BBA47EDCBD637B440F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 48352ab7-755b-443c-9be5-fdbf5eac42e9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2098&$top=311&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=309&$maxpagesize=2"}' + headers: + apim-request-id: + - a8993f78-e39a-476f-abc2-6f6ecb64e70f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:40 GMT + etag: + - '"D29AF9359E478C210871435170F770ED1264E3226AD2226448B8B92D86DB047B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a8993f78-e39a-476f-abc2-6f6ecb64e70f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=309&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2102&$top=307&$maxpagesize=2"}' + headers: + apim-request-id: + - bfe4cb10-045d-4dd6-ae79-c6402f60f2ba + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:40 GMT + etag: + - '"721B37AAC463D0A7A431B7318A86E2469F85864D52906B464A19FF88A7973AFF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bfe4cb10-045d-4dd6-ae79-c6402f60f2ba + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2102&$top=307&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2104&$top=305&$maxpagesize=2"}' + headers: + apim-request-id: + - 57d393de-4e84-4d19-b16c-c7c705664775 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:40 GMT + etag: + - '"256D775FF609E5340A6ADEEC98F20CB09057F1D51B89941016DD8F30E0CA71C7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 57d393de-4e84-4d19-b16c-c7c705664775 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2104&$top=305&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2106&$top=303&$maxpagesize=2"}' + headers: + apim-request-id: + - 2ca15db9-8f7e-4c04-a3ab-bcca9d72d4e4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:41 GMT + etag: + - '"77FF06C35D7871203F763B212AB8CB4434C45E6B7C63105013BFA53F1F9D3610"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2ca15db9-8f7e-4c04-a3ab-bcca9d72d4e4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2106&$top=303&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2108&$top=301&$maxpagesize=2"}' + headers: + apim-request-id: + - c114fe02-ab46-4687-b111-95c4f95e4c87 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:41 GMT + etag: + - '"F528965A997578BAAA9F02E50BE30D069F2F54F628334F5431399C2A718A3D13"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c114fe02-ab46-4687-b111-95c4f95e4c87 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2108&$top=301&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2110&$top=299&$maxpagesize=2"}' + headers: + apim-request-id: + - 3675e937-fc9e-49fd-a7c2-ccff2d01b333 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:41 GMT + etag: + - '"3A72EB1F9A1E1112EF880E9A3BE813F10967CBEA6D228E5A6A64446EDAEAE66B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3675e937-fc9e-49fd-a7c2-ccff2d01b333 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2110&$top=299&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2112&$top=297&$maxpagesize=2"}' + headers: + apim-request-id: + - 6d922a67-979c-4eaf-adf8-f5da948fd5b6 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:41 GMT + etag: + - '"7A0F29D64B726216819CC6F184E82790E9A1E080226B94DD92A67050ACAEA3AF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6d922a67-979c-4eaf-adf8-f5da948fd5b6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2112&$top=297&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2114&$top=295&$maxpagesize=2"}' + headers: + apim-request-id: + - f102066a-46fb-4cfd-847c-75ff43f91f9a + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:41 GMT + etag: + - '"95BF4FC5FB3E95FB52FBCF28A94F79A42EBCDABA9934AC7C13128ECDE4D6BDE6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f102066a-46fb-4cfd-847c-75ff43f91f9a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2114&$top=295&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2116&$top=293&$maxpagesize=2"}' + headers: + apim-request-id: + - d991ba61-2743-441e-a1d8-2a27273697e2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:42 GMT + etag: + - '"44635B156592AD924EFE3FDD7571DC5D2E1E78432C53FEA0D8865C257EA43EC8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d991ba61-2743-441e-a1d8-2a27273697e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2116&$top=293&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2118&$top=291&$maxpagesize=2"}' + headers: + apim-request-id: + - 2b8957f4-36d9-411d-ab90-4dc6d0f22f03 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:42 GMT + etag: + - '"4BD7D2C134479EA876415CC05B0895C196E8118B2E9E749AA6FD2ED419858E71"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2b8957f4-36d9-411d-ab90-4dc6d0f22f03 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2118&$top=291&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2120&$top=289&$maxpagesize=2"}' + headers: + apim-request-id: + - bb41d6b4-0816-4eb2-8257-941fb6e2bd5e + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:42 GMT + etag: + - '"31F58F999C1977694CCD60FFE9E1FF102D4877990190A2036E525420F9D61C4A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bb41d6b4-0816-4eb2-8257-941fb6e2bd5e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2120&$top=289&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2122&$top=287&$maxpagesize=2"}' + headers: + apim-request-id: + - a843f610-63cc-4d3d-9dcc-c2d3daeeaa31 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:42 GMT + etag: + - '"C44FC47872E540616B19CA4E539436703B088887B9BFCAA0EBE7000AC82606C7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a843f610-63cc-4d3d-9dcc-c2d3daeeaa31 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2122&$top=287&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2124&$top=285&$maxpagesize=2"}' + headers: + apim-request-id: + - 90e999e0-95a7-4073-9e76-d2b5de8a1389 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:42 GMT + etag: + - '"16414C659A6EF731C97F500089C81E2130D150BADB3BF5EC46830FCF9B40B59E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 90e999e0-95a7-4073-9e76-d2b5de8a1389 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2124&$top=285&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2126&$top=283&$maxpagesize=2"}' + headers: + apim-request-id: + - 76cd7c82-410c-4d5f-a5ef-c6edcbb77d40 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:43 GMT + etag: + - '"702B5816F1C018015E645BAEF6EC4F83701C9FDFB362D1E30A83D34681E618A4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 76cd7c82-410c-4d5f-a5ef-c6edcbb77d40 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2126&$top=283&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2128&$top=281&$maxpagesize=2"}' + headers: + apim-request-id: + - b558e948-7f46-4d3f-95c9-64f1e9d60cd6 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:43 GMT + etag: + - '"1900E3FF2C6429951C7B3624FBA13E8931DE139606529B5C0F42EF70A50004C0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b558e948-7f46-4d3f-95c9-64f1e9d60cd6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2128&$top=281&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2130&$top=279&$maxpagesize=2"}' + headers: + apim-request-id: + - 5ddb31a6-ab76-4aaa-b694-088522f4cbcd + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:43 GMT + etag: + - '"26E7DFE200228F7E8850552C70BA1C759DA114A003130977FD13D36D01009EA9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5ddb31a6-ab76-4aaa-b694-088522f4cbcd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2130&$top=279&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2132&$top=277&$maxpagesize=2"}' + headers: + apim-request-id: + - e42f07c4-5034-4e3a-9e9e-e4eb9f99016c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:43 GMT + etag: + - '"5694008F61EEF6E3E717C2BCFFF4B5D797B0182BB48A50BBA450239A115825BB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e42f07c4-5034-4e3a-9e9e-e4eb9f99016c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2132&$top=277&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2134&$top=275&$maxpagesize=2"}' + headers: + apim-request-id: + - 27fbaa65-2af9-4eb3-8790-963206910a79 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:43 GMT + etag: + - '"46DC617001E04A3380801F529B5ACE55A9BF3C1B32D75263A0A7D0C34984AFF3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 27fbaa65-2af9-4eb3-8790-963206910a79 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2134&$top=275&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2136&$top=273&$maxpagesize=2"}' + headers: + apim-request-id: + - b0f2c4e6-bfce-4059-96d7-15b456b00f8c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:44 GMT + etag: + - '"3968003A8142BE4C14286A80CA716AAA886992D650BAC6A1381F0153DD254BF0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b0f2c4e6-bfce-4059-96d7-15b456b00f8c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2136&$top=273&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2138&$top=271&$maxpagesize=2"}' + headers: + apim-request-id: + - 9d0562bf-fa8c-4885-9aa4-391dbdda8b02 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:44 GMT + etag: + - '"E7233B460E878E46A8A926853418C6D6A6D638F699AF2B3766AD2F6B1D7788C3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9d0562bf-fa8c-4885-9aa4-391dbdda8b02 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2138&$top=271&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2140&$top=269&$maxpagesize=2"}' + headers: + apim-request-id: + - e30d7880-0b33-4765-b0c3-08e72f651915 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:44 GMT + etag: + - '"37E6AE75B458EDCBD62702418F3926D6B4DDDA22A1D39484F03759D540A4B961"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e30d7880-0b33-4765-b0c3-08e72f651915 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2140&$top=269&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2142&$top=267&$maxpagesize=2"}' + headers: + apim-request-id: + - a0c22de1-42d8-49f3-bf4f-21ab2fed9d6e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:44 GMT + etag: + - '"997699E1C90D4D715FBA9A5BE7C1C1C05A20F34E425B58D43253ECC22A79DCA1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a0c22de1-42d8-49f3-bf4f-21ab2fed9d6e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2142&$top=267&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2144&$top=265&$maxpagesize=2"}' + headers: + apim-request-id: + - b70196e0-0d8c-4cbf-ab2e-f39834a733ea + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:44 GMT + etag: + - '"D7A0D8EC26346877B48ACFCDB002DF4ED91645D9045CC0695E7A94F535B58EF0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b70196e0-0d8c-4cbf-ab2e-f39834a733ea + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2144&$top=265&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2146&$top=263&$maxpagesize=2"}' + headers: + apim-request-id: + - 1034c62c-107f-4918-8ebe-f5b0927f0020 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:45 GMT + etag: + - '"DEF9CF44280428AC233E9443F1B6255DDB025D86244CAE192C406E93C0F6FD9E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1034c62c-107f-4918-8ebe-f5b0927f0020 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2146&$top=263&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2148&$top=261&$maxpagesize=2"}' + headers: + apim-request-id: + - 2e998925-ad2b-4370-8381-60d7ee516a01 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:45 GMT + etag: + - '"447B13755B5030B0F3BE58493F96016BEDD39618992B3867B08E19ADFF8AAF84"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2e998925-ad2b-4370-8381-60d7ee516a01 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2148&$top=261&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=259&$maxpagesize=2"}' + headers: + apim-request-id: + - d926aa08-f622-4366-8549-e516b6afcdc9 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:45 GMT + etag: + - '"71183416FE326B35B5445D8CAFB56EE2CAB5B185F3F861140C8BE2499FB9CF8A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d926aa08-f622-4366-8549-e516b6afcdc9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=259&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2152&$top=257&$maxpagesize=2"}' + headers: + apim-request-id: + - fd825be4-c5d5-4c23-bf98-54904e2363b3 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:45 GMT + etag: + - '"ACD6A44AEEDD08FEA1C279D62F7E40924092A96C77C327ADA0B4A3A4072265CB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fd825be4-c5d5-4c23-bf98-54904e2363b3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2152&$top=257&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2154&$top=255&$maxpagesize=2"}' + headers: + apim-request-id: + - 11847e8f-7c00-41d0-86d1-b5c2eeecd153 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:45 GMT + etag: + - '"4D8062164C17DCE616D7788BC054034776E3A39599DF05A8242B64828D2F23A1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 11847e8f-7c00-41d0-86d1-b5c2eeecd153 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2154&$top=255&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2156&$top=253&$maxpagesize=2"}' + headers: + apim-request-id: + - 26d2fa5f-863c-4ab1-93ac-2b73d79c0cf3 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:46 GMT + etag: + - '"BA5C1B591F152BB3C5B1E652CD778196CA694239A65B0DB6476E371DF6940E92"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 26d2fa5f-863c-4ab1-93ac-2b73d79c0cf3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2156&$top=253&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2158&$top=251&$maxpagesize=2"}' + headers: + apim-request-id: + - 00ca6391-566c-434a-bdab-ec6ff4f5381d + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:46 GMT + etag: + - '"EF1724B2C1763B12C47111B68790FA034E6C144AA4430C15D4C2A14A01A17E7A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 00ca6391-566c-434a-bdab-ec6ff4f5381d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2158&$top=251&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2160&$top=249&$maxpagesize=2"}' + headers: + apim-request-id: + - f0e7ba03-4a33-4408-b41a-10ae75be5f05 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:46 GMT + etag: + - '"C53C2462FFFAD457EDB8C5EE634AFF2FD5EE8BB55A92634ABBA636AC2BB963D0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f0e7ba03-4a33-4408-b41a-10ae75be5f05 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2160&$top=249&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2162&$top=247&$maxpagesize=2"}' + headers: + apim-request-id: + - b835c1a0-452b-4451-a21d-1175e1d05d46 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:46 GMT + etag: + - '"2BBB051D6F7C98C97E9155058BCCDE705DB8D0CCD76323553EDCD809671D9AC2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b835c1a0-452b-4451-a21d-1175e1d05d46 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2162&$top=247&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2164&$top=245&$maxpagesize=2"}' + headers: + apim-request-id: + - 15ac63fd-c3a7-4349-9a96-d4bb0a6e516f + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:46 GMT + etag: + - '"BFD27D6053AB0FAB92C6EA1576232721153C430BE02678463F9F1B49EF70843B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 15ac63fd-c3a7-4349-9a96-d4bb0a6e516f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2164&$top=245&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2166&$top=243&$maxpagesize=2"}' + headers: + apim-request-id: + - 337e1e49-6a88-4dbe-a577-b6408e4012cd + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:47 GMT + etag: + - '"FD68F58DB1C3C56496AFBAE6B8505006263C5300956A8B86A6DAF21FB4236B9E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 337e1e49-6a88-4dbe-a577-b6408e4012cd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2166&$top=243&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2168&$top=241&$maxpagesize=2"}' + headers: + apim-request-id: + - 5c866780-87f8-49d5-9826-20ddab42f7d5 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:47 GMT + etag: + - '"D1B6EBC8995FCD80C1182911B8DBFB455CE194DC646B56787D95C90D92E39B24"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5c866780-87f8-49d5-9826-20ddab42f7d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2168&$top=241&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2170&$top=239&$maxpagesize=2"}' + headers: + apim-request-id: + - d48cce15-b0d7-4714-8180-c0fe210fd214 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:47 GMT + etag: + - '"503A57A1B95E32A20A48383F8E4A9C011B4D7484575D4256DEC8EF5B5A4A3E44"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d48cce15-b0d7-4714-8180-c0fe210fd214 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2170&$top=239&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2172&$top=237&$maxpagesize=2"}' + headers: + apim-request-id: + - 0305f456-351f-462f-adb4-c1fa78099661 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:47 GMT + etag: + - '"F4F28163BCEAB4BE51C3F962A7E1BF615CD36EF91B6885956CA2B2D8B43B8564"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0305f456-351f-462f-adb4-c1fa78099661 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2172&$top=237&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2174&$top=235&$maxpagesize=2"}' + headers: + apim-request-id: + - 40d3b5d2-0d89-4992-86c2-fac4fc419fbe + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:47 GMT + etag: + - '"54E8C24FED0F15F0BFEBA7816F4F9F5B35E6C5050BBF59AA4BF198E01B7B6C47"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 40d3b5d2-0d89-4992-86c2-fac4fc419fbe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2174&$top=235&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2176&$top=233&$maxpagesize=2"}' + headers: + apim-request-id: + - a3191bed-387d-410d-bae6-d9cc75dc3829 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:48 GMT + etag: + - '"880B31C58B4298FF090191012FAA4CAA9BAE01CBBEAD0AD0FD706C355BF325C3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a3191bed-387d-410d-bae6-d9cc75dc3829 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2176&$top=233&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2178&$top=231&$maxpagesize=2"}' + headers: + apim-request-id: + - 11c41779-9c00-447c-9dd1-28694494df81 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:48 GMT + etag: + - '"A577E45E6E45165E9E7E71C4ADB2A9AC9EE71F18C9D7CBC74C5C60C98D93E682"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 11c41779-9c00-447c-9dd1-28694494df81 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2178&$top=231&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2180&$top=229&$maxpagesize=2"}' + headers: + apim-request-id: + - 5dc40a27-9bf1-4d29-a53e-38a72c5cc4c5 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:48 GMT + etag: + - '"A8ECCA0B6D254B44D97E756160B2CE415FCD894762491ED6A783B454D291A1A0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5dc40a27-9bf1-4d29-a53e-38a72c5cc4c5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2180&$top=229&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2182&$top=227&$maxpagesize=2"}' + headers: + apim-request-id: + - 11969d28-2cbb-4d59-99cc-05df0905e6fc + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:48 GMT + etag: + - '"B0A3731BAFB8C876319B0001CAD39736E9AA4F6DE89053B4EA4649476C695B93"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 11969d28-2cbb-4d59-99cc-05df0905e6fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2182&$top=227&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2184&$top=225&$maxpagesize=2"}' + headers: + apim-request-id: + - 26db611c-1ca7-4121-af1c-2c53cd43e6d1 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:48 GMT + etag: + - '"1E5650E388FC8FE1FAD2938DBA775C15F524DFC22E93042310BEC20D13A7BF21"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 26db611c-1ca7-4121-af1c-2c53cd43e6d1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2184&$top=225&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2186&$top=223&$maxpagesize=2"}' + headers: + apim-request-id: + - f6b7b09a-b12f-49e6-8be1-3fefa2b37a97 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:49 GMT + etag: + - '"D9B7A5DEE61D346A592B67009BB21A317C6311937E6831D893DEECCEE4DE616F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f6b7b09a-b12f-49e6-8be1-3fefa2b37a97 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2186&$top=223&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2188&$top=221&$maxpagesize=2"}' + headers: + apim-request-id: + - d1042cee-0cb3-4cb9-ba93-9390353d4a0e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:49 GMT + etag: + - '"D6F50393594D94CCD94C4B2A7B048FC04BA24B683BC99F13E3CE2688AD3D8153"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d1042cee-0cb3-4cb9-ba93-9390353d4a0e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2188&$top=221&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2190&$top=219&$maxpagesize=2"}' + headers: + apim-request-id: + - f117a571-334f-4757-9de1-ab43ae1f6720 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:49 GMT + etag: + - '"105F5C56323A5D5706995D64B14B7FFBB6D0D856216AC08900108E8171C1C708"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f117a571-334f-4757-9de1-ab43ae1f6720 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2190&$top=219&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2192&$top=217&$maxpagesize=2"}' + headers: + apim-request-id: + - bc21112a-5863-447f-ba44-9de261ae747c + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:49 GMT + etag: + - '"B6207D098FE4FE87760CAB932A61F73EC7D3AEE7424711E7EF68D882F20017CB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bc21112a-5863-447f-ba44-9de261ae747c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2192&$top=217&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2194&$top=215&$maxpagesize=2"}' + headers: + apim-request-id: + - 10d31dbe-8c95-449c-bbe6-dea919036954 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:49 GMT + etag: + - '"FCDDBBBB00FE62D088BD553B92CCA0CACD9436ED61C793647E96EB63EAE462D8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 10d31dbe-8c95-449c-bbe6-dea919036954 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2194&$top=215&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2196&$top=213&$maxpagesize=2"}' + headers: + apim-request-id: + - a44af602-0f3f-428b-b6f9-a9903528c1c2 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:50 GMT + etag: + - '"C77A4447646D4091C43BEFD14E5AC4D450C461FFE40E906419DB3E091E13A5AB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a44af602-0f3f-428b-b6f9-a9903528c1c2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2196&$top=213&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2198&$top=211&$maxpagesize=2"}' + headers: + apim-request-id: + - 2a525db1-0069-418f-8e22-5521a3130117 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:50 GMT + etag: + - '"D43520B6EF3DCC4726B6201538D2817737B1847AE9605CCA67C434D50DD7D913"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2a525db1-0069-418f-8e22-5521a3130117 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2198&$top=211&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=209&$maxpagesize=2"}' + headers: + apim-request-id: + - c8370a33-42bf-4191-8a69-fcfac22ff893 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:50 GMT + etag: + - '"D4000C9F17550E6135CD96B62F86EF5B8830379868773E210761932AF6B8BC93"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c8370a33-42bf-4191-8a69-fcfac22ff893 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=209&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2202&$top=207&$maxpagesize=2"}' + headers: + apim-request-id: + - 22e02278-ab81-4bb4-95ea-d55b883865dd + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:50 GMT + etag: + - '"E1516AD2E896FDC1D13F8ABD9AA25F726E76F52F5126E3D460D4FD07695F0F7E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 22e02278-ab81-4bb4-95ea-d55b883865dd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2202&$top=207&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2204&$top=205&$maxpagesize=2"}' + headers: + apim-request-id: + - afa4b688-2bf8-4eb6-b796-ac49efcd105c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:50 GMT + etag: + - '"CD634AF80D4E7FC7EE1E0AB33FD8D132E31B073D788C760A5C9120BEC78B365F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - afa4b688-2bf8-4eb6-b796-ac49efcd105c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2204&$top=205&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2206&$top=203&$maxpagesize=2"}' + headers: + apim-request-id: + - 17896613-fa5d-4de4-ae9f-d434f25d5402 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:50 GMT + etag: + - '"8A5B9A14047A67F672848D6D774A364FC2658F0CAA047EC9BC66A8BBA402B7DD"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 17896613-fa5d-4de4-ae9f-d434f25d5402 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2206&$top=203&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2208&$top=201&$maxpagesize=2"}' + headers: + apim-request-id: + - f4351848-3c3d-4d60-887e-4bacb9e28a2e + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:51 GMT + etag: + - '"F39EAC5593912E712CCC54F3E0FCA53FCADC4C4921F92780C40560F4A8834574"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f4351848-3c3d-4d60-887e-4bacb9e28a2e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2208&$top=201&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2210&$top=199&$maxpagesize=2"}' + headers: + apim-request-id: + - 95952ab2-9cd7-438b-91e3-4d2afe069964 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:51 GMT + etag: + - '"5454A6E095CFCC905638804130AEA752C17C40E2273B3C017D7F2FF6C0E1E5B3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 95952ab2-9cd7-438b-91e3-4d2afe069964 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2210&$top=199&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2212&$top=197&$maxpagesize=2"}' + headers: + apim-request-id: + - 4d12b2b6-9588-4f88-bfd5-fde2fcad8117 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:51 GMT + etag: + - '"B386D6277C8393B9CC87999ACC5430C26A734E800F6094B1DF610541B00231C0"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4d12b2b6-9588-4f88-bfd5-fde2fcad8117 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2212&$top=197&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2214&$top=195&$maxpagesize=2"}' + headers: + apim-request-id: + - 28e50589-9e4d-433d-9867-9b50f1228d59 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:51 GMT + etag: + - '"29E7B35269F6B557E94DA2899BC744A11265B5B564B549C08A86948CE5C7BA16"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 28e50589-9e4d-433d-9867-9b50f1228d59 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2214&$top=195&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2216&$top=193&$maxpagesize=2"}' + headers: + apim-request-id: + - ebc996af-a718-44f6-919a-d213e0a10fd3 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:51 GMT + etag: + - '"CB6D996C8A33985C1C5EE6D66748956C03BE87456DBDE5F8A8B1019AE45DEEBD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ebc996af-a718-44f6-919a-d213e0a10fd3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2216&$top=193&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2218&$top=191&$maxpagesize=2"}' + headers: + apim-request-id: + - b850daf1-df24-49bc-bd80-bc91a4df0f0c + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:52 GMT + etag: + - '"D224031F71BA15E082D31F6ED5ECE43267E7A627A52D277AB25BAC8DDE908846"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b850daf1-df24-49bc-bd80-bc91a4df0f0c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2218&$top=191&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2220&$top=189&$maxpagesize=2"}' + headers: + apim-request-id: + - 46bd28ba-34ef-47d5-b292-83d57673d561 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:52 GMT + etag: + - '"EC47F1BB32B9E5C368853EFE3E1EEB63E8CBAEAD5FDEF7AFD143617ACCDFCC9F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 46bd28ba-34ef-47d5-b292-83d57673d561 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2220&$top=189&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2222&$top=187&$maxpagesize=2"}' + headers: + apim-request-id: + - 0e116288-68c1-4c87-a1b6-9dc0bc9b204e + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:52 GMT + etag: + - '"77B5B4BE4F3023E9FFFA5E0FB9612002833DF6C3F5F39CC65FF4957B8F124A4D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0e116288-68c1-4c87-a1b6-9dc0bc9b204e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2222&$top=187&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2224&$top=185&$maxpagesize=2"}' + headers: + apim-request-id: + - 9d085d51-dd24-4447-80bb-20d0f0363e25 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:52 GMT + etag: + - '"5B00335C0025AFB59B8319F918D27A448443A3C8F87C681EDE2816921093902F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9d085d51-dd24-4447-80bb-20d0f0363e25 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2224&$top=185&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2226&$top=183&$maxpagesize=2"}' + headers: + apim-request-id: + - b8b69c7b-51d0-4413-96be-b607055e3693 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:52 GMT + etag: + - '"BD1896246714E34F151056010BC2926C98C08CC5AECD888D0EFDE8FD10B6D12B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b8b69c7b-51d0-4413-96be-b607055e3693 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2226&$top=183&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2228&$top=181&$maxpagesize=2"}' + headers: + apim-request-id: + - 4868c550-96d9-4256-910c-dc9418c05605 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:53 GMT + etag: + - '"684A0614CBDDBC0EF4B51E07F66803DC774E7E7DAF29C2CCD418DE911C24A26B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4868c550-96d9-4256-910c-dc9418c05605 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2228&$top=181&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2230&$top=179&$maxpagesize=2"}' + headers: + apim-request-id: + - b4b07f83-2084-4f10-9675-c2a71a8e6333 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:53 GMT + etag: + - '"0432578DD269BC033C414E4E0366DFC73BBFACD2825D05264FADDE4CCB1FE83C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b4b07f83-2084-4f10-9675-c2a71a8e6333 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2230&$top=179&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2232&$top=177&$maxpagesize=2"}' + headers: + apim-request-id: + - e5276991-b712-4266-a59d-173bc12d4117 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:53 GMT + etag: + - '"64D6C60252A649239481565EF3953C45AA6DF0B7FB06BFC9B4A39F3BCDA26B22"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5276991-b712-4266-a59d-173bc12d4117 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2232&$top=177&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2234&$top=175&$maxpagesize=2"}' + headers: + apim-request-id: + - 76cc175b-fa30-460d-ac6d-0cc8f0f9fab1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:53 GMT + etag: + - '"7050F0BC5BC930623CC431E7A9EEE0EEA94017653B4FD72681A3BFD94557AB06"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 76cc175b-fa30-460d-ac6d-0cc8f0f9fab1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2234&$top=175&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2236&$top=173&$maxpagesize=2"}' + headers: + apim-request-id: + - e5442be0-39d8-4ccb-9a66-2cbc3fda69e1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:53 GMT + etag: + - '"8712C9DF8E4D362F9A466BFC31166C5471EF8215C38CA0DABF8B7F2DF6CAC190"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e5442be0-39d8-4ccb-9a66-2cbc3fda69e1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2236&$top=173&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2238&$top=171&$maxpagesize=2"}' + headers: + apim-request-id: + - 2918a49d-5610-41ef-853a-438a50bfd48a + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:54 GMT + etag: + - '"B0F834E68CF6A23C15D2A33045136D1C4DB8C41A06C157417A0480FE83BC355E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2918a49d-5610-41ef-853a-438a50bfd48a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2238&$top=171&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2240&$top=169&$maxpagesize=2"}' + headers: + apim-request-id: + - 4e5ba6a5-272c-43a9-a2c8-ba2527242570 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:54 GMT + etag: + - '"677CF2D97B77A087C6D9AEAEDDFFA67781E4D6BFF6BEA3A247960A0E670228D6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4e5ba6a5-272c-43a9-a2c8-ba2527242570 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2240&$top=169&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2242&$top=167&$maxpagesize=2"}' + headers: + apim-request-id: + - 3b392556-4cdc-4041-9566-537745c1cb63 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:54 GMT + etag: + - '"8BE2F6BB89CE865ACD57D601BC4EE332929F02FB235A50415867F775E6769388"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3b392556-4cdc-4041-9566-537745c1cb63 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2242&$top=167&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2244&$top=165&$maxpagesize=2"}' + headers: + apim-request-id: + - fe8cad81-f5a3-4c5c-bac3-e84590ee3993 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:54 GMT + etag: + - '"4619D1C6731A66AF2E833BBA2802A9DCB65BC18553666B354C80930CA88425F7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fe8cad81-f5a3-4c5c-bac3-e84590ee3993 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2244&$top=165&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2246&$top=163&$maxpagesize=2"}' + headers: + apim-request-id: + - a71ec91e-2c42-4a03-82a8-0a1264dcb837 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:54 GMT + etag: + - '"1D3B9DC451BBCA8D832E8D9EB21DD3189F98161AF697166008A4EA5AF82F13B3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a71ec91e-2c42-4a03-82a8-0a1264dcb837 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2246&$top=163&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2248&$top=161&$maxpagesize=2"}' + headers: + apim-request-id: + - 14074c6c-fe0f-4ce4-8b6f-a82c840e0727 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:55 GMT + etag: + - '"1EB917C3F7759CFDDB6F8265C13E6DF955ECF1775A18D8A8259B36574BCD3F56"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 14074c6c-fe0f-4ce4-8b6f-a82c840e0727 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2248&$top=161&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=159&$maxpagesize=2"}' + headers: + apim-request-id: + - 9624cb76-c346-442e-b00c-8f39c2cdc335 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:55 GMT + etag: + - '"A4AB1946F93B711F57BDEF569BFC7A2609C47C149D0D1CD0F7BCFCB20E2BB91C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9624cb76-c346-442e-b00c-8f39c2cdc335 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=159&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2252&$top=157&$maxpagesize=2"}' + headers: + apim-request-id: + - 627e30fb-0917-4c0c-893a-629d92c49a09 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:55 GMT + etag: + - '"1224B69AAF589E219124832FE61055D56693EE2758138B76313A38C90FFBA896"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 627e30fb-0917-4c0c-893a-629d92c49a09 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2252&$top=157&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2254&$top=155&$maxpagesize=2"}' + headers: + apim-request-id: + - 23b13fde-987c-4657-b041-497dc67718b4 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:55 GMT + etag: + - '"82887A70614C2F1307243FAC2E12CFBA83B29B4258F70E31DE41EDA27FCEA0F6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 23b13fde-987c-4657-b041-497dc67718b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2254&$top=155&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2256&$top=153&$maxpagesize=2"}' + headers: + apim-request-id: + - 027a3dfe-bdcb-4ba0-8058-ebac26d659f9 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:55 GMT + etag: + - '"2792BF4FE9FF400BD93CC6101B2785BA5B35C6E14DC47C79C3C409CA38A34081"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 027a3dfe-bdcb-4ba0-8058-ebac26d659f9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2256&$top=153&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2258&$top=151&$maxpagesize=2"}' + headers: + apim-request-id: + - e799a9be-ba2b-4da3-b5a5-710c4525d214 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:55 GMT + etag: + - '"ACAE900EAAA9DA8E70181F828AFB817222112CFF2392C57B2000BD29F6F170E5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e799a9be-ba2b-4da3-b5a5-710c4525d214 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2258&$top=151&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2260&$top=149&$maxpagesize=2"}' + headers: + apim-request-id: + - b7218b36-7753-41af-9219-239512b94158 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:56 GMT + etag: + - '"BBD2504C8AA549879C2F0FACD4B5BB5B2054A418484B909E9E267A2AC7B7A825"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b7218b36-7753-41af-9219-239512b94158 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2260&$top=149&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2262&$top=147&$maxpagesize=2"}' + headers: + apim-request-id: + - 2b1dd0c8-9bcc-4fbc-9421-63d491ce00f1 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:56 GMT + etag: + - '"6C785CAE235A18293813EDC66BCA6048C5933454DF5A78A62679C2D86C5F7509"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2b1dd0c8-9bcc-4fbc-9421-63d491ce00f1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2262&$top=147&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2264&$top=145&$maxpagesize=2"}' + headers: + apim-request-id: + - 0bf8bbfc-dbb9-49e9-ac02-fcaa7fb8036f + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:56 GMT + etag: + - '"613DE18FA8F8D51CF10B0D3B063A44C21CE846A0B1B471C805B5244E0BBEC8BE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0bf8bbfc-dbb9-49e9-ac02-fcaa7fb8036f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2264&$top=145&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2266&$top=143&$maxpagesize=2"}' + headers: + apim-request-id: + - 2cdbccce-0310-46d2-9383-be5f6c0829db + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:56 GMT + etag: + - '"16A9D869C32F09A405A131D251E8CE6098BE1832A02CCA437E853F89EBB0AC1A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2cdbccce-0310-46d2-9383-be5f6c0829db + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2266&$top=143&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2268&$top=141&$maxpagesize=2"}' + headers: + apim-request-id: + - da2a1683-748f-4b04-bf22-a1b908aad1fd + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:57 GMT + etag: + - '"CDC04392FBDF1370AF133EBFF3F663AD01E4E8A3D3342D3CA11EBE8946709CE2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - da2a1683-748f-4b04-bf22-a1b908aad1fd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2268&$top=141&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2270&$top=139&$maxpagesize=2"}' + headers: + apim-request-id: + - c6c1d0bd-b34f-4a6c-9892-7bd16fc8ae8b + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:57 GMT + etag: + - '"1A832CBA08872EE096A4391FA8B1925FA2CD3B1B4B5BFFCFAE18C497D0EFC867"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c6c1d0bd-b34f-4a6c-9892-7bd16fc8ae8b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2270&$top=139&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2272&$top=137&$maxpagesize=2"}' + headers: + apim-request-id: + - 9844b999-9519-4c08-b906-eea9dcb415c0 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:57 GMT + etag: + - '"6936D05A1295F01B9A62EA2E34F98B1E61EB4192ED60D32FCA4C2BB72860A794"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9844b999-9519-4c08-b906-eea9dcb415c0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2272&$top=137&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2274&$top=135&$maxpagesize=2"}' + headers: + apim-request-id: + - cd2f88d5-4ac7-420b-9614-3c4b544291f3 + cache-control: + - public,max-age=1 + content-length: + - '1021' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:57 GMT + etag: + - '"791C53415B27141E60CE828D9DEC804194667314042460B7C0603CB0279AD677"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cd2f88d5-4ac7-420b-9614-3c4b544291f3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2274&$top=135&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2276&$top=133&$maxpagesize=2"}' + headers: + apim-request-id: + - a18981c3-65fc-4bfb-9c2a-1c14e1fd6b43 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:57 GMT + etag: + - '"5A06B0B7F818C6A1028EB084F8DB9E32158F4AA71BEB7AD59FB5BD9F975DCE96"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a18981c3-65fc-4bfb-9c2a-1c14e1fd6b43 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2276&$top=133&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2278&$top=131&$maxpagesize=2"}' + headers: + apim-request-id: + - d0c018f9-227d-48a3-94fc-57ce7bb423b1 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:57 GMT + etag: + - '"E80653267F9F64636E222317E35791AED01D1435E57621BA2E9DE44A7F79A4E6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d0c018f9-227d-48a3-94fc-57ce7bb423b1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2278&$top=131&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2280&$top=129&$maxpagesize=2"}' + headers: + apim-request-id: + - 177cd2f1-2952-45fd-98bd-4f6a603dd0fc + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:58 GMT + etag: + - '"C96514105D4D77D1CDBF623C843AE190597FF73526995395F8017C6D10B1A798"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 177cd2f1-2952-45fd-98bd-4f6a603dd0fc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2280&$top=129&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2282&$top=127&$maxpagesize=2"}' + headers: + apim-request-id: + - bb042e7b-4ca5-4cb1-b3da-c3fdb94a5afd + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:58 GMT + etag: + - '"EC2816DA04261C93207F0452D6C96D0D88938F3C6F477EF4D1E9DE5FD82AECE3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bb042e7b-4ca5-4cb1-b3da-c3fdb94a5afd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2282&$top=127&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2284&$top=125&$maxpagesize=2"}' + headers: + apim-request-id: + - 95c1cc6f-bb65-4b57-a3a6-76b76319129e + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:58 GMT + etag: + - '"7DD832B47C20034330948B762C002F8672CFDDF43256EDFE20DF853CCA525170"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 95c1cc6f-bb65-4b57-a3a6-76b76319129e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2284&$top=125&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2286&$top=123&$maxpagesize=2"}' + headers: + apim-request-id: + - 3347e8b1-14f4-4288-97f4-1621dd487a62 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:58 GMT + etag: + - '"D1EC37976B8EEEAF2C602189FC9B54EC0C6DD1CE7E228E733A61A45A9510FE7C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3347e8b1-14f4-4288-97f4-1621dd487a62 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2286&$top=123&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2288&$top=121&$maxpagesize=2"}' + headers: + apim-request-id: + - 2cf19eb5-9650-46b0-8501-7f25b30abe77 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:58 GMT + etag: + - '"BA4B154245FA0941BBF726796D1521FBE532965206CDA210E0BDE2E06C047FC2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2cf19eb5-9650-46b0-8501-7f25b30abe77 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2288&$top=121&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2290&$top=119&$maxpagesize=2"}' + headers: + apim-request-id: + - 69f429dd-8fda-4bb3-95db-99e32c0bf795 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:59 GMT + etag: + - '"DC00D79B4866E8B8EC820E9B45FA954CFFD70A100661E017F4A8419C371DF73E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 69f429dd-8fda-4bb3-95db-99e32c0bf795 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2290&$top=119&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2292&$top=117&$maxpagesize=2"}' + headers: + apim-request-id: + - 9d79fe86-0618-452d-9c9b-15eb85a90a91 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:59 GMT + etag: + - '"1FD8E5697ACC23560DFF33496F3EBD3CE56CF029E0B32A941D040CA2272F7783"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9d79fe86-0618-452d-9c9b-15eb85a90a91 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2292&$top=117&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2294&$top=115&$maxpagesize=2"}' + headers: + apim-request-id: + - bbc25b1b-8440-4cb8-94b0-6785335ea34a + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:59 GMT + etag: + - '"C13C253E73CEB8890A3B15B95564DF72F4F95DF24DE2FC22A2DB0B1028DA91E8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bbc25b1b-8440-4cb8-94b0-6785335ea34a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2294&$top=115&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2296&$top=113&$maxpagesize=2"}' + headers: + apim-request-id: + - 569af11a-cd6c-4eb7-ae88-441c12a607f4 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:59 GMT + etag: + - '"572AD71F5601713ACEA3D35BEBB54CCE37190CF1522645390958D25206432551"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 569af11a-cd6c-4eb7-ae88-441c12a607f4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2296&$top=113&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2298&$top=111&$maxpagesize=2"}' + headers: + apim-request-id: + - 3c57d524-6ece-4ce5-be94-caa411c32591 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:53:59 GMT + etag: + - '"F7261EF5FD38A9E15492F2C2B016FCD8B2E2B9CFD51A5AA9B738924181BC6533"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3c57d524-6ece-4ce5-be94-caa411c32591 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2298&$top=111&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=109&$maxpagesize=2"}' + headers: + apim-request-id: + - 64b8a7bf-2be8-41d0-99a8-69442d44918d + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:00 GMT + etag: + - '"059DF3C4375862001D52230BF787B717019BF87C53FD8F3D17CC5B0545CC2786"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 64b8a7bf-2be8-41d0-99a8-69442d44918d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=109&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2302&$top=107&$maxpagesize=2"}' + headers: + apim-request-id: + - 11a56c94-9319-486a-804a-bb9fb0bce774 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:00 GMT + etag: + - '"2B1A1587008697DDD361CB3D0ECA872575C06DB1DE3FC483CB1ABFE7788518AA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 11a56c94-9319-486a-804a-bb9fb0bce774 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2302&$top=107&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2304&$top=105&$maxpagesize=2"}' + headers: + apim-request-id: + - 9b54de58-ed9a-4e53-b894-25eeb45ddedd + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:00 GMT + etag: + - '"F7DE6C001AE0A2E8478045FB2C9A51AE8C8424BCB653B14DD4BAC2C7EE78EFFD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9b54de58-ed9a-4e53-b894-25eeb45ddedd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2304&$top=105&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2306&$top=103&$maxpagesize=2"}' + headers: + apim-request-id: + - 1e2a16ef-5a90-42f8-a35f-07b9930b8137 + cache-control: + - public,max-age=1 + content-length: + - '747' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:00 GMT + etag: + - '"58A25732461F471972E8DB2B38CB02C3E8E2E01B6F510F0B49FCEF678B3952DB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1e2a16ef-5a90-42f8-a35f-07b9930b8137 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2306&$top=103&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2308&$top=101&$maxpagesize=2"}' + headers: + apim-request-id: + - 1309efa0-9b11-47bc-95be-e0273267ba68 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:00 GMT + etag: + - '"39090BF81D8E4066DB3E58BD8911343497FD1F0CB1230DCAA881DC709F8CD9D6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1309efa0-9b11-47bc-95be-e0273267ba68 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2308&$top=101&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2310&$top=99&$maxpagesize=2"}' + headers: + apim-request-id: + - ba532067-354c-46e8-9e29-e7e3876a9a09 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:01 GMT + etag: + - '"2B1BFFCB0A2A79A4E1D2E0365D59CD7A9E83371871B561655155A542C86C1A5D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ba532067-354c-46e8-9e29-e7e3876a9a09 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2310&$top=99&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2312&$top=97&$maxpagesize=2"}' + headers: + apim-request-id: + - d2595162-2f3d-40f4-9853-4a7401d70e51 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:01 GMT + etag: + - '"D031F56BE3E321E5BB3FFC88FFF770A1E475F57D08E764F59B30A561D4E22D00"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d2595162-2f3d-40f4-9853-4a7401d70e51 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2312&$top=97&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2314&$top=95&$maxpagesize=2"}' + headers: + apim-request-id: + - d29d577d-f332-42cf-9e5b-87412778a137 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:01 GMT + etag: + - '"4AC7FEAE97917DF1DD881FCE5042F32327B62527B77C1E22DB2E6A80D4C3886A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d29d577d-f332-42cf-9e5b-87412778a137 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2314&$top=95&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2316&$top=93&$maxpagesize=2"}' + headers: + apim-request-id: + - f4987f19-3b4a-4629-920f-490dffb9fe36 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:01 GMT + etag: + - '"9B9F1F4DCF8AD87D3DE781C4D90CC6D3151077CA08FDBF95A602834D9E9D41E8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f4987f19-3b4a-4629-920f-490dffb9fe36 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2316&$top=93&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2318&$top=91&$maxpagesize=2"}' + headers: + apim-request-id: + - 63c117d7-78fd-4c47-beaf-74900bcd4c58 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:01 GMT + etag: + - '"B6FFA08E851F02E0239204DD006093C6E35B504B4F97A5529CB3E3704956280B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 63c117d7-78fd-4c47-beaf-74900bcd4c58 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2318&$top=91&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2320&$top=89&$maxpagesize=2"}' + headers: + apim-request-id: + - 027e05ba-f32f-4e60-8934-468890da39b7 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:02 GMT + etag: + - '"AA92F000D959896A4533C663390B368CDEDD2992D365CF4C840D758F63D10A79"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 027e05ba-f32f-4e60-8934-468890da39b7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2320&$top=89&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2322&$top=87&$maxpagesize=2"}' + headers: + apim-request-id: + - 28819e64-cca2-4b58-b280-ca5b201c0551 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:02 GMT + etag: + - '"130773220213ADB17D71095E48BD073131DBECA18EFC3EA5D9C6DD53124F5AB8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 28819e64-cca2-4b58-b280-ca5b201c0551 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2322&$top=87&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2324&$top=85&$maxpagesize=2"}' + headers: + apim-request-id: + - 94fc683f-15cf-4a31-9850-d1aca6cedd27 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:02 GMT + etag: + - '"364389B00239650E21659C33B84D681309C89128D11DEE501AAD54AD6CC92135"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 94fc683f-15cf-4a31-9850-d1aca6cedd27 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2324&$top=85&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2326&$top=83&$maxpagesize=2"}' + headers: + apim-request-id: + - 6c16cfab-0685-4e23-b0fb-6562bf5581da + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:02 GMT + etag: + - '"F3673D9415B67557FD9C7B4073777F506BEC61D3E667AFD347957205F2A25D9C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6c16cfab-0685-4e23-b0fb-6562bf5581da + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2326&$top=83&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2328&$top=81&$maxpagesize=2"}' + headers: + apim-request-id: + - d0df277a-fa93-4e4d-b320-08e15bdc6ac9 + cache-control: + - public,max-age=1 + content-length: + - '992' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:03 GMT + etag: + - '"DEDCD021EB42CE6F15F85E80DC2AC4D7F5375C1D1749808613C09CE79A336D9A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d0df277a-fa93-4e4d-b320-08e15bdc6ac9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2328&$top=81&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2330&$top=79&$maxpagesize=2"}' + headers: + apim-request-id: + - a028aecb-8d1b-4f68-b1a4-cb19ca3df762 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:03 GMT + etag: + - '"8C009CF2CA6746CE78030FE34411DB558B86377C22376432FAE906A90B31B0C6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a028aecb-8d1b-4f68-b1a4-cb19ca3df762 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2330&$top=79&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2332&$top=77&$maxpagesize=2"}' + headers: + apim-request-id: + - f7e4f1e1-e13a-4d1e-ba63-45fc7bba3a23 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:03 GMT + etag: + - '"9D544A673874E21905E4B5E5AA9A16B18BF416FDA72499870BB3AF1A7B342162"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f7e4f1e1-e13a-4d1e-ba63-45fc7bba3a23 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2332&$top=77&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2334&$top=75&$maxpagesize=2"}' + headers: + apim-request-id: + - 36fd2543-e453-4f03-8848-6ce322770435 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:03 GMT + etag: + - '"CE05095975110C4F6C5A6AB3554D17531016D88D56A6577165EDBC3DE489715F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 36fd2543-e453-4f03-8848-6ce322770435 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2334&$top=75&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2336&$top=73&$maxpagesize=2"}' + headers: + apim-request-id: + - df8f7e53-69ac-4291-9453-eb48379c733e + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:03 GMT + etag: + - '"CD4659669C5B7865AF7B78C364768DFBFACB08FCD28C39F87E15CDCC85F8FEA2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - df8f7e53-69ac-4291-9453-eb48379c733e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2336&$top=73&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2338&$top=71&$maxpagesize=2"}' + headers: + apim-request-id: + - ea6323a0-4af1-4b3d-9142-7a6a30b7eae6 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:03 GMT + etag: + - '"8D7A9D191F8523B9C9110B4B4EB64482C543671546B577B68CE968BC8525D100"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ea6323a0-4af1-4b3d-9142-7a6a30b7eae6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2338&$top=71&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2340&$top=69&$maxpagesize=2"}' + headers: + apim-request-id: + - cc988e8d-081f-41e5-9809-769a208ebbe1 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:04 GMT + etag: + - '"07DD3154CC09BB485F1FE55FA6FEFEA91EAAA83E67EBEAB51FBBB07F81F6D88E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cc988e8d-081f-41e5-9809-769a208ebbe1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2340&$top=69&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2342&$top=67&$maxpagesize=2"}' + headers: + apim-request-id: + - b8080764-12bc-424b-9229-f295a3beca89 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:04 GMT + etag: + - '"13DC934971FA7C031610A067ABC098B01982918F7664A5212333A2AAEA65EFAA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b8080764-12bc-424b-9229-f295a3beca89 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2342&$top=67&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2344&$top=65&$maxpagesize=2"}' + headers: + apim-request-id: + - 75eb16d2-faad-4f35-a131-5126126d15e6 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:04 GMT + etag: + - '"C0A3069F4350BE40A0F5D7E24A97ED96410866A7BF1B1E77F3C5A5E346B5B564"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 75eb16d2-faad-4f35-a131-5126126d15e6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2344&$top=65&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2346&$top=63&$maxpagesize=2"}' + headers: + apim-request-id: + - b56a5dc7-151b-4c2f-9f45-d82fe73a0ec2 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:04 GMT + etag: + - '"16740B04F6482D58CE171994CDE598C035CD829892028957F8329806E589FFA8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b56a5dc7-151b-4c2f-9f45-d82fe73a0ec2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2346&$top=63&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2348&$top=61&$maxpagesize=2"}' + headers: + apim-request-id: + - e4fe2b82-0986-4698-8d44-1fe54d39e030 + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:04 GMT + etag: + - '"283513AABB6F693558472716FE860270497D3C04A6AF13E85C63D2FABA6D0E2F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e4fe2b82-0986-4698-8d44-1fe54d39e030 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2348&$top=61&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=59&$maxpagesize=2"}' + headers: + apim-request-id: + - 72e8a897-318c-44c3-b89a-68ab8a041c46 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:05 GMT + etag: + - '"AD1023BA1A735FF24A526FE907DD645B6DB2E39AEE6E6B6CE5DACD6C4D1A8DC6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 72e8a897-318c-44c3-b89a-68ab8a041c46 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=59&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2352&$top=57&$maxpagesize=2"}' + headers: + apim-request-id: + - a5ef4551-a9ed-4c58-bf50-435c4a393258 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:05 GMT + etag: + - '"0747FBA378F9548FF828B318A12FC251626A0DE7517947843361404452732FB3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a5ef4551-a9ed-4c58-bf50-435c4a393258 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2352&$top=57&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2354&$top=55&$maxpagesize=2"}' + headers: + apim-request-id: + - 84a61e46-042e-49bc-8c43-91a19e00043d + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:05 GMT + etag: + - '"824A794C5EA760FC230BFD50C0959DCD8EAFFD8CFFF0FFA079FD7B646D87533B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 84a61e46-042e-49bc-8c43-91a19e00043d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2354&$top=55&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2356&$top=53&$maxpagesize=2"}' + headers: + apim-request-id: + - 24b1c8ce-2ccf-4553-8947-7020a47d3d56 + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:05 GMT + etag: + - '"FEBC493266262AD48AD2DA25C9378623E46D60F7EA39EC8F58F5709353657E26"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 24b1c8ce-2ccf-4553-8947-7020a47d3d56 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2356&$top=53&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2358&$top=51&$maxpagesize=2"}' + headers: + apim-request-id: + - 57d0bfd8-d1f5-4a72-ae33-1361ad5f63f1 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:05 GMT + etag: + - '"10FD968FE5789A5959D2A9D5739CEAD1FB513247738FD89D39EBF6E751A3B972"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 57d0bfd8-d1f5-4a72-ae33-1361ad5f63f1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2358&$top=51&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2360&$top=49&$maxpagesize=2"}' + headers: + apim-request-id: + - d41e4c1f-1aa3-4170-80f4-7527bf59a9bb + cache-control: + - public,max-age=1 + content-length: + - '744' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:06 GMT + etag: + - '"9CCAC5E6BB9CDFC4087B853A2521710BA097EC3FE73922E97BE15E0FFF176E96"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d41e4c1f-1aa3-4170-80f4-7527bf59a9bb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2360&$top=49&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2362&$top=47&$maxpagesize=2"}' + headers: + apim-request-id: + - 8e82a736-3e78-44b8-a946-2301c084acba + cache-control: + - public,max-age=1 + content-length: + - '745' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:06 GMT + etag: + - '"5C33F1250172C1D8F10C8772607CE2DBAA0E291F757AA6151164B80AE908778B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8e82a736-3e78-44b8-a946-2301c084acba + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2362&$top=47&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2364&$top=45&$maxpagesize=2"}' + headers: + apim-request-id: + - a4e5a974-8cd2-40f7-a812-985b034dd4c4 + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:06 GMT + etag: + - '"9DED9287234E9F3B9FE1E6CB02E224ED9980AC38A0BBAB05A247175834316CC4"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a4e5a974-8cd2-40f7-a812-985b034dd4c4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2364&$top=45&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2366&$top=43&$maxpagesize=2"}' + headers: + apim-request-id: + - eb963008-3895-4e77-a8a0-015afcea7199 + cache-control: + - public,max-age=1 + content-length: + - '1020' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:06 GMT + etag: + - '"C262250183A06600D192BFCA36E1301E0BD389CB67EB6004637580F5FE8BC681"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eb963008-3895-4e77-a8a0-015afcea7199 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2366&$top=43&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2368&$top=41&$maxpagesize=2"}' + headers: + apim-request-id: + - 0a3e66cc-7d50-47ba-8f67-d06746d57673 + cache-control: + - public,max-age=1 + content-length: + - '1020' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:06 GMT + etag: + - '"7502F4535A81E88AC1F2F2EF58264D4B9719DF6291CE59A4C4E7BAF7FB159EE2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0a3e66cc-7d50-47ba-8f67-d06746d57673 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2368&$top=41&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2370&$top=39&$maxpagesize=2"}' + headers: + apim-request-id: + - 559f233c-f3ed-4d18-9124-155eb8c5b681 + cache-control: + - public,max-age=1 + content-length: + - '749' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:07 GMT + etag: + - '"FD29A9F85D6E9614E5954B7791A844C53751805958CA6729E902F570FF8DA1B7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 559f233c-f3ed-4d18-9124-155eb8c5b681 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2370&$top=39&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2372&$top=37&$maxpagesize=2"}' + headers: + apim-request-id: + - 5020e756-5617-4872-8926-e1c3c2aea0e3 + cache-control: + - public,max-age=1 + content-length: + - '1267' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:07 GMT + etag: + - '"2C2A0EA9F1B56C0BB673C47BAFC0AEF62A50C08D227BE34848FBE433F0773EF8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5020e756-5617-4872-8926-e1c3c2aea0e3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2372&$top=37&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2374&$top=35&$maxpagesize=2"}' + headers: + apim-request-id: + - e584e648-80ea-4076-805a-a6a9abca2136 + cache-control: + - public,max-age=1 + content-length: + - '1294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:07 GMT + etag: + - '"EFFB4D0CA20873DF9F09EDF4D777ECAD038BEFECCCF48B70D43F5661772C383F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e584e648-80ea-4076-805a-a6a9abca2136 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2374&$top=35&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2376&$top=33&$maxpagesize=2"}' + headers: + apim-request-id: + - 40d13847-259a-4689-93d0-46df425eae6a + cache-control: + - public,max-age=1 + content-length: + - '1242' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:07 GMT + etag: + - '"C911C2BB974BC8C1C0B191C0E1E349BB90915736B72705A7ADCF3A9F1FFE4509"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 40d13847-259a-4689-93d0-46df425eae6a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2376&$top=33&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2378&$top=31&$maxpagesize=2"}' + headers: + apim-request-id: + - 25694036-05f8-4926-a21c-e13676b86f1d + cache-control: + - public,max-age=1 + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:07 GMT + etag: + - '"60B4D56BCD32DAD1AB0C87AFBFC478EEB4C927A283ED2B2AABFC4630DA8CE1E3"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 25694036-05f8-4926-a21c-e13676b86f1d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2378&$top=31&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2380&$top=29&$maxpagesize=2"}' + headers: + apim-request-id: + - dd823b88-19c6-41fe-a37d-f0cfb0cd804f + cache-control: + - public,max-age=1 + content-length: + - '1241' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:08 GMT + etag: + - '"15D6617CF7C3F8EB39604A3F1C50E50A4A61E2B22BE6E3FE1AF2FF721FF82C05"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - dd823b88-19c6-41fe-a37d-f0cfb0cd804f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2380&$top=29&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2382&$top=27&$maxpagesize=2"}' + headers: + apim-request-id: + - e1900115-6ed1-4db5-bcb6-476dc930c76f + cache-control: + - public,max-age=1 + content-length: + - '1267' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:08 GMT + etag: + - '"B2BE3DC6850B2AFA14C95498BBAA5531ADD56F4131EB8733AFF1035A711B91FE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e1900115-6ed1-4db5-bcb6-476dc930c76f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2382&$top=27&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2384&$top=25&$maxpagesize=2"}' + headers: + apim-request-id: + - 95b6cd5d-169a-4e3d-8ad3-da625d26a357 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:08 GMT + etag: + - '"F55C8D0F74B47AFE6512430DCE945529A9A0B3A0B42006E633C696CBF24C7B8B"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 95b6cd5d-169a-4e3d-8ad3-da625d26a357 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2384&$top=25&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2386&$top=23&$maxpagesize=2"}' + headers: + apim-request-id: + - 5e8fcec9-e5f7-46ef-8084-d77eff0d6ef8 + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:08 GMT + etag: + - '"D23BA39B6FECC1ED71DE8CD124883A228984A0CCE96F537B4D0DB75DD9F4A6E4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5e8fcec9-e5f7-46ef-8084-d77eff0d6ef8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2386&$top=23&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2388&$top=21&$maxpagesize=2"}' + headers: + apim-request-id: + - c768e120-44c3-43bb-9f40-00347761f30b + cache-control: + - public,max-age=1 + content-length: + - '746' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:08 GMT + etag: + - '"A417001610E102730E38294636B6AFE780CDFE369C27730478B5F2E160D83099"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c768e120-44c3-43bb-9f40-00347761f30b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2388&$top=21&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2390&$top=19&$maxpagesize=2"}' + headers: + apim-request-id: + - 9ce8fede-c407-4543-b493-79be878e7e3f + cache-control: + - public,max-age=1 + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:09 GMT + etag: + - '"3C2DEB1A3763495FF1CF6252A884D05CA98D0EE2113E5CD79070BF610BEAA885"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9ce8fede-c407-4543-b493-79be878e7e3f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2390&$top=19&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2392&$top=17&$maxpagesize=2"}' + headers: + apim-request-id: + - 6135d2ed-c21a-44e8-a795-5b523d3546a5 + cache-control: + - public,max-age=1 + content-length: + - '1293' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:09 GMT + etag: + - '"BDC0A8FF0AA09C3C8E42F491E54895EFEDDD7FB858BD5385F3E25E80264C81E2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6135d2ed-c21a-44e8-a795-5b523d3546a5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2392&$top=17&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2394&$top=15&$maxpagesize=2"}' + headers: + apim-request-id: + - 57e662c9-d711-450b-9e62-4786a5a2ba80 + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:09 GMT + etag: + - '"22B3B8CE4257B77DC7B8141CBE7C72435772E956EE8B53D5824FC4A8B52AA12C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 57e662c9-d711-450b-9e62-4786a5a2ba80 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2394&$top=15&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2396&$top=13&$maxpagesize=2"}' + headers: + apim-request-id: + - 94924adc-fc57-4800-9d9a-3fb59418194a + cache-control: + - public,max-age=1 + content-length: + - '752' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:09 GMT + etag: + - '"58D54507CFC1D55A7A29BC722705089826D853FC46DD396D0D8E63C6E8DD565A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 94924adc-fc57-4800-9d9a-3fb59418194a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2396&$top=13&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2398&$top=11&$maxpagesize=2"}' + headers: + apim-request-id: + - 1ee2e77c-0673-41ee-a9e7-81819df76012 + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:09 GMT + etag: + - '"B98A944EC0C7894EFA911F507968F7C95A0B0D10FE6854F14885EEBA0F8F6550"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1ee2e77c-0673-41ee-a9e7-81819df76012 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2398&$top=11&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=9&$maxpagesize=2"}' + headers: + apim-request-id: + - fd4158d4-b453-43ff-88a0-b98f8e04619f + cache-control: + - public,max-age=1 + content-length: + - '1014' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:10 GMT + etag: + - '"32CB8321D0BD1A4BD75D4F28F9FE4718709FCC534A161CD58CB7C74658A240B5"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fd4158d4-b453-43ff-88a0-b98f8e04619f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=9&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2402&$top=7&$maxpagesize=2"}' + headers: + apim-request-id: + - b1150cfc-978d-4249-b645-7631ed47bd1b + cache-control: + - public,max-age=1 + content-length: + - '1022' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:10 GMT + etag: + - '"C94005057FD36FF03C1708EB4BB93C5CECA75FE8F6049047F7E33F79EFCDC439"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b1150cfc-978d-4249-b645-7631ed47bd1b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2402&$top=7&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2404&$top=5&$maxpagesize=2"}' + headers: + apim-request-id: + - ea634137-5589-4a4e-8883-7806a15d4b25 + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:10 GMT + etag: + - '"8D81DEB5B21A3D513DA8D90F65D0E387D21772C72639902B6EA44770365CC88F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ea634137-5589-4a4e-8883-7806a15d4b25 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2404&$top=5&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2406&$top=3&$maxpagesize=2"}' + headers: + apim-request-id: + - cbbba391-5152-466f-8f59-70da3ba18d81 + cache-control: + - public,max-age=1 + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:10 GMT + etag: + - '"5936BF670685AA1F09E28BC176E565075502A316DC42EA597299D169DCC8FA96"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - cbbba391-5152-466f-8f59-70da3ba18d81 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2406&$top=3&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2408&$top=1&$maxpagesize=2"}' + headers: + apim-request-id: + - 3efb2454-e83b-4f7f-97b4-71b7d34c901a + cache-control: + - public,max-age=1 + content-length: + - '1293' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:10 GMT + etag: + - '"362C5EF2D8EED0CA19F8F78F6E0DB417E868D75D48F13CF5EF124DC1E0368FFB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3efb2454-e83b-4f7f-97b4-71b7d34c901a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2408&$top=1&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: + - 1ee04dae-b58e-419a-b1fd-b3e3baa37273 + cache-control: + - public,max-age=1 + content-length: + - '577' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:11 GMT + etag: + - '"4F9726C7084CEDCFB7A5FDD97801A1F62B6767FC48E3DA134B7501268ACBF15E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1ee04dae-b58e-419a-b1fd-b3e3baa37273 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_with_skip.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_with_skip.yaml new file mode 100644 index 000000000000..7bbd9d486cdf --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs.test_list_submitted_jobs_with_skip.yaml @@ -0,0 +1,7420 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:12 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd3d386d4-e127-4b9c-9a44-307bd543c324?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:13 GMT + etag: + - '"0x8D910D11AE552A4"' + last-modified: + - Thu, 06 May 2021 20:54:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:13 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd3d386d4-e127-4b9c-9a44-307bd543c324/d0739e1a-f30e-4db2-b68d-1e5f931f4ca7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:13 GMT + etag: + - '"0x8D910D11B094CFE"' + last-modified: + - Thu, 06 May 2021 20:54:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:13 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd3d386d4-e127-4b9c-9a44-307bd543c324/6ea62af7-e341-47a5-a020-0fceafc8ab11.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:13 GMT + etag: + - '"0x8D910D11B2DF29D"' + last-modified: + - Thu, 06 May 2021 20:54:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:14 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetde13ea2e-9428-4d2f-82eb-8b4c771561e0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:14 GMT + etag: + - '"0x8D910D11BBE7A30"' + last-modified: + - Thu, 06 May 2021 20:54:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd3d386d4-e127-4b9c-9a44-307bd543c324?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetde13ea2e-9428-4d2f-82eb-8b4c771561e0?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - b445640d-1186-4d03-ade5-038579808693 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:15 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/704284cb-eef3-4719-a645-34bb5d3570ec + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b445640d-1186-4d03-ade5-038579808693 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/704284cb-eef3-4719-a645-34bb5d3570ec + response: + body: + string: '{"id":"704284cb-eef3-4719-a645-34bb5d3570ec","createdDateTimeUtc":"2021-05-06T20:54:15.7426458Z","lastActionDateTimeUtc":"2021-05-06T20:54:15.7426462Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - d3d9eaed-c19d-4d75-8334-200dfbba86ac + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:15 GMT + etag: + - '"254108A6F0F101D04A8F7170F49DF343F2C875A9D3CFE54A92A48B307A03BBB5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d3d9eaed-c19d-4d75-8334-200dfbba86ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcacf8ba27-ebe1-4292-a6f6-4bcfe5c48c03?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:16 GMT + etag: + - '"0x8D910D11CD7D600"' + last-modified: + - Thu, 06 May 2021 20:54:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcacf8ba27-ebe1-4292-a6f6-4bcfe5c48c03/6325167d-1aa1-483e-a051-ad7f0d1264bd.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:17 GMT + etag: + - '"0x8D910D11CFB1743"' + last-modified: + - Thu, 06 May 2021 20:54:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcacf8ba27-ebe1-4292-a6f6-4bcfe5c48c03/6f8a2fcd-796a-40b1-813f-caced228a6eb.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:17 GMT + etag: + - '"0x8D910D11D1DE7E5"' + last-modified: + - Thu, 06 May 2021 20:54:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target42fda9a5-dfab-4507-9d00-3e628d1051b5?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:17 GMT + etag: + - '"0x8D910D11DB0C383"' + last-modified: + - Thu, 06 May 2021 20:54:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcacf8ba27-ebe1-4292-a6f6-4bcfe5c48c03?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target42fda9a5-dfab-4507-9d00-3e628d1051b5?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 9fe7fa59-6763-49f3-8e7c-0f48b43497da + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:17 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/3a679740-861b-4230-a782-30c632a0f98a + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9fe7fa59-6763-49f3-8e7c-0f48b43497da + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3a679740-861b-4230-a782-30c632a0f98a + response: + body: + string: '{"id":"3a679740-861b-4230-a782-30c632a0f98a","createdDateTimeUtc":"2021-05-06T20:54:18.389999Z","lastActionDateTimeUtc":"2021-05-06T20:54:18.3899994Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 238b53dc-bcfc-44f9-a10a-5ec8ef0c9716 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:17 GMT + etag: + - '"4F63A381745785CA44A7400A3640A256A1AAE2251FB726FA5C7557C66B0EA465"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 238b53dc-bcfc-44f9-a10a-5ec8ef0c9716 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:18 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src88e2a6e7-fded-4dc6-97b3-69b51f499b2f?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:19 GMT + etag: + - '"0x8D910D11E71FE71"' + last-modified: + - Thu, 06 May 2021 20:54:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src88e2a6e7-fded-4dc6-97b3-69b51f499b2f/85e163df-a103-456e-aea3-dc58841c1b97.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:19 GMT + etag: + - '"0x8D910D11E9514AB"' + last-modified: + - Thu, 06 May 2021 20:54:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src88e2a6e7-fded-4dc6-97b3-69b51f499b2f/b15210f2-9232-4b23-ba94-c6abb10b9cb1.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:19 GMT + etag: + - '"0x8D910D11EB96C25"' + last-modified: + - Thu, 06 May 2021 20:54:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target459c3e9c-e72c-43f4-af18-b5b9d28e7744?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:19 GMT + etag: + - '"0x8D910D11F480DCF"' + last-modified: + - Thu, 06 May 2021 20:54:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src88e2a6e7-fded-4dc6-97b3-69b51f499b2f?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target459c3e9c-e72c-43f4-af18-b5b9d28e7744?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 690e4f74-3132-4361-9b88-6c6ed4315450 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:20 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9593749d-938a-421f-a569-22abf0a93dad + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 690e4f74-3132-4361-9b88-6c6ed4315450 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9593749d-938a-421f-a569-22abf0a93dad + response: + body: + string: '{"id":"9593749d-938a-421f-a569-22abf0a93dad","createdDateTimeUtc":"2021-05-06T20:54:21.060224Z","lastActionDateTimeUtc":"2021-05-06T20:54:21.0602243Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - fab9afc8-7113-4d63-8428-5a4fc7ac7735 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:20 GMT + etag: + - '"A941596AB8D256F875142B9DF2162BBA021B118C44E8FADA9BF65CE197B40371"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fab9afc8-7113-4d63-8428-5a4fc7ac7735 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcbbccf50a-3be2-44d4-9df7-088fc882c225?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:21 GMT + etag: + - '"0x8D910D12007723D"' + last-modified: + - Thu, 06 May 2021 20:54:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcbbccf50a-3be2-44d4-9df7-088fc882c225/43e7ffef-6067-407c-8803-449455ab535a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:22 GMT + etag: + - '"0x8D910D1202E0059"' + last-modified: + - Thu, 06 May 2021 20:54:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcbbccf50a-3be2-44d4-9df7-088fc882c225/457e4192-7324-4a14-a313-94f152f144da.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:22 GMT + etag: + - '"0x8D910D120531B45"' + last-modified: + - Thu, 06 May 2021 20:54:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target271b5d0b-6490-4a76-a5a5-02bce8292e5f?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:23 GMT + etag: + - '"0x8D910D120E2D37B"' + last-modified: + - Thu, 06 May 2021 20:54:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcbbccf50a-3be2-44d4-9df7-088fc882c225?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target271b5d0b-6490-4a76-a5a5-02bce8292e5f?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 46f8f19b-4562-4747-9323-91ca633fafb6 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:22 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/45f5e5e7-ae1e-44b3-adc4-6913cd5c8413 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 46f8f19b-4562-4747-9323-91ca633fafb6 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/45f5e5e7-ae1e-44b3-adc4-6913cd5c8413 + response: + body: + string: '{"id":"45f5e5e7-ae1e-44b3-adc4-6913cd5c8413","createdDateTimeUtc":"2021-05-06T20:54:23.7599762Z","lastActionDateTimeUtc":"2021-05-06T20:54:23.7599766Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 2b9a256d-7dc2-4897-b8c1-fc9fe9f6ccc7 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:23 GMT + etag: + - '"1562091AD7BCA5FEEFC3DFBAD812D2E33C88D8855150DFEAEF1D0F0BFCBBCE2E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2b9a256d-7dc2-4897-b8c1-fc9fe9f6ccc7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src787597ee-c756-42f1-9ec6-5bfafc85cfa6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:24 GMT + etag: + - '"0x8D910D1219F1011"' + last-modified: + - Thu, 06 May 2021 20:54:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src787597ee-c756-42f1-9ec6-5bfafc85cfa6/69f86b33-c31b-4f8b-b660-ec6364429d6e.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:24 GMT + etag: + - '"0x8D910D121C3692C"' + last-modified: + - Thu, 06 May 2021 20:54:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src787597ee-c756-42f1-9ec6-5bfafc85cfa6/c0809b6c-b863-4104-a42e-49eec46cfad9.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:25 GMT + etag: + - '"0x8D910D121E7C098"' + last-modified: + - Thu, 06 May 2021 20:54:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetfc276cf9-dd61-4b54-b4c7-133fed264f5e?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:26 GMT + etag: + - '"0x8D910D122749B58"' + last-modified: + - Thu, 06 May 2021 20:54:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src787597ee-c756-42f1-9ec6-5bfafc85cfa6?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfc276cf9-dd61-4b54-b4c7-133fed264f5e?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - ac8d985b-04a3-4a58-aaf8-14f7878fd282 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:25 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/93bc07d0-942c-4273-992e-53ed54f806ed + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ac8d985b-04a3-4a58-aaf8-14f7878fd282 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/93bc07d0-942c-4273-992e-53ed54f806ed + response: + body: + string: '{"id":"93bc07d0-942c-4273-992e-53ed54f806ed","createdDateTimeUtc":"2021-05-06T20:54:26.3866081Z","lastActionDateTimeUtc":"2021-05-06T20:54:26.3866084Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 4eeec037-23e9-4e7a-99d9-e7a3ed0e8d43 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:25 GMT + etag: + - '"9CA17C0D86559951D89AFDC4E325F25D2D77B6F12BB86BAE47601098670F7A50"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4eeec037-23e9-4e7a-99d9-e7a3ed0e8d43 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:26 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src78a7f891-2151-47fd-a597-f840d23c92b6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:27 GMT + etag: + - '"0x8D910D1233182BE"' + last-modified: + - Thu, 06 May 2021 20:54:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src78a7f891-2151-47fd-a597-f840d23c92b6/238e5ddf-cfa5-4689-9882-4c9cc130cd3f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:27 GMT + etag: + - '"0x8D910D1235575BF"' + last-modified: + - Thu, 06 May 2021 20:54:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src78a7f891-2151-47fd-a597-f840d23c92b6/426345e3-6cca-47c1-87f1-be4df8d4504f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:27 GMT + etag: + - '"0x8D910D1237930E1"' + last-modified: + - Thu, 06 May 2021 20:54:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target2a51b723-f1aa-49b0-9184-c3e7b63bbced?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:28 GMT + etag: + - '"0x8D910D1240A0E3B"' + last-modified: + - Thu, 06 May 2021 20:54:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src78a7f891-2151-47fd-a597-f840d23c92b6?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2a51b723-f1aa-49b0-9184-c3e7b63bbced?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 77b965f2-692d-4c15-a257-9ec99ff338e9 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:28 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1fa48f36-547c-4994-8457-59fb9e8409f7 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 77b965f2-692d-4c15-a257-9ec99ff338e9 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1fa48f36-547c-4994-8457-59fb9e8409f7 + response: + body: + string: '{"id":"1fa48f36-547c-4994-8457-59fb9e8409f7","createdDateTimeUtc":"2021-05-06T20:54:29.0375092Z","lastActionDateTimeUtc":"2021-05-06T20:54:29.0375095Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 1111dd57-b0c9-4b1e-8c8d-18eaec9137ac + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:28 GMT + etag: + - '"7B133E7A8527C0E2C1A44EB2305E18A9067ED1990FFE47037DD5869FF803EB43"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1111dd57-b0c9-4b1e-8c8d-18eaec9137ac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:29 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfedab140-1865-4ae5-8413-b6232838a8a1?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:29 GMT + etag: + - '"0x8D910D124CBB0D0"' + last-modified: + - Thu, 06 May 2021 20:54:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:30 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfedab140-1865-4ae5-8413-b6232838a8a1/ff2e5137-fb2a-47f5-bbe1-60863f525522.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:30 GMT + etag: + - '"0x8D910D124F05DC1"' + last-modified: + - Thu, 06 May 2021 20:54:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:30 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfedab140-1865-4ae5-8413-b6232838a8a1/c0bc64f3-be7a-43cf-8ded-a1bd9d3b5f6a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:30 GMT + etag: + - '"0x8D910D1251774F0"' + last-modified: + - Thu, 06 May 2021 20:54:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:30 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetb3035af9-7b90-419d-b141-f5ed203fd0bf?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:31 GMT + etag: + - '"0x8D910D125A6B30C"' + last-modified: + - Thu, 06 May 2021 20:54:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfedab140-1865-4ae5-8413-b6232838a8a1?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb3035af9-7b90-419d-b141-f5ed203fd0bf?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - bffcc705-463e-40c8-b0d1-98ab24a1f850 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:30 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/984488d1-d483-4e43-a3bd-03c0ee927395 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - bffcc705-463e-40c8-b0d1-98ab24a1f850 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/984488d1-d483-4e43-a3bd-03c0ee927395 + response: + body: + string: '{"id":"984488d1-d483-4e43-a3bd-03c0ee927395","createdDateTimeUtc":"2021-05-06T20:54:31.7380529Z","lastActionDateTimeUtc":"2021-05-06T20:54:31.7380532Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 27608a81-82a0-4576-a85b-0749cc3359fb + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:30 GMT + etag: + - '"099AA1C6DF3716C712AC9182ABD3D2E3E9E35C038BEF2840DA77D72D9D6CC6D9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 27608a81-82a0-4576-a85b-0749cc3359fb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src12585f61-7660-4855-af6b-c9dba64f648a?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:32 GMT + etag: + - '"0x8D910D126620D47"' + last-modified: + - Thu, 06 May 2021 20:54:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:32 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src12585f61-7660-4855-af6b-c9dba64f648a/b128f3d2-3663-45df-b193-2e9db5e445e9.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:32 GMT + etag: + - '"0x8D910D12688FB49"' + last-modified: + - Thu, 06 May 2021 20:54:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:33 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src12585f61-7660-4855-af6b-c9dba64f648a/644c3317-eebc-45c2-af60-6c2f2bc708f6.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:32 GMT + etag: + - '"0x8D910D126AD0494"' + last-modified: + - Thu, 06 May 2021 20:54:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:33 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target72ad5049-254d-472a-a000-b6bb71c4eb82?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:33 GMT + etag: + - '"0x8D910D1273E93C9"' + last-modified: + - Thu, 06 May 2021 20:54:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src12585f61-7660-4855-af6b-c9dba64f648a?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target72ad5049-254d-472a-a000-b6bb71c4eb82?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 56947a49-fcdc-4833-abb4-6989ee614ebb + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:34 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/3d0ea5b8-4028-4368-9055-1909b1a48879 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 56947a49-fcdc-4833-abb4-6989ee614ebb + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3d0ea5b8-4028-4368-9055-1909b1a48879 + response: + body: + string: '{"id":"3d0ea5b8-4028-4368-9055-1909b1a48879","createdDateTimeUtc":"2021-05-06T20:54:34.4125052Z","lastActionDateTimeUtc":"2021-05-06T20:54:34.4125055Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - b7ad6f6d-b0f0-4d8b-9586-ac479332b7ca + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:34 GMT + etag: + - '"DAF39995A1B462F5D7272E5169EEA4A9DDD2BC781FC7EBB123B7A355C112D834"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b7ad6f6d-b0f0-4d8b-9586-ac479332b7ca + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:34 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc6054594-746a-4cfe-ad99-9615aa0dd331?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:34 GMT + etag: + - '"0x8D910D127F6531D"' + last-modified: + - Thu, 06 May 2021 20:54:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:35 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc6054594-746a-4cfe-ad99-9615aa0dd331/9140b163-9036-4683-b315-aa7fb3dcce95.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:35 GMT + etag: + - '"0x8D910D1281C67B7"' + last-modified: + - Thu, 06 May 2021 20:54:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:35 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc6054594-746a-4cfe-ad99-9615aa0dd331/7ca74196-c494-4bea-8435-887359a7db99.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:35 GMT + etag: + - '"0x8D910D1284330AA"' + last-modified: + - Thu, 06 May 2021 20:54:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:36 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetcf7f41c1-faca-42ae-9c01-21d624a0280a?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:36 GMT + etag: + - '"0x8D910D128D2678E"' + last-modified: + - Thu, 06 May 2021 20:54:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc6054594-746a-4cfe-ad99-9615aa0dd331?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetcf7f41c1-faca-42ae-9c01-21d624a0280a?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - f4ed44f3-08c4-49e6-88b2-c71cc683ba2f + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:36 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/a078c47e-81d5-48a2-9bd0-2bb06781ed31 + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f4ed44f3-08c4-49e6-88b2-c71cc683ba2f + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a078c47e-81d5-48a2-9bd0-2bb06781ed31 + response: + body: + string: '{"id":"a078c47e-81d5-48a2-9bd0-2bb06781ed31","createdDateTimeUtc":"2021-05-06T20:54:37.0750245Z","lastActionDateTimeUtc":"2021-05-06T20:54:37.0750248Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 7733d911-0e66-4c69-b75c-50b57efc8291 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:37 GMT + etag: + - '"4101D5E45AD421FE152218CE783C590F1D44A6673EC675F2D0A6EC6A6C29BECC"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7733d911-0e66-4c69-b75c-50b57efc8291 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:37 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9d9f253a-086f-49f7-99c3-ea8da22759cd?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:37 GMT + etag: + - '"0x8D910D1298F5554"' + last-modified: + - Thu, 06 May 2021 20:54:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:38 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9d9f253a-086f-49f7-99c3-ea8da22759cd/cf6473e6-69f3-49fb-9a6d-4d4c131e8831.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:37 GMT + etag: + - '"0x8D910D129B35764"' + last-modified: + - Thu, 06 May 2021 20:54:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:54:38 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9d9f253a-086f-49f7-99c3-ea8da22759cd/357fc13e-3c53-4737-804b-b7a88268fe4f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:54:38 GMT + etag: + - '"0x8D910D129D7D5F7"' + last-modified: + - Thu, 06 May 2021 20:54:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:54:38 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetef4e3d75-dd30-47ff-9dfc-3be8613b1615?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:39 GMT + etag: + - '"0x8D910D12A6854E7"' + last-modified: + - Thu, 06 May 2021 20:54:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9d9f253a-086f-49f7-99c3-ea8da22759cd?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetef4e3d75-dd30-47ff-9dfc-3be8613b1615?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: + - 229aac84-4cd6-462a-8374-efcabd0df829 + content-length: + - '0' + date: + - Thu, 06 May 2021 20:54:39 GMT + operation-location: + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/61dcde6e-cc80-4dd5-966d-837ba83e0ecb + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 229aac84-4cd6-462a-8374-efcabd0df829 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/61dcde6e-cc80-4dd5-966d-837ba83e0ecb + response: + body: + string: '{"id":"61dcde6e-cc80-4dd5-966d-837ba83e0ecb","createdDateTimeUtc":"2021-05-06T20:54:39.714637Z","lastActionDateTimeUtc":"2021-05-06T20:54:39.7146373Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - fb70bddd-5edc-4f81-9697-d5775074f672 + cache-control: + - public,max-age=1 + content-length: + - '291' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:39 GMT + etag: + - '"8111B4C1DC790EA4EB3B80659A66E39F0665704DC3B83D9D5CD1BE56779B9C9F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fb70bddd-5edc-4f81-9697-d5775074f672 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0 + response: + body: + string: '{"value":[{"id":"61dcde6e-cc80-4dd5-966d-837ba83e0ecb","createdDateTimeUtc":"2021-05-06T20:54:39.714637Z","lastActionDateTimeUtc":"2021-05-06T20:54:39.7146373Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a078c47e-81d5-48a2-9bd0-2bb06781ed31","createdDateTimeUtc":"2021-05-06T20:54:37.0750245Z","lastActionDateTimeUtc":"2021-05-06T20:54:38.4613446Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d0ea5b8-4028-4368-9055-1909b1a48879","createdDateTimeUtc":"2021-05-06T20:54:34.4125052Z","lastActionDateTimeUtc":"2021-05-06T20:54:37.4692205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"984488d1-d483-4e43-a3bd-03c0ee927395","createdDateTimeUtc":"2021-05-06T20:54:31.7380529Z","lastActionDateTimeUtc":"2021-05-06T20:54:34.3520813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fa48f36-547c-4994-8457-59fb9e8409f7","createdDateTimeUtc":"2021-05-06T20:54:29.0375092Z","lastActionDateTimeUtc":"2021-05-06T20:54:32.4424323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bc07d0-942c-4273-992e-53ed54f806ed","createdDateTimeUtc":"2021-05-06T20:54:26.3866081Z","lastActionDateTimeUtc":"2021-05-06T20:54:29.33425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45f5e5e7-ae1e-44b3-adc4-6913cd5c8413","createdDateTimeUtc":"2021-05-06T20:54:23.7599762Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9593749d-938a-421f-a569-22abf0a93dad","createdDateTimeUtc":"2021-05-06T20:54:21.060224Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.115287Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a679740-861b-4230-a782-30c632a0f98a","createdDateTimeUtc":"2021-05-06T20:54:18.389999Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"704284cb-eef3-4719-a645-34bb5d3570ec","createdDateTimeUtc":"2021-05-06T20:54:15.7426458Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.5490811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:31.7799976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:28.6916857Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:27.2981028Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7455463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7237955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.6065399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.5123621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.0499248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2369&$maxpagesize=50"}' + headers: + apim-request-id: + - 41823707-4236-443c-95d1-2e7ec23527e4 + cache-control: + - public,max-age=1 + content-length: + - '14799' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:39 GMT + etag: + - '"150BE30E0F26EC6F1A9AF3A6502C736AC322004C4CBA089E25F5CFC8E15A2CB1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 41823707-4236-443c-95d1-2e7ec23527e4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2369&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2319&$maxpagesize=50"}' + headers: + apim-request-id: + - 9b247626-7ad3-4227-ad05-de8aa7e9bbdd + cache-control: + - public,max-age=1 + content-length: + - '15356' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:40 GMT + etag: + - '"015787AED654E1F831AE403752C62F659887AFDC04ED17DBE9DB7FDF7B730A90"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9b247626-7ad3-4227-ad05-de8aa7e9bbdd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2319&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2269&$maxpagesize=50"}' + headers: + apim-request-id: + - 28df3962-1005-4cca-b0ab-a31be827bf1a + cache-control: + - public,max-age=1 + content-length: + - '14810' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:40 GMT + etag: + - '"B210173AD017DB4CC2D3687940C64682BA6E7FA78C8221E008F3117523BBD21B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 28df3962-1005-4cca-b0ab-a31be827bf1a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2269&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2219&$maxpagesize=50"}' + headers: + apim-request-id: + - eebbba55-d02f-476e-8306-7e1e4add8d1e + cache-control: + - public,max-age=1 + content-length: + - '14808' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:40 GMT + etag: + - '"A7CD13C404DCAA0A06A8B858D093F6DE56B1C5089B3EB97184C002A37632E3F8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - eebbba55-d02f-476e-8306-7e1e4add8d1e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2219&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2169&$maxpagesize=50"}' + headers: + apim-request-id: + - 9fab5989-f89a-41bb-832e-142fad28a675 + cache-control: + - public,max-age=1 + content-length: + - '15359' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:41 GMT + etag: + - '"0B1EE99F9D4C747A5CD8DCB81A46CDCCFF3EFF09E1A64C7CC883E38649047A39"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9fab5989-f89a-41bb-832e-142fad28a675 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2169&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2119&$maxpagesize=50"}' + headers: + apim-request-id: + - 83ab7076-8399-4fb3-bed6-313e8dd75dcc + cache-control: + - public,max-age=1 + content-length: + - '14808' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:41 GMT + etag: + - '"7EAFFF447F8E6B1A3CE0BB4E38F05BDE5F937AC1825A4F269BC03537D5ADBB6D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 83ab7076-8399-4fb3-bed6-313e8dd75dcc + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2119&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2069&$maxpagesize=50"}' + headers: + apim-request-id: + - 854fb0f6-6382-48f9-8e66-75581863950f + cache-control: + - public,max-age=1 + content-length: + - '14818' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:41 GMT + etag: + - '"50D7C95E69559ED00989BCFD44BEC0EE1C9ACB603798735FABAE3F4CF82219BF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 854fb0f6-6382-48f9-8e66-75581863950f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2069&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2019&$maxpagesize=50"}' + headers: + apim-request-id: + - c8f93466-e138-4acd-b7d9-2b92622f5d59 + cache-control: + - public,max-age=1 + content-length: + - '14808' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:41 GMT + etag: + - '"22E706C2B80C3642353AF383FFCC91AF30B5D54BCD55023FFD1DA729899FE948"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c8f93466-e138-4acd-b7d9-2b92622f5d59 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2019&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1969&$maxpagesize=50"}' + headers: + apim-request-id: + - ed9cecff-7cf8-4ec4-8783-a8169987a9be + cache-control: + - public,max-age=1 + content-length: + - '14795' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:42 GMT + etag: + - '"250C03CF5358798407F532A5AFA56A0BD9A532E7466B71AE1295982159F6E6FB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ed9cecff-7cf8-4ec4-8783-a8169987a9be + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1969&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1919&$maxpagesize=50"}' + headers: + apim-request-id: + - 6e7d7bd2-88eb-4fa9-83fb-e3745bfea9c8 + cache-control: + - public,max-age=1 + content-length: + - '14797' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:42 GMT + etag: + - '"1A9193A44FC1676134558FD0D155B0FF8300BA17A031B35E6E166E9C0BA8F70E"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6e7d7bd2-88eb-4fa9-83fb-e3745bfea9c8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1919&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1869&$maxpagesize=50"}' + headers: + apim-request-id: + - fb91dc0d-8997-48df-b6e8-5a48a4db8ffb + cache-control: + - public,max-age=1 + content-length: + - '14801' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:42 GMT + etag: + - '"1E8B356E467AE8E3B2C2D75F28A84A48EA4DC94D1051EFD13EB98CA54E5618A4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fb91dc0d-8997-48df-b6e8-5a48a4db8ffb + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1869&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1819&$maxpagesize=50"}' + headers: + apim-request-id: + - 289da25f-c3e1-4e66-9d1b-e97dee42625d + cache-control: + - public,max-age=1 + content-length: + - '14803' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:43 GMT + etag: + - '"62F39331CC381198EEB6FED78A3DB59928965BA61549FD736753FAA94E9B69B3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 289da25f-c3e1-4e66-9d1b-e97dee42625d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1819&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1769&$maxpagesize=50"}' + headers: + apim-request-id: + - 888bd5de-de88-4720-8f96-b65b6000cabf + cache-control: + - public,max-age=1 + content-length: + - '14801' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:43 GMT + etag: + - '"CF5671A1E7B6293C7D09EDAE61B85F31761C439B49F17D894DB6EE219720C381"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 888bd5de-de88-4720-8f96-b65b6000cabf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1769&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1719&$maxpagesize=50"}' + headers: + apim-request-id: + - 7273315e-fd58-4952-a71f-e7dfefa5cb81 + cache-control: + - public,max-age=1 + content-length: + - '14801' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:43 GMT + etag: + - '"12A4B5013CDFFBEA79E74F37D505762723844914572768CAF71533409E6F3503"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7273315e-fd58-4952-a71f-e7dfefa5cb81 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1719&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1669&$maxpagesize=50"}' + headers: + apim-request-id: + - 82cb7b3b-3c23-42ed-9e03-f60387766695 + cache-control: + - public,max-age=1 + content-length: + - '15325' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:43 GMT + etag: + - '"449143387640702DDEA13BDC49AB1FD05EAB4F907BF5C3EEDB020B88856B9299"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 82cb7b3b-3c23-42ed-9e03-f60387766695 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1669&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1619&$maxpagesize=50"}' + headers: + apim-request-id: + - e9335902-a34c-4cb7-a472-cb6599a1c8d8 + cache-control: + - public,max-age=1 + content-length: + - '14797' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:44 GMT + etag: + - '"5C9E998249316657F8EDD07D015E479B6473943DCA2D52334792F47759C4633F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e9335902-a34c-4cb7-a472-cb6599a1c8d8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1619&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1569&$maxpagesize=50"}' + headers: + apim-request-id: + - f312c559-0ce4-4703-a2c5-aac09dbb1a99 + cache-control: + - public,max-age=1 + content-length: + - '14801' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:44 GMT + etag: + - '"F6C6911C3410736B8CB881330263AE9AAF52970E92732AFEA6054E3A27A197E4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f312c559-0ce4-4703-a2c5-aac09dbb1a99 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1569&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1519&$maxpagesize=50"}' + headers: + apim-request-id: + - c051fb5c-1d80-4b81-8bae-6711beee5bad + cache-control: + - public,max-age=1 + content-length: + - '14813' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:44 GMT + etag: + - '"3339DA1E5539946ED7F001582B00D03EC76C56319BC7E506FCCB7255A3A40653"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c051fb5c-1d80-4b81-8bae-6711beee5bad + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1519&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1469&$maxpagesize=50"}' + headers: + apim-request-id: + - 7e3ee540-7377-4bc7-85d5-a9b2aa7a9f70 + cache-control: + - public,max-age=1 + content-length: + - '14794' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:44 GMT + etag: + - '"01502C0FB0E02713D8C8B929F593BF0C974AB26E0CCF264C07C0B69F78F53F71"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 7e3ee540-7377-4bc7-85d5-a9b2aa7a9f70 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1469&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1419&$maxpagesize=50"}' + headers: + apim-request-id: + - 548e9456-158f-4069-b9b8-3c61a886f729 + cache-control: + - public,max-age=1 + content-length: + - '14787' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:45 GMT + etag: + - '"6145D13DF461F82862B1ED8AB3048660576665A47CDED29939B87B14383C2016"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 548e9456-158f-4069-b9b8-3c61a886f729 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1419&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1369&$maxpagesize=50"}' + headers: + apim-request-id: + - f2614c86-bb19-4270-a65e-13d690407675 + cache-control: + - public,max-age=1 + content-length: + - '15323' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:45 GMT + etag: + - '"7EBAD8300757F73EB3886626687AAE8C7EE2A08B6C2E6E5B2D618A9256A92123"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f2614c86-bb19-4270-a65e-13d690407675 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1369&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1319&$maxpagesize=50"}' + headers: + apim-request-id: + - 6e4e8355-b643-4ce4-bc06-b1d55a9ce584 + cache-control: + - public,max-age=1 + content-length: + - '15080' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:45 GMT + etag: + - '"452149D3FFBB94A0A5451C84036C7626FEBA15A5016E6A34A9E753D2AAE8ADD1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6e4e8355-b643-4ce4-bc06-b1d55a9ce584 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1319&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1269&$maxpagesize=50"}' + headers: + apim-request-id: + - 659952dd-d899-4d68-a744-3de9c0c59f57 + cache-control: + - public,max-age=1 + content-length: + - '15068' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:46 GMT + etag: + - '"3AF625F0EFD0B6F14EE931F361F47472389319E598DC32323E6961F910AA6EAE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 659952dd-d899-4d68-a744-3de9c0c59f57 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1269&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1219&$maxpagesize=50"}' + headers: + apim-request-id: + - 45fc4fff-f82a-40df-bf34-9a56f3522bd3 + cache-control: + - public,max-age=1 + content-length: + - '14883' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:46 GMT + etag: + - '"7DE9D33884444D6507A30E71A6C9EB67BE7DD69C9DF6000F9F586931BDEAC0DA"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 45fc4fff-f82a-40df-bf34-9a56f3522bd3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1219&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1169&$maxpagesize=50"}' + headers: + apim-request-id: + - 2096e0cc-babd-4a06-ac52-7a5586d6231f + cache-control: + - public,max-age=1 + content-length: + - '14874' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:46 GMT + etag: + - '"434C7A8FAB3FDF736224C8F209915E4223EAB0AC8DDB5F0AF120337DB083AC3E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2096e0cc-babd-4a06-ac52-7a5586d6231f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1169&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1119&$maxpagesize=50"}' + headers: + apim-request-id: + - 02ce1e2a-d65b-4bc3-9446-1d0b6ff0b0b2 + cache-control: + - public,max-age=1 + content-length: + - '14792' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:46 GMT + etag: + - '"286E2D480CA9E1E513EE5B8833F7969B39AAC318343C24D1E11E700C4C43C6F1"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 02ce1e2a-d65b-4bc3-9446-1d0b6ff0b0b2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1119&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1069&$maxpagesize=50"}' + headers: + apim-request-id: + - a86cd6e2-c0a9-4f74-a51c-42d9e6f494a9 + cache-control: + - public,max-age=1 + content-length: + - '14798' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:47 GMT + etag: + - '"2685763E6C3A53463C9B459A7D112D31AD56B2013CC6D5B1F8EDAF9B41F99EA0"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a86cd6e2-c0a9-4f74-a51c-42d9e6f494a9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1069&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1019&$maxpagesize=50"}' + headers: + apim-request-id: + - 257b99be-7aac-41aa-b5d2-4ef17795d7e8 + cache-control: + - public,max-age=1 + content-length: + - '14788' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:47 GMT + etag: + - '"9007D6BC89C9374ACB63469DCD8FE59AB34955562FFB4F911CD9F892FB59878C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 257b99be-7aac-41aa-b5d2-4ef17795d7e8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1019&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=969&$maxpagesize=50"}' + headers: + apim-request-id: + - 06d9eed7-c3c9-4be1-9979-62c024a5de1f + cache-control: + - public,max-age=1 + content-length: + - '14825' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:47 GMT + etag: + - '"22EE32F27E0535A22449182710F3A4AE9510024F02E38644B3DDE016D53CB22F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 06d9eed7-c3c9-4be1-9979-62c024a5de1f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=969&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=919&$maxpagesize=50"}' + headers: + apim-request-id: + - a5dffe83-f36c-4cb7-b48c-044bc12c471e + cache-control: + - public,max-age=1 + content-length: + - '14782' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:48 GMT + etag: + - '"0E141B98082D4DC52AC24C0D75A631441233B679F865E37FC8805DBE178E6F23"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a5dffe83-f36c-4cb7-b48c-044bc12c471e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=919&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=869&$maxpagesize=50"}' + headers: + apim-request-id: + - a3187c85-ccc2-41b3-a0bd-e336b93fc950 + cache-control: + - public,max-age=1 + content-length: + - '14805' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:48 GMT + etag: + - '"7005445B89C60A9C2DCC1925E70F4D336E726513A853C01222A0DB1C1968AC90"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a3187c85-ccc2-41b3-a0bd-e336b93fc950 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=869&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=819&$maxpagesize=50"}' + headers: + apim-request-id: + - ed4986bc-1335-46e4-853c-771240d14e12 + cache-control: + - public,max-age=1 + content-length: + - '14786' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:48 GMT + etag: + - '"5B316D213319EB142D23003BEBB400852077F708CC281BBE1FAD5695DAE7A010"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ed4986bc-1335-46e4-853c-771240d14e12 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=819&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=769&$maxpagesize=50"}' + headers: + apim-request-id: + - f9588146-01ac-4a5d-b31f-b669aaf4f793 + cache-control: + - public,max-age=1 + content-length: + - '14797' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:48 GMT + etag: + - '"5937423892DBD174279ED4AE357CED046601FE9F5ADCE2F32270AC54932337AE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f9588146-01ac-4a5d-b31f-b669aaf4f793 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=769&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=719&$maxpagesize=50"}' + headers: + apim-request-id: + - de3f46c1-6661-43ae-92ff-b336481b1e36 + cache-control: + - public,max-age=1 + content-length: + - '14795' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:49 GMT + etag: + - '"4EAAF8F463FBEB98B820F22BA7A818CD9D18D09D6D87F728830A40D4014D586F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - de3f46c1-6661-43ae-92ff-b336481b1e36 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=719&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=669&$maxpagesize=50"}' + headers: + apim-request-id: + - d8dfe744-8887-48e2-8e86-6e5414828994 + cache-control: + - public,max-age=1 + content-length: + - '14797' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:49 GMT + etag: + - '"332ACB5E795543636345E45B9E04B0CA15C06449B63BC885D7E6273B1D6AD8F2"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d8dfe744-8887-48e2-8e86-6e5414828994 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=669&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=619&$maxpagesize=50"}' + headers: + apim-request-id: + - 4b2480e3-fe1f-4dc0-bd78-f5bcc190ddd8 + cache-control: + - public,max-age=1 + content-length: + - '14794' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:49 GMT + etag: + - '"B6A5DB640C55F9F7DFA2B77FAC594E25F9F07A5FE590F2E497368A4D2005658F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4b2480e3-fe1f-4dc0-bd78-f5bcc190ddd8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=619&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=569&$maxpagesize=50"}' + headers: + apim-request-id: + - 9aa88c18-3f07-4e2e-9879-de2fa4ad04d5 + cache-control: + - public,max-age=1 + content-length: + - '14798' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:49 GMT + etag: + - '"EEF9C29C4B9013B7B6CC815B55F8E6A5356C9379C795656E203C2815F4A03F05"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9aa88c18-3f07-4e2e-9879-de2fa4ad04d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=569&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=519&$maxpagesize=50"}' + headers: + apim-request-id: + - a7cbd795-4185-48ef-9277-399c88a1a216 + cache-control: + - public,max-age=1 + content-length: + - '14802' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:50 GMT + etag: + - '"4EC276FF50C264684866A7BD0B0CC519A677E8733D1AE86E00977081F732C4D8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a7cbd795-4185-48ef-9277-399c88a1a216 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=519&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=469&$maxpagesize=50"}' + headers: + apim-request-id: + - b67338df-5b79-4870-b736-df0f62b971c8 + cache-control: + - public,max-age=1 + content-length: + - '14799' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:50 GMT + etag: + - '"0886D8D1029DB779DE8BED9CB16F642C55E8D6CB2D6805E546AA7930B59B5F16"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b67338df-5b79-4870-b736-df0f62b971c8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=469&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=419&$maxpagesize=50"}' + headers: + apim-request-id: + - 85d6f500-8abd-451a-bfc2-bd9780c07897 + cache-control: + - public,max-age=1 + content-length: + - '14807' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:50 GMT + etag: + - '"D98480B454B4613EC4554EFB086BD01073ADE14EA38F27B2B7FEFAB2C153020C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 85d6f500-8abd-451a-bfc2-bd9780c07897 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=419&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=369&$maxpagesize=50"}' + headers: + apim-request-id: + - b98077fd-20bc-4fa1-af82-51f362dd4484 + cache-control: + - public,max-age=1 + content-length: + - '14794' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:50 GMT + etag: + - '"2EC4662D62DA9ABBC3CCB1896A8730DEB87827DB279D685551C185336F23571A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b98077fd-20bc-4fa1-af82-51f362dd4484 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=369&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=319&$maxpagesize=50"}' + headers: + apim-request-id: + - 343bf706-6360-4362-b746-07d679568392 + cache-control: + - public,max-age=1 + content-length: + - '14789' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:51 GMT + etag: + - '"B062743B564732B01EF301703488D87A69DD429A0940ECFD33C0CDE55A1B5039"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 343bf706-6360-4362-b746-07d679568392 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=319&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=269&$maxpagesize=50"}' + headers: + apim-request-id: + - d7f079f3-5669-4196-9ea7-26bad4bb0970 + cache-control: + - public,max-age=1 + content-length: + - '14797' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:51 GMT + etag: + - '"D9249AB6236C04E00C43B993ABB6A0099376EA8D5111A8DDD2A8A9204B5D198F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d7f079f3-5669-4196-9ea7-26bad4bb0970 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=269&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=219&$maxpagesize=50"}' + headers: + apim-request-id: + - 81b6bf0d-526f-4401-9de3-ef25dafa59b5 + cache-control: + - public,max-age=1 + content-length: + - '14797' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:51 GMT + etag: + - '"87CE2DB4D48E455FD287364B6BDC8AB802A5512A6E6BD08024921BEB53B97F7A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 81b6bf0d-526f-4401-9de3-ef25dafa59b5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=219&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=169&$maxpagesize=50"}' + headers: + apim-request-id: + - e10d5e7a-bca6-4256-b591-4b9f7e1d3294 + cache-control: + - public,max-age=1 + content-length: + - '14802' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:52 GMT + etag: + - '"CBF6126EA127D3860361B9CF672750178A1BAF3268B4BFE8BB97C12C3B6539B5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e10d5e7a-bca6-4256-b591-4b9f7e1d3294 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=169&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=119&$maxpagesize=50"}' + headers: + apim-request-id: + - 8463a9c4-2ba3-4119-863a-0992ea7374ec + cache-control: + - public,max-age=1 + content-length: + - '15073' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:52 GMT + etag: + - '"E4059554DE6D8307AD0B87EBC9F2873C6E33ED9A9FDDFE84DDE285CD21278286"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8463a9c4-2ba3-4119-863a-0992ea7374ec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=119&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=69&$maxpagesize=50"}' + headers: + apim-request-id: + - 365e27fe-234a-44c7-8ab6-af0a1a5ce557 + cache-control: + - public,max-age=1 + content-length: + - '15048' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:52 GMT + etag: + - '"3994D057A1492BB338575978633FE493176B7AE670EFEF8D4EE0F9AD26D84EF9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 365e27fe-234a-44c7-8ab6-af0a1a5ce557 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=69&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=19&$maxpagesize=50"}' + headers: + apim-request-id: + - f04e64fe-9767-40c1-9f5f-28dd7a6a4f04 + cache-control: + - public,max-age=1 + content-length: + - '18436' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:53 GMT + etag: + - '"35A6EF07172E2E2CDB1570D8D80A36AA8FA2F91B3DBA62228C7BA7A325313C54"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f04e64fe-9767-40c1-9f5f-28dd7a6a4f04 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=19&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: + - 358468b1-4626-4f9d-aaf8-0633b19e244d + cache-control: + - public,max-age=1 + content-length: + - '7520' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:53 GMT + etag: + - '"5A485A5FEE11FE5CB9934B8ECEE11C30C0CC10033C288B0E65FA96F101B844D7"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 358468b1-4626-4f9d-aaf8-0633b19e244d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=5 + response: + body: + string: '{"value":[{"id":"93bc07d0-942c-4273-992e-53ed54f806ed","createdDateTimeUtc":"2021-05-06T20:54:26.3866081Z","lastActionDateTimeUtc":"2021-05-06T20:54:29.33425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45f5e5e7-ae1e-44b3-adc4-6913cd5c8413","createdDateTimeUtc":"2021-05-06T20:54:23.7599762Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9593749d-938a-421f-a569-22abf0a93dad","createdDateTimeUtc":"2021-05-06T20:54:21.060224Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.115287Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a679740-861b-4230-a782-30c632a0f98a","createdDateTimeUtc":"2021-05-06T20:54:18.389999Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"704284cb-eef3-4719-a645-34bb5d3570ec","createdDateTimeUtc":"2021-05-06T20:54:15.7426458Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.5490811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:31.7799976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:28.6916857Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:27.2981028Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7455463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7237955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.6065399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.5123621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.0499248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=55&$top=2364&$maxpagesize=50"}' + headers: + apim-request-id: + - 6c4db73c-7a1c-410e-847e-17166335034c + cache-control: + - public,max-age=1 + content-length: + - '14801' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:53 GMT + etag: + - '"3AE0862E9860A5D676051A54105020C5DD6A006C1BA8CE6FE5DA1E9534135F3A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 6c4db73c-7a1c-410e-847e-17166335034c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=55&$top=2364&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=105&$top=2314&$maxpagesize=50"}' + headers: + apim-request-id: + - d2262bb2-10c7-4aa4-b17a-2229eabd6a0f + cache-control: + - public,max-age=1 + content-length: + - '15355' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:53 GMT + etag: + - '"9BFFFD4773E17E2454DD53F659AF9CA3F46043A47D31B709E31DB1C9499938FB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d2262bb2-10c7-4aa4-b17a-2229eabd6a0f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=105&$top=2314&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=155&$top=2264&$maxpagesize=50"}' + headers: + apim-request-id: + - 47442789-00cf-4daf-b0a6-40ceb937dd0d + cache-control: + - public,max-age=1 + content-length: + - '14809' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:54 GMT + etag: + - '"C65BA807A6867C0A29A11A91AEC496F21E40501EB3AA61C78EEEFC6841A7E843"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 47442789-00cf-4daf-b0a6-40ceb937dd0d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=155&$top=2264&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=205&$top=2214&$maxpagesize=50"}' + headers: + apim-request-id: + - 3761df2c-c188-4200-ba07-b78ecfed5b48 + cache-control: + - public,max-age=1 + content-length: + - '14818' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:54 GMT + etag: + - '"4F706C3FDDB8A771375E2B505F0CE3D8A0CA9C3878008427185568E2DA19EB80"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3761df2c-c188-4200-ba07-b78ecfed5b48 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=205&$top=2214&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=255&$top=2164&$maxpagesize=50"}' + headers: + apim-request-id: + - e2023cb2-a07e-4a12-912e-d9dff242ff6d + cache-control: + - public,max-age=1 + content-length: + - '15350' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:54 GMT + etag: + - '"EE1A94314F5AE74A943ECAC99FFC0CA838855F12D4F26BF65018924BA552E0B8"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e2023cb2-a07e-4a12-912e-d9dff242ff6d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=255&$top=2164&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=305&$top=2114&$maxpagesize=50"}' + headers: + apim-request-id: + - c97f6ead-4ec3-47c5-97f4-d2af500deab8 + cache-control: + - public,max-age=1 + content-length: + - '14806' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:54 GMT + etag: + - '"B2B9B6BE15C33A6BD6D6AC4E907EA6A1EC9B1D7DBD8BB2EC55971DDFF476572E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c97f6ead-4ec3-47c5-97f4-d2af500deab8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=305&$top=2114&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=355&$top=2064&$maxpagesize=50"}' + headers: + apim-request-id: + - 769a1329-fd5c-4c69-8a21-b1b967f9f571 + cache-control: + - public,max-age=1 + content-length: + - '14824' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:55 GMT + etag: + - '"ACEDF674ACD8B97B6C1A551E465F68E2187EC3CC8B08116AE0471A2C3F1581CF"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 769a1329-fd5c-4c69-8a21-b1b967f9f571 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=355&$top=2064&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=405&$top=2014&$maxpagesize=50"}' + headers: + apim-request-id: + - 8ce33fa6-80e3-4f56-ab13-f473bd1083c5 + cache-control: + - public,max-age=1 + content-length: + - '14801' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:55 GMT + etag: + - '"49FEB8D5F63E886ED9C761F8DD39254373F269C983B3FF46B16E751A31B3CEEE"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 8ce33fa6-80e3-4f56-ab13-f473bd1083c5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=405&$top=2014&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=455&$top=1964&$maxpagesize=50"}' + headers: + apim-request-id: + - 4979f753-6c3b-4287-8ea4-8a63febc4a4f + cache-control: + - public,max-age=1 + content-length: + - '14797' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:55 GMT + etag: + - '"0276ED035A7D67DB19ABF13AE36E40B8D080F9F23068B5C5E925B9E59A5827AE"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4979f753-6c3b-4287-8ea4-8a63febc4a4f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=455&$top=1964&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=505&$top=1914&$maxpagesize=50"}' + headers: + apim-request-id: + - e2e66b63-e64e-4605-9836-a017d8d2fca9 + cache-control: + - public,max-age=1 + content-length: + - '14797' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:56 GMT + etag: + - '"F5EAF794565E1BD509FC7C2E1199421E237609191F7EE87274D321870AD665FC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e2e66b63-e64e-4605-9836-a017d8d2fca9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=505&$top=1914&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=555&$top=1864&$maxpagesize=50"}' + headers: + apim-request-id: + - d31817a3-6f82-4539-a128-7470087d248c + cache-control: + - public,max-age=1 + content-length: + - '14800' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:56 GMT + etag: + - '"49E65D56737BE6349976BF4F34D190C272E3DA8FEED7C75AB5DC87775F6BE9F2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d31817a3-6f82-4539-a128-7470087d248c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=555&$top=1864&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=605&$top=1814&$maxpagesize=50"}' + headers: + apim-request-id: + - 1bc94cb5-7d57-438f-8106-00862eff9431 + cache-control: + - public,max-age=1 + content-length: + - '14804' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:56 GMT + etag: + - '"7FEF3282F5D76FCF8E4BB73D139CC5001E81F285B9FF401DD6B538EB96B6B9FA"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1bc94cb5-7d57-438f-8106-00862eff9431 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=605&$top=1814&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=655&$top=1764&$maxpagesize=50"}' + headers: + apim-request-id: + - 2042365b-b3d9-4ef3-a4e3-9beee76dbe68 + cache-control: + - public,max-age=1 + content-length: + - '14801' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:56 GMT + etag: + - '"4E59D997D9B45A46A9FD203FF92357AA24AC910DA6017B7CA90DAC45A7E0B81D"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2042365b-b3d9-4ef3-a4e3-9beee76dbe68 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=655&$top=1764&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=705&$top=1714&$maxpagesize=50"}' + headers: + apim-request-id: + - 5aee299e-9ca6-4fa3-966f-e2fb53544311 + cache-control: + - public,max-age=1 + content-length: + - '14802' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:57 GMT + etag: + - '"D201F469ED1264490D865524365D874B7564800C30692935C767FFFF5B17105A"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 5aee299e-9ca6-4fa3-966f-e2fb53544311 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=705&$top=1714&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=755&$top=1664&$maxpagesize=50"}' + headers: + apim-request-id: + - a831b538-5bbe-42cd-a9f3-545780e3316b + cache-control: + - public,max-age=1 + content-length: + - '15323' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:57 GMT + etag: + - '"BCD1B2C9A59A511BA389DFFD497C748E6972A32AF3B47889EDB8AE47865D7D33"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - a831b538-5bbe-42cd-a9f3-545780e3316b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=755&$top=1664&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=805&$top=1614&$maxpagesize=50"}' + headers: + apim-request-id: + - 9a64e71b-ebf7-465e-a2c4-8f4ca6751767 + cache-control: + - public,max-age=1 + content-length: + - '14796' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:57 GMT + etag: + - '"6F36337D5172E4F3479B598F08EF8D804A6B22A9BAFCBEF5845E6CBC5A355C0C"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 9a64e71b-ebf7-465e-a2c4-8f4ca6751767 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=805&$top=1614&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=855&$top=1564&$maxpagesize=50"}' + headers: + apim-request-id: + - b37e0070-9af3-47da-9c49-891a0ae96f2c + cache-control: + - public,max-age=1 + content-length: + - '14802' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:58 GMT + etag: + - '"49EBE0C11DF98D2BFE3C504C72C30490975FCFB1F5AD9CB7574DD4977B69BE25"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b37e0070-9af3-47da-9c49-891a0ae96f2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=855&$top=1564&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=905&$top=1514&$maxpagesize=50"}' + headers: + apim-request-id: + - 0ae08d07-c9f3-4483-a71b-38886facace2 + cache-control: + - public,max-age=1 + content-length: + - '14813' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:58 GMT + etag: + - '"666E43B81F937C63D7DA5D246B0772215FD2E3239262FD21A16C290E1E29110D"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0ae08d07-c9f3-4483-a71b-38886facace2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=905&$top=1514&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=955&$top=1464&$maxpagesize=50"}' + headers: + apim-request-id: + - ae4a2df5-e834-4902-9a01-62753ad562c0 + cache-control: + - public,max-age=1 + content-length: + - '14793' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:58 GMT + etag: + - '"458D1DAD0722D4B934EF9B16D3D9233C1787D85A6B50D9AED1E850D4004455A3"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ae4a2df5-e834-4902-9a01-62753ad562c0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=955&$top=1464&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1005&$top=1414&$maxpagesize=50"}' + headers: + apim-request-id: + - d8f06513-8b17-4ef0-9827-b3c25b5a5117 + cache-control: + - public,max-age=1 + content-length: + - '14790' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:58 GMT + etag: + - '"F4E5583C45E528AC802A4B2FFA9200284E177D2453188AB1FEEC5300E68CD278"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d8f06513-8b17-4ef0-9827-b3c25b5a5117 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1005&$top=1414&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1055&$top=1364&$maxpagesize=50"}' + headers: + apim-request-id: + - 4760f0eb-be90-4aba-9a47-808759dcccc2 + cache-control: + - public,max-age=1 + content-length: + - '15317' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:59 GMT + etag: + - '"8386BB454D5DB344D71C20E22C2D717066A51352B42FDEF174951FF032BBFC76"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 4760f0eb-be90-4aba-9a47-808759dcccc2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1055&$top=1364&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1105&$top=1314&$maxpagesize=50"}' + headers: + apim-request-id: + - fad4f111-4a7f-458e-8ade-39a962f4d87f + cache-control: + - public,max-age=1 + content-length: + - '15350' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:59 GMT + etag: + - '"98CDCC3387E0220FA7038DD673DCCCF1B610B2920ECC039A61BDEAF78546B9D6"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fad4f111-4a7f-458e-8ade-39a962f4d87f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1105&$top=1314&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1155&$top=1264&$maxpagesize=50"}' + headers: + apim-request-id: + - 50f08853-adaa-4e03-bd8a-4760e210f824 + cache-control: + - public,max-age=1 + content-length: + - '14806' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:54:59 GMT + etag: + - '"BF284F610BD6FAC452917BB648AD733B875E10382247752EF968122E76BC68F2"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 50f08853-adaa-4e03-bd8a-4760e210f824 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1155&$top=1264&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1205&$top=1214&$maxpagesize=50"}' + headers: + apim-request-id: + - 21751f71-03d3-480a-8f78-671fbb64e03c + cache-control: + - public,max-age=1 + content-length: + - '14891' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:00 GMT + etag: + - '"C6D509557871B960CD0F66B5D21D1E2FC5AC0642562DC6724489E4C37E7DACDB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 21751f71-03d3-480a-8f78-671fbb64e03c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1205&$top=1214&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1255&$top=1164&$maxpagesize=50"}' + headers: + apim-request-id: + - ff315c18-aa42-491b-81fe-736ee115888d + cache-control: + - public,max-age=1 + content-length: + - '14862' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:00 GMT + etag: + - '"78D8A7455DFBA97978963FB3B370E9CA1AD4334C05E4D9F3BC0A6AC3076EE17A"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ff315c18-aa42-491b-81fe-736ee115888d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1255&$top=1164&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1305&$top=1114&$maxpagesize=50"}' + headers: + apim-request-id: + - 620ebd0b-89ad-4cc6-bdc4-4ae3b7b4ceb2 + cache-control: + - public,max-age=1 + content-length: + - '14793' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:00 GMT + etag: + - '"6C7C10E7414CC21F29FA8854DE2E13DFEEDCF84E26E3B4B220F040138D96C5F1"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 620ebd0b-89ad-4cc6-bdc4-4ae3b7b4ceb2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1305&$top=1114&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1355&$top=1064&$maxpagesize=50"}' + headers: + apim-request-id: + - f70529f0-f1c4-4a85-b357-2d4959bafb07 + cache-control: + - public,max-age=1 + content-length: + - '14799' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:01 GMT + etag: + - '"00A330D137EAFCD0E36B0790C200E76FD74DFB7EB0E65A3F00DE884E39D702FD"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f70529f0-f1c4-4a85-b357-2d4959bafb07 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1355&$top=1064&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1405&$top=1014&$maxpagesize=50"}' + headers: + apim-request-id: + - 105ef956-58b5-432c-9678-4f1f2e231912 + cache-control: + - public,max-age=1 + content-length: + - '14784' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:01 GMT + etag: + - '"FEBEA2250B9563A453C4EA495BB72372F70C501F284F080886D03F8C800E7325"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 105ef956-58b5-432c-9678-4f1f2e231912 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1405&$top=1014&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1455&$top=964&$maxpagesize=50"}' + headers: + apim-request-id: + - 80d01c63-d33b-4fb5-979e-158a9a9cf0a9 + cache-control: + - public,max-age=1 + content-length: + - '14828' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:01 GMT + etag: + - '"3777369AFA92B025E533036A96B2D8FC3064D9240C9D815E7793A874237A9BBB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 80d01c63-d33b-4fb5-979e-158a9a9cf0a9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1455&$top=964&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1505&$top=914&$maxpagesize=50"}' + headers: + apim-request-id: + - fb508208-eb8d-4f94-95fd-dffc7c715829 + cache-control: + - public,max-age=1 + content-length: + - '14780' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:01 GMT + etag: + - '"79270037A2D1BD601D729EF02208D265151AFFAF6CC385B7FCCE19743D4D0EA8"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fb508208-eb8d-4f94-95fd-dffc7c715829 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1505&$top=914&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1555&$top=864&$maxpagesize=50"}' + headers: + apim-request-id: + - 28cf6e9f-6ee9-40b8-ad0e-5980340cde89 + cache-control: + - public,max-age=1 + content-length: + - '14804' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:02 GMT + etag: + - '"CB7DAB6E0F5059EE5F3F9FEB389362D0F59E9030617DE4E71822E651F377F226"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 28cf6e9f-6ee9-40b8-ad0e-5980340cde89 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1555&$top=864&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1605&$top=814&$maxpagesize=50"}' + headers: + apim-request-id: + - 12761db4-f229-482d-8ff5-272a76da0f90 + cache-control: + - public,max-age=1 + content-length: + - '14784' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:02 GMT + etag: + - '"EC11EEC52F65B1C8150E00283F0EC71F9DADCDDFA2B2F626002FD369BB667F1B"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 12761db4-f229-482d-8ff5-272a76da0f90 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1605&$top=814&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1655&$top=764&$maxpagesize=50"}' + headers: + apim-request-id: + - 82c95a8d-2248-45a1-a7ad-d85210c9f7e6 + cache-control: + - public,max-age=1 + content-length: + - '14800' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:02 GMT + etag: + - '"228CD84C0D654EBCE4B17CB25129E373F3FAFB39E4D32D40F5EC9FA5F02073C6"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 82c95a8d-2248-45a1-a7ad-d85210c9f7e6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1655&$top=764&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1705&$top=714&$maxpagesize=50"}' + headers: + apim-request-id: + - 273ed649-23c9-4ea2-8450-44183f6854a6 + cache-control: + - public,max-age=1 + content-length: + - '14796' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:02 GMT + etag: + - '"403500C3C5E421DD531E760F43070669CF7FF2D2DDEAEDDCBDF48BEB103B771E"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 273ed649-23c9-4ea2-8450-44183f6854a6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1705&$top=714&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1755&$top=664&$maxpagesize=50"}' + headers: + apim-request-id: + - fcbd242a-b1a9-4049-b2e5-e5bf043b76fe + cache-control: + - public,max-age=1 + content-length: + - '14795' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:03 GMT + etag: + - '"F421B7575F1BB06970AA14D9183BA4C9731D9EEB009E281F4C173027C5FDD937"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - fcbd242a-b1a9-4049-b2e5-e5bf043b76fe + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1755&$top=664&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1805&$top=614&$maxpagesize=50"}' + headers: + apim-request-id: + - 22d75571-50a1-41fc-9db4-9a5423bfc5e3 + cache-control: + - public,max-age=1 + content-length: + - '14798' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:03 GMT + etag: + - '"D247E05555A312A3F478D03CE9E01296943FD1FDF4D7757C02BF3C062F350D53"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 22d75571-50a1-41fc-9db4-9a5423bfc5e3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1805&$top=614&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1855&$top=564&$maxpagesize=50"}' + headers: + apim-request-id: + - e6000f1a-252f-4183-ad0c-9c710cc78387 + cache-control: + - public,max-age=1 + content-length: + - '14797' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:03 GMT + etag: + - '"6B446C1EC321509F536C234556531AC582B1E9E6E460BAA75556A044E9B44D20"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e6000f1a-252f-4183-ad0c-9c710cc78387 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1855&$top=564&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1905&$top=514&$maxpagesize=50"}' + headers: + apim-request-id: + - 78055612-fb71-4f69-8355-3e1b620fb609 + cache-control: + - public,max-age=1 + content-length: + - '14802' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:04 GMT + etag: + - '"5E00E3942463533880AF350570E47AF2E411A6E2298D655943E6BF4B3200C7D4"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 78055612-fb71-4f69-8355-3e1b620fb609 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1905&$top=514&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1955&$top=464&$maxpagesize=50"}' + headers: + apim-request-id: + - 86ef3667-c4fb-49f0-a59a-6be3a948bf46 + cache-control: + - public,max-age=1 + content-length: + - '14800' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:04 GMT + etag: + - '"49523D3F192137E6273FF3C0CFCFC9CDFA3D8F72D8E7666B826B1714338AE9E7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 86ef3667-c4fb-49f0-a59a-6be3a948bf46 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1955&$top=464&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2005&$top=414&$maxpagesize=50"}' + headers: + apim-request-id: + - 63d8c3e2-3706-4065-88e7-1dea4fa1f458 + cache-control: + - public,max-age=1 + content-length: + - '14806' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:04 GMT + etag: + - '"2B79A3BAEC34843184081D771D515081A4DC74513FC92124422E9F338248F9D5"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 63d8c3e2-3706-4065-88e7-1dea4fa1f458 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2005&$top=414&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2055&$top=364&$maxpagesize=50"}' + headers: + apim-request-id: + - ec29877c-9037-4c3e-8dab-539fc5e8b495 + cache-control: + - public,max-age=1 + content-length: + - '14793' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:05 GMT + etag: + - '"284D243DE89A7537C62379B532E5FC624134BA053F82C8289B7FD308C2563D12"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - ec29877c-9037-4c3e-8dab-539fc5e8b495 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2055&$top=364&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2105&$top=314&$maxpagesize=50"}' + headers: + apim-request-id: + - 36f7800d-d0bd-47c4-a60e-f245453d4a09 + cache-control: + - public,max-age=1 + content-length: + - '14790' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:05 GMT + etag: + - '"B8DF990F23ACECD63978FE1660F34F7F4E7FBE26822F10B7265C390F028A51FF"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 36f7800d-d0bd-47c4-a60e-f245453d4a09 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2105&$top=314&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2155&$top=264&$maxpagesize=50"}' + headers: + apim-request-id: + - 909ba4a2-b2f5-44b5-aa62-ad18b3b4a2b4 + cache-control: + - public,max-age=1 + content-length: + - '14797' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:05 GMT + etag: + - '"544B53209F33BCE63D04E82BD2A47352D43081DE24F01193ABE6B568B833BAC7"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 909ba4a2-b2f5-44b5-aa62-ad18b3b4a2b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2155&$top=264&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2205&$top=214&$maxpagesize=50"}' + headers: + apim-request-id: + - d288bb6a-474e-4fd6-bdff-6789009cae88 + cache-control: + - public,max-age=1 + content-length: + - '14796' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:05 GMT + etag: + - '"D4AFD8F127BB5F92EFFA637E3887CCB6CAF50D806065576487D7701E11DD8EFC"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - d288bb6a-474e-4fd6-bdff-6789009cae88 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2205&$top=214&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2255&$top=164&$maxpagesize=50"}' + headers: + apim-request-id: + - 31b5980c-b26c-4fc0-8827-73a782a6b2f9 + cache-control: + - public,max-age=1 + content-length: + - '14801' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:06 GMT + etag: + - '"0E4A21A13BD907A67CD453413965E2913B4733408D5D2C2949C21E43A3D48837"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 31b5980c-b26c-4fc0-8827-73a782a6b2f9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2255&$top=164&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2305&$top=114&$maxpagesize=50"}' + headers: + apim-request-id: + - b8f55a87-4c28-4a60-b8e2-ff6c012bda6e + cache-control: + - public,max-age=1 + content-length: + - '15075' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:06 GMT + etag: + - '"89190BD670468786C83840701B3968AD4E379EC67CF65F65BB03367A28647824"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - b8f55a87-4c28-4a60-b8e2-ff6c012bda6e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2305&$top=114&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2355&$top=64&$maxpagesize=50"}' + headers: + apim-request-id: + - f079d67a-6077-4e5e-acb5-9809d48ac43d + cache-control: + - public,max-age=1 + content-length: + - '15049' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:06 GMT + etag: + - '"32141702B1F7DFBEC577AB2AF89D3FBE1B90D296C710D05FE51ACA8BBFA4873F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f079d67a-6077-4e5e-acb5-9809d48ac43d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2355&$top=64&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2405&$top=14&$maxpagesize=50"}' + headers: + apim-request-id: + - 65b26f2a-26b6-4f89-b383-dd04c8774870 + cache-control: + - public,max-age=1 + content-length: + - '18991' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:07 GMT + etag: + - '"3C470DE8D147AA82DDB5D5CAF54C2B43F1CB43CA3C80A50D1BD76B7ED528AA77"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 65b26f2a-26b6-4f89-b383-dd04c8774870 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2405&$top=14&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: + - 53041c38-78e3-496e-a0cd-13d7aebd73c0 + cache-control: + - public,max-age=1 + content-length: + - '5500' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 20:55:07 GMT + etag: + - '"A62B56A0D2F0795BDB4FD92493E668D2362781F3AB24A285075E34CF22CC0715"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 53041c38-78e3-496e-a0cd-13d7aebd73c0 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs.yaml index 90eee233169b..c8a6b09f26a9 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:13:46 GMT + - Thu, 06 May 2021 20:55:08 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src435bc146-028f-4747-8600-a34987c6e5ec?restype=container + uri: https://redacted.blob.core.windows.net/srcf110698a-3a34-4867-8ca0-9837372b0b98?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:13:46 GMT + - Thu, 06 May 2021 20:55:08 GMT etag: - - '"0x8D8F492410CAB66"' + - '"0x8D910D13BF79DCD"' last-modified: - - Wed, 31 Mar 2021 22:13:46 GMT + - Thu, 06 May 2021 20:55:08 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -38,7 +38,7 @@ interactions: code: 201 message: Created - request: - body: This is some text + body: This is written in english. headers: Accept: - application/xml @@ -47,23 +47,21 @@ interactions: Connection: - keep-alive Content-Length: - - '17' + - '27' Content-Type: - application/octet-stream If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:13:47 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 20:55:09 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src435bc146-028f-4747-8600-a34987c6e5ec/67ae1ab8-fec0-4d18-9663-e0a7710b4c3c.txt + uri: https://redacted.blob.core.windows.net/srcf110698a-3a34-4867-8ca0-9837372b0b98/fd7bfb70-9092-46d9-bd15-36fc62ab03ea.txt response: body: string: '' @@ -71,17 +69,1769 @@ interactions: content-length: - '0' content-md5: - - lyFPYyJLwenMTaN3qtznxw== + - mYgA0QpY6baiB+xZp8Hk+A== date: - - Wed, 31 Mar 2021 22:13:46 GMT + - Thu, 06 May 2021 20:55:08 GMT etag: - - '"0x8D8F4924133F313"' + - '"0x8D910D13C1B6570"' last-modified: - - Wed, 31 Mar 2021 22:13:46 GMT + - Thu, 06 May 2021 20:55:09 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: - - SqmNKeH10UQ= + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf110698a-3a34-4867-8ca0-9837372b0b98/07a730cd-3a8f-4983-896e-e2289f90a9e2.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:08 GMT + etag: + - '"0x8D910D13C3EAB38"' + last-modified: + - Thu, 06 May 2021 20:55:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf110698a-3a34-4867-8ca0-9837372b0b98/41da6a99-d154-48b5-9e43-b2ccd3ac8403.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:09 GMT + etag: + - '"0x8D910D13C623F52"' + last-modified: + - Thu, 06 May 2021 20:55:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf110698a-3a34-4867-8ca0-9837372b0b98/5b0d482e-181f-4f84-a2b9-fa78425858f5.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:09 GMT + etag: + - '"0x8D910D13C862177"' + last-modified: + - Thu, 06 May 2021 20:55:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:10 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf110698a-3a34-4867-8ca0-9837372b0b98/96b9d2f7-b62a-4ca3-ab35-15074ad752fd.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:09 GMT + etag: + - '"0x8D910D13CA9DC9D"' + last-modified: + - Thu, 06 May 2021 20:55:10 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:10 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target42fbd47e-9ad1-4997-ac23-5742fc726572?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:10 GMT + etag: + - '"0x8D910D13D3453B6"' + last-modified: + - Thu, 06 May 2021 20:55:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf110698a-3a34-4867-8ca0-9837372b0b98?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target42fbd47e-9ad1-4997-ac23-5742fc726572?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 7e7b704a-7f06-4891-9ddb-e0f6aaedf830 + content-length: '0' + date: Thu, 06 May 2021 20:55:10 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8792cce1-19ea-4d45-9232-6739e9930a20 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7e7b704a-7f06-4891-9ddb-e0f6aaedf830 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8792cce1-19ea-4d45-9232-6739e9930a20 + response: + body: + string: '{"id":"8792cce1-19ea-4d45-9232-6739e9930a20","createdDateTimeUtc":"2021-05-06T20:55:11.6049885Z","lastActionDateTimeUtc":"2021-05-06T20:55:11.6049888Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 927e6fb4-7c4e-4e42-8378-1fb2a6e57c68 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:10 GMT + etag: '"2DA7558E7EB761F8B2C734FD5FDB205AD22CEA515DA04D1CE82390B0E63F7F54"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 927e6fb4-7c4e-4e42-8378-1fb2a6e57c68 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8792cce1-19ea-4d45-9232-6739e9930a20 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:11 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src322df12f-6eb0-49f7-a48f-5b4b1b41665b?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:12 GMT + etag: + - '"0x8D910D13E29F5B0"' + last-modified: + - Thu, 06 May 2021 20:55:12 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:12 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src322df12f-6eb0-49f7-a48f-5b4b1b41665b/7cdf0621-c74a-40ca-aa24-d65481e4fc91.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:12 GMT + etag: + - '"0x8D910D13E4E8A76"' + last-modified: + - Thu, 06 May 2021 20:55:12 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:13 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src322df12f-6eb0-49f7-a48f-5b4b1b41665b/b2ff17e4-50f1-422c-a4d7-ca45593b1af8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:12 GMT + etag: + - '"0x8D910D13E73A56A"' + last-modified: + - Thu, 06 May 2021 20:55:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:13 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src322df12f-6eb0-49f7-a48f-5b4b1b41665b/257c1ef9-5dfb-4726-af07-9dbd3087301c.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:12 GMT + etag: + - '"0x8D910D13E9A9561"' + last-modified: + - Thu, 06 May 2021 20:55:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:13 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src322df12f-6eb0-49f7-a48f-5b4b1b41665b/62913028-9f66-4cbf-bc5b-39ba5e0f3611.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:13 GMT + etag: + - '"0x8D910D13EC2970A"' + last-modified: + - Thu, 06 May 2021 20:55:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:13 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src322df12f-6eb0-49f7-a48f-5b4b1b41665b/b91c2cad-7c26-472f-9a2a-4bdc7b4ab125.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:13 GMT + etag: + - '"0x8D910D13EE911BE"' + last-modified: + - Thu, 06 May 2021 20:55:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:14 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetb81be84c-8469-4bb0-bd35-5e02b4911bd2?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:14 GMT + etag: + - '"0x8D910D13F8B2F22"' + last-modified: + - Thu, 06 May 2021 20:55:14 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src322df12f-6eb0-49f7-a48f-5b4b1b41665b?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb81be84c-8469-4bb0-bd35-5e02b4911bd2?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 3cd30f51-9d46-47f8-b21c-6186d48a4346 + content-length: '0' + date: Thu, 06 May 2021 20:55:14 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6bd767a7-bb87-49cb-b588-18ed193a8c85 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3cd30f51-9d46-47f8-b21c-6186d48a4346 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6bd767a7-bb87-49cb-b588-18ed193a8c85 + response: + body: + string: '{"id":"6bd767a7-bb87-49cb-b588-18ed193a8c85","createdDateTimeUtc":"2021-05-06T20:55:15.1851317Z","lastActionDateTimeUtc":"2021-05-06T20:55:15.185132Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 5bbba8cd-1940-476c-823c-74203c35a20f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:14 GMT + etag: '"404E6E97F84535A1A8DD0FEB56100B147B6A8C1A418FEA0087454DD326BC6618"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5bbba8cd-1940-476c-823c-74203c35a20f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6bd767a7-bb87-49cb-b588-18ed193a8c85 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:15 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb63073dc-0a55-4227-8eaa-ddbccfd91350?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:15 GMT + etag: + - '"0x8D910D1404D047C"' + last-modified: + - Thu, 06 May 2021 20:55:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb63073dc-0a55-4227-8eaa-ddbccfd91350/c61e5116-cad7-4f3e-bd1b-c7370deb3faa.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:16 GMT + etag: + - '"0x8D910D14072DF7B"' + last-modified: + - Thu, 06 May 2021 20:55:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb63073dc-0a55-4227-8eaa-ddbccfd91350/9d323a92-921f-4f7c-97e4-9d8557be9ea0.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:16 GMT + etag: + - '"0x8D910D14098217B"' + last-modified: + - Thu, 06 May 2021 20:55:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb63073dc-0a55-4227-8eaa-ddbccfd91350/8ed7638a-226b-4032-b680-9b4619f026a8.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:16 GMT + etag: + - '"0x8D910D140BD638D"' + last-modified: + - Thu, 06 May 2021 20:55:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb63073dc-0a55-4227-8eaa-ddbccfd91350/91843a4d-10f5-4601-b8bc-b29e3c1290fb.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:16 GMT + etag: + - '"0x8D910D140E27E73"' + last-modified: + - Thu, 06 May 2021 20:55:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb63073dc-0a55-4227-8eaa-ddbccfd91350/d104d02a-a634-48cc-90e6-3feb11fa2727.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:16 GMT + etag: + - '"0x8D910D14105EB76"' + last-modified: + - Thu, 06 May 2021 20:55:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target927cb31b-e2d3-4bc9-8aae-1e49da579dab?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:18 GMT + etag: + - '"0x8D910D14192DC13"' + last-modified: + - Thu, 06 May 2021 20:55:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb63073dc-0a55-4227-8eaa-ddbccfd91350?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target927cb31b-e2d3-4bc9-8aae-1e49da579dab?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 215c08cf-de14-4131-9981-5143540c4da6 + content-length: '0' + date: Thu, 06 May 2021 20:55:18 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e317b832-94ee-49aa-9bd0-93fbff05be0c + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 215c08cf-de14-4131-9981-5143540c4da6 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e317b832-94ee-49aa-9bd0-93fbff05be0c + response: + body: + string: '{"id":"e317b832-94ee-49aa-9bd0-93fbff05be0c","createdDateTimeUtc":"2021-05-06T20:55:18.586865Z","lastActionDateTimeUtc":"2021-05-06T20:55:18.5868655Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b90d0857-852e-4073-9258-138f54176936 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:18 GMT + etag: '"BB43FC9CB7F90D637E6306DDFBFBEE507B612D663711AC26AE2839742B0596EC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b90d0857-852e-4073-9258-138f54176936 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e317b832-94ee-49aa-9bd0-93fbff05be0c +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:18 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9387e71b-63c4-42d5-b489-77a8251f10d6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:19 GMT + etag: + - '"0x8D910D1425608B6"' + last-modified: + - Thu, 06 May 2021 20:55:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9387e71b-63c4-42d5-b489-77a8251f10d6/99ef6ae4-b3ac-454f-b19a-001b90e454c6.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:19 GMT + etag: + - '"0x8D910D1427DB4B4"' + last-modified: + - Thu, 06 May 2021 20:55:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9387e71b-63c4-42d5-b489-77a8251f10d6/ed10535c-8875-417c-bcfb-3ac30430806c.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:19 GMT + etag: + - '"0x8D910D142A4A4BD"' + last-modified: + - Thu, 06 May 2021 20:55:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9387e71b-63c4-42d5-b489-77a8251f10d6/40042df8-75d2-4140-9cfc-cda3829f2222.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:20 GMT + etag: + - '"0x8D910D142CE0626"' + last-modified: + - Thu, 06 May 2021 20:55:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9387e71b-63c4-42d5-b489-77a8251f10d6/64ad42e1-953b-4bb3-919d-54acea993062.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:20 GMT + etag: + - '"0x8D910D142F67D12"' + last-modified: + - Thu, 06 May 2021 20:55:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9387e71b-63c4-42d5-b489-77a8251f10d6/0a8f0fc7-00c8-4de9-bd81-665a270f44bf.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:20 GMT + etag: + - '"0x8D910D1431B97FD"' + last-modified: + - Thu, 06 May 2021 20:55:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target9a102133-3527-4aae-999c-5afbfcb0300d?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:21 GMT + etag: + - '"0x8D910D143AFE901"' + last-modified: + - Thu, 06 May 2021 20:55:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9387e71b-63c4-42d5-b489-77a8251f10d6?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9a102133-3527-4aae-999c-5afbfcb0300d?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 6eeceb36-a5dd-452a-88d8-8da872965332 + content-length: '0' + date: Thu, 06 May 2021 20:55:21 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8a71f70b-97ab-4af6-858d-c7fb29a04365 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6eeceb36-a5dd-452a-88d8-8da872965332 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8a71f70b-97ab-4af6-858d-c7fb29a04365 + response: + body: + string: '{"id":"8a71f70b-97ab-4af6-858d-c7fb29a04365","createdDateTimeUtc":"2021-05-06T20:55:22.1332246Z","lastActionDateTimeUtc":"2021-05-06T20:55:22.1332249Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: cffe0cbf-6b06-414a-8ae4-ac59a4eda2e0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:21 GMT + etag: '"D931FC8C7A5EAA310E58945B3B20DEB902266D257F9D33DB5E4530B5265F9960"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cffe0cbf-6b06-414a-8ae4-ac59a4eda2e0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8a71f70b-97ab-4af6-858d-c7fb29a04365 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src431c3cf8-2d19-4021-b618-212508e16f53?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:22 GMT + etag: + - '"0x8D910D144720D41"' + last-modified: + - Thu, 06 May 2021 20:55:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src431c3cf8-2d19-4021-b618-212508e16f53/08675985-521c-45e2-af8c-0ef8699b8358.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:23 GMT + etag: + - '"0x8D910D14498E059"' + last-modified: + - Thu, 06 May 2021 20:55:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src431c3cf8-2d19-4021-b618-212508e16f53/a5d374b0-81b7-4535-8d43-63ba200929d6.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:23 GMT + etag: + - '"0x8D910D144BDAD2F"' + last-modified: + - Thu, 06 May 2021 20:55:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src431c3cf8-2d19-4021-b618-212508e16f53/c65046d8-6af7-41d8-be5c-11011dd5d02c.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:23 GMT + etag: + - '"0x8D910D144E3D9D3"' + last-modified: + - Thu, 06 May 2021 20:55:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src431c3cf8-2d19-4021-b618-212508e16f53/b70c13da-d306-444f-a0a0-5290877b5ca0.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:23 GMT + etag: + - '"0x8D910D14507BC1E"' + last-modified: + - Thu, 06 May 2021 20:55:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src431c3cf8-2d19-4021-b618-212508e16f53/6ffa597d-ae8c-46c5-8b68-a51ca544ba2d.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:24 GMT + etag: + - '"0x8D910D1452D9A7E"' + last-modified: + - Thu, 06 May 2021 20:55:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= x-ms-request-server-encrypted: - 'true' x-ms-version: @@ -101,13 +1851,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:13:47 GMT + - Thu, 06 May 2021 20:55:24 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targetc2e68fcd-627e-40ea-b5cb-8bb439e25065?restype=container + uri: https://redacted.blob.core.windows.net/target539d7de7-2400-4333-82b8-ec02705f76d6?restype=container response: body: string: '' @@ -115,11 +1865,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:13:48 GMT + - Thu, 06 May 2021 20:55:25 GMT etag: - - '"0x8D8F49241FC1D68"' + - '"0x8D910D145BEF0A6"' last-modified: - - Wed, 31 Mar 2021 22:13:48 GMT + - Thu, 06 May 2021 20:55:25 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,33 +1878,33 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src435bc146-028f-4747-8600-a34987c6e5ec?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc2e68fcd-627e-40ea-b5cb-8bb439e25065?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src431c3cf8-2d19-4021-b618-212508e16f53?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target539d7de7-2400-4333-82b8-ec02705f76d6?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '490' + - '488' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: 34c8861a-09b4-49e2-a49e-5f74deb41e93 + apim-request-id: c242db0f-b842-4cd3-ab7d-1abc517b6021 content-length: '0' - date: Wed, 31 Mar 2021 22:13:48 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + date: Thu, 06 May 2021 20:55:25 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/3491bd7b-faee-4cbf-988c-9e9dff6b5214 set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 34c8861a-09b4-49e2-a49e-5f74deb41e93 + x-requestid: c242db0f-b842-4cd3-ab7d-1abc517b6021 status: code: 202 message: Accepted @@ -165,1567 +1915,1476 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3491bd7b-faee-4cbf-988c-9e9dff6b5214 response: body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:48.918274Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"3491bd7b-faee-4cbf-988c-9e9dff6b5214","createdDateTimeUtc":"2021-05-06T20:55:25.5887053Z","lastActionDateTimeUtc":"2021-05-06T20:55:25.5887056Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: bce972df-b8b6-41f8-9d4d-d118570a8181 + apim-request-id: a84591c0-ffa9-4b4b-a29d-ee599d299d4c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:49 GMT - etag: '"5A3ADD7272C2FD9F80B716BEB17B697F878366EEEC3EA6CF7CD52BBCF8D89970"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:25 GMT + etag: '"D18D5529D651F3CBE7A0D582216ADCAB887BC47EAA656B4A61E74306DE2514B6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: bce972df-b8b6-41f8-9d4d-d118570a8181 + x-requestid: a84591c0-ffa9-4b4b-a29d-ee599d299d4c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/3491bd7b-faee-4cbf-988c-9e9dff6b5214 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0 response: body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:48.918274Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"3491bd7b-faee-4cbf-988c-9e9dff6b5214","createdDateTimeUtc":"2021-05-06T20:55:25.5887053Z","lastActionDateTimeUtc":"2021-05-06T20:55:25.5887056Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a71f70b-97ab-4af6-858d-c7fb29a04365","createdDateTimeUtc":"2021-05-06T20:55:22.1332246Z","lastActionDateTimeUtc":"2021-05-06T20:55:25.3184848Z","status":"NotStarted","summary":{"total":5,"failed":0,"success":0,"inProgress":0,"notYetStarted":5,"cancelled":0,"totalCharacterCharged":0}},{"id":"e317b832-94ee-49aa-9bd0-93fbff05be0c","createdDateTimeUtc":"2021-05-06T20:55:18.586865Z","lastActionDateTimeUtc":"2021-05-06T20:55:23.2186936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6bd767a7-bb87-49cb-b588-18ed193a8c85","createdDateTimeUtc":"2021-05-06T20:55:15.1851317Z","lastActionDateTimeUtc":"2021-05-06T20:55:19.8840932Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8792cce1-19ea-4d45-9232-6739e9930a20","createdDateTimeUtc":"2021-05-06T20:55:11.6049885Z","lastActionDateTimeUtc":"2021-05-06T20:55:18.6714173Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"61dcde6e-cc80-4dd5-966d-837ba83e0ecb","createdDateTimeUtc":"2021-05-06T20:54:39.714637Z","lastActionDateTimeUtc":"2021-05-06T20:54:43.1491955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a078c47e-81d5-48a2-9bd0-2bb06781ed31","createdDateTimeUtc":"2021-05-06T20:54:37.0750245Z","lastActionDateTimeUtc":"2021-05-06T20:54:40.170261Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3d0ea5b8-4028-4368-9055-1909b1a48879","createdDateTimeUtc":"2021-05-06T20:54:34.4125052Z","lastActionDateTimeUtc":"2021-05-06T20:54:37.4692205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"984488d1-d483-4e43-a3bd-03c0ee927395","createdDateTimeUtc":"2021-05-06T20:54:31.7380529Z","lastActionDateTimeUtc":"2021-05-06T20:54:34.3520813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fa48f36-547c-4994-8457-59fb9e8409f7","createdDateTimeUtc":"2021-05-06T20:54:29.0375092Z","lastActionDateTimeUtc":"2021-05-06T20:54:32.4424323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bc07d0-942c-4273-992e-53ed54f806ed","createdDateTimeUtc":"2021-05-06T20:54:26.3866081Z","lastActionDateTimeUtc":"2021-05-06T20:54:29.33425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45f5e5e7-ae1e-44b3-adc4-6913cd5c8413","createdDateTimeUtc":"2021-05-06T20:54:23.7599762Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9593749d-938a-421f-a569-22abf0a93dad","createdDateTimeUtc":"2021-05-06T20:54:21.060224Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.115287Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a679740-861b-4230-a782-30c632a0f98a","createdDateTimeUtc":"2021-05-06T20:54:18.389999Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"704284cb-eef3-4719-a645-34bb5d3570ec","createdDateTimeUtc":"2021-05-06T20:54:15.7426458Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.5490811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:31.7799976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:28.6916857Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:27.2981028Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7455463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7237955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.6065399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.5123621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.0499248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2374&$maxpagesize=50"}' headers: - apim-request-id: 4cd2e2b9-b8d1-438c-9494-79e5a48beefc + apim-request-id: 26327b92-8983-4f2b-b3dd-430846e4a2f1 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:49 GMT - etag: '"5A3ADD7272C2FD9F80B716BEB17B697F878366EEEC3EA6CF7CD52BBCF8D89970"' + date: Thu, 06 May 2021 20:55:25 GMT + etag: '"1376D60DB9C46E0209E432F7CD8A2B62A4A9CD9A3EC31A018D9B3C4B22F36F1B"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4cd2e2b9-b8d1-438c-9494-79e5a48beefc + x-requestid: 26327b92-8983-4f2b-b3dd-430846e4a2f1 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=0 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2374&$maxpagesize=50 response: body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:49.9529965Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2324&$maxpagesize=50"}' headers: - apim-request-id: 7d8979aa-da31-4f62-b7ab-63ed759425c3 + apim-request-id: ab15b446-90e4-4f18-8ca9-5d306d240edb cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:50 GMT - etag: '"9B32296DEEB0628FA7F32ABCDE3F960FD0FD2DE29A7A9C0FF19A1F55F8810B0C"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:25 GMT + etag: '"9A40B6DF4EDE2F198303CD7DA726A4298BF89470B0B24912B0AC93BD9C5BED71"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7d8979aa-da31-4f62-b7ab-63ed759425c3 + x-requestid: ab15b446-90e4-4f18-8ca9-5d306d240edb status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=50&$top=2374&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2324&$maxpagesize=50 response: body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:49.9529965Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2274&$maxpagesize=50"}' headers: - apim-request-id: 53b0e77b-5495-49d8-a0d3-0fb9a6328c66 + apim-request-id: 4ce7167f-66e0-403a-8029-b5394799cd68 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:51 GMT - etag: '"9B32296DEEB0628FA7F32ABCDE3F960FD0FD2DE29A7A9C0FF19A1F55F8810B0C"' + date: Thu, 06 May 2021 20:55:25 GMT + etag: '"727C7303A840CDD04E325E2272C948FD6ACE0B8F46D13C9EB5BAF1968474E178"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 53b0e77b-5495-49d8-a0d3-0fb9a6328c66 + x-requestid: 4ce7167f-66e0-403a-8029-b5394799cd68 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=100&$top=2324&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2274&$maxpagesize=50 response: body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:49.9529965Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2224&$maxpagesize=50"}' headers: - apim-request-id: d9dd3f5d-48c3-4dc3-89e6-67f6f9abc5d9 + apim-request-id: 6909317f-bd68-4bcf-af59-c2c97968bd22 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:52 GMT - etag: '"9B32296DEEB0628FA7F32ABCDE3F960FD0FD2DE29A7A9C0FF19A1F55F8810B0C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:26 GMT + etag: '"AC616A7B9DC4FD069F48258182DE9998D58B9A51DBC5C98A1D205887BEAA79BD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d9dd3f5d-48c3-4dc3-89e6-67f6f9abc5d9 + x-requestid: 6909317f-bd68-4bcf-af59-c2c97968bd22 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=150&$top=2274&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2224&$maxpagesize=50 response: body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:49.9529965Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2174&$maxpagesize=50"}' headers: - apim-request-id: aa5273bc-3bde-4e0b-8bb3-881c0ec66bbf + apim-request-id: 35ac7106-528d-4fc1-87ed-10784ec07624 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:53 GMT - etag: '"9B32296DEEB0628FA7F32ABCDE3F960FD0FD2DE29A7A9C0FF19A1F55F8810B0C"' + date: Thu, 06 May 2021 20:55:26 GMT + etag: '"564EDA9E9A96F5B010E461238491B0ED5DC61BA638ADCA62F9353E5BD3695467"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: aa5273bc-3bde-4e0b-8bb3-881c0ec66bbf - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 - response: - body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:54.4623779Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: d8c95545-df1a-4402-84b2-9bcfc7f1e246 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:54 GMT - etag: '"CB2FDD34858F1B56A404F3584FC24FFC47764399795226022C8EA2D19EDAFD37"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: d8c95545-df1a-4402-84b2-9bcfc7f1e246 + x-requestid: 35ac7106-528d-4fc1-87ed-10784ec07624 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=200&$top=2224&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2174&$maxpagesize=50 response: body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:54.4623779Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2124&$maxpagesize=50"}' headers: - apim-request-id: 4c55cbd6-6c41-49b4-94ed-61aa9b6eb7da + apim-request-id: 45042cf4-8534-4354-93ee-85e7e26f7e7a cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:56 GMT - etag: '"CB2FDD34858F1B56A404F3584FC24FFC47764399795226022C8EA2D19EDAFD37"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:26 GMT + etag: '"9154BFE12529B9E59C2682D76FF93731DD80433CDF77E7DB6D18BEEEBC8E2F74"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4c55cbd6-6c41-49b4-94ed-61aa9b6eb7da + x-requestid: 45042cf4-8534-4354-93ee-85e7e26f7e7a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=250&$top=2174&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2124&$maxpagesize=50 response: body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:54.4623779Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2074&$maxpagesize=50"}' headers: - apim-request-id: 5794daf0-c54e-434f-8960-c6cf6f7f3f63 + apim-request-id: 35e9e7df-172c-4e39-9d50-7bf9cdead788 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:57 GMT - etag: '"CB2FDD34858F1B56A404F3584FC24FFC47764399795226022C8EA2D19EDAFD37"' + date: Thu, 06 May 2021 20:55:27 GMT + etag: '"1F28B80C2E35B5D7CB835280C1A3FB80083F6A351F3120DE3311432ABB2CCE00"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5794daf0-c54e-434f-8960-c6cf6f7f3f63 + x-requestid: 35e9e7df-172c-4e39-9d50-7bf9cdead788 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=300&$top=2124&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2074&$maxpagesize=50 response: body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:54.4623779Z","status":"Running","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2024&$maxpagesize=50"}' headers: - apim-request-id: 1fef5f25-9e9b-4900-af99-20b94462d287 + apim-request-id: 3456f117-f068-4056-b5d0-89293c350d4f cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:58 GMT - etag: '"EFFC51009D41F1B523092356F4910D4B2ECE320704EA9E5A69A6607E74AE1674"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:27 GMT + etag: '"4D5EDD97BF3C50CDB73EFF69A76EB36944DA771046C1CDD7DD4C224DA0B44F0C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1fef5f25-9e9b-4900-af99-20b94462d287 + x-requestid: 3456f117-f068-4056-b5d0-89293c350d4f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=350&$top=2074&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2024&$maxpagesize=50 response: body: - string: '{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"value":[{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1974&$maxpagesize=50"}' headers: - apim-request-id: 683718ab-f86f-43e3-83f4-ac681c96bfa1 + apim-request-id: b9f6ef03-3387-4f19-b84d-ad1e8c304e6d cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:13:59 GMT - etag: '"B5EF7A092F13098DA2EA27777F9251875840B17F20347A720E30AF698FC9B318"' + date: Thu, 06 May 2021 20:55:27 GMT + etag: '"02557D1B79BD5165BD2AE262367DBA6B754302AF640B84C44265F10F538A863D"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 683718ab-f86f-43e3-83f4-ac681c96bfa1 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a290c36-d3dd-4b9b-8579-c03ac8cd5427 -- request: - body: null - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Wed, 31 Mar 2021 22:14:00 GMT - x-ms-version: - - '2020-06-12' - method: PUT - uri: https://redacted.blob.core.windows.net/src3fc79595-6cea-46b4-a9ba-95940ade0e6d?restype=container - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Wed, 31 Mar 2021 22:14:00 GMT - etag: - - '"0x8D8F4924963DC07"' - last-modified: - - Wed, 31 Mar 2021 22:14:00 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-06-12' - status: - code: 201 - message: Created -- request: - body: This is some text - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '17' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' - User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Wed, 31 Mar 2021 22:14:01 GMT - x-ms-encryption-algorithm: - - AES256 - x-ms-version: - - '2020-06-12' - method: PUT - uri: https://redacted.blob.core.windows.net/src3fc79595-6cea-46b4-a9ba-95940ade0e6d/7fdeaab9-977d-46c3-a7f4-72e85a558325.txt - response: - body: - string: '' - headers: - content-length: - - '0' - content-md5: - - lyFPYyJLwenMTaN3qtznxw== - date: - - Wed, 31 Mar 2021 22:14:00 GMT - etag: - - '"0x8D8F492498CF0A0"' - last-modified: - - Wed, 31 Mar 2021 22:14:00 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-content-crc64: - - SqmNKeH10UQ= - x-ms-request-server-encrypted: - - 'true' - x-ms-version: - - '2020-06-12' - status: - code: 201 - message: Created + x-requestid: b9f6ef03-3387-4f19-b84d-ad1e8c304e6d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=400&$top=2024&$maxpagesize=50 - request: body: null headers: Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' + - application/json User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Wed, 31 Mar 2021 22:14:01 GMT - x-ms-version: - - '2020-06-12' - method: PUT - uri: https://redacted.blob.core.windows.net/targetb1c4de52-af56-402d-92c4-0c1b23cb9b4e?restype=container + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1974&$maxpagesize=50 response: body: - string: '' + string: '{"value":[{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1924&$maxpagesize=50"}' headers: - content-length: - - '0' - date: - - Wed, 31 Mar 2021 22:14:01 GMT - etag: - - '"0x8D8F4924A307336"' - last-modified: - - Wed, 31 Mar 2021 22:14:02 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-06-12' + apim-request-id: 649ee3eb-8654-403a-a2c9-802599a375e8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:27 GMT + etag: '"7561D6FB713343DB4DC29B4291C7CDDCBB08A3F571A3D3B2389F419CD294AFE8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 649ee3eb-8654-403a-a2c9-802599a375e8 status: - code: 201 - message: Created + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=450&$top=1974&$maxpagesize=50 - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3fc79595-6cea-46b4-a9ba-95940ade0e6d?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb1c4de52-af56-402d-92c4-0c1b23cb9b4e?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", - "language": "es"}]}]}' + body: null headers: Accept: - application/json - Content-Length: - - '490' - Content-Type: - - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1924&$maxpagesize=50 response: body: - string: '' + string: '{"value":[{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1874&$maxpagesize=50"}' headers: - apim-request-id: 3cc751af-4f57-4279-8613-349bf4a71271 - content-length: '0' - date: Wed, 31 Mar 2021 22:14:02 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + apim-request-id: 730ecd65-96a3-4124-9b26-76ad100ad3f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:28 GMT + etag: '"60520448CAD8C2192FA67A4BE4FD2C11F47015667881DDB6F0854421C3F312CC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3cc751af-4f57-4279-8613-349bf4a71271 + x-requestid: 730ecd65-96a3-4124-9b26-76ad100ad3f4 status: - code: 202 - message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=500&$top=1924&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1874&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:02.201214Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1824&$maxpagesize=50"}' headers: - apim-request-id: 13cbf096-ba94-42c0-b6ae-1de6fec06bfd + apim-request-id: 649b0dbc-d20a-40f4-a0c5-534372a69b6b cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:02 GMT - etag: '"CDC332151BFD13B34D32ED8AA4DA0D2E8A6236CE09884B4B1D34C8035D93B022"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:28 GMT + etag: '"9B09B1BFD4035BBA664329B1DFE84640A07D51EEC947C54D67B65D2C903EE429"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 13cbf096-ba94-42c0-b6ae-1de6fec06bfd + x-requestid: 649b0dbc-d20a-40f4-a0c5-534372a69b6b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=550&$top=1874&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1824&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:02.201214Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1774&$maxpagesize=50"}' headers: - age: '0' - apim-request-id: 453be667-f58a-4291-9417-42a6d0117c1f + apim-request-id: 70eb975c-cf45-458f-975b-75276f0d5e7a cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:02 GMT - etag: '"CDC332151BFD13B34D32ED8AA4DA0D2E8A6236CE09884B4B1D34C8035D93B022"' + date: Thu, 06 May 2021 20:55:28 GMT + etag: '"CC8A51DA7BA7B96F5BC408A9701B712725F81D86D67960A50A5B01398C0FF2BB"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 13cbf096-ba94-42c0-b6ae-1de6fec06bfd + x-requestid: 70eb975c-cf45-458f-975b-75276f0d5e7a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=600&$top=1824&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1774&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:03.1946362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1724&$maxpagesize=50"}' headers: - apim-request-id: 205f71c7-c3b3-4511-8a1d-f2c2471f124a + apim-request-id: 98e929e0-e611-42cf-aa56-aa3b2209c7b9 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:03 GMT - etag: '"6B656E0D93236D90471CF431F6965DFE96E9A560536AD4E3E82D0CD6763F4A3C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:28 GMT + etag: '"2A413D2BEB76011AABB8996ADBD39B5689E2853510010B7801648C2CD1BB1E8A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 205f71c7-c3b3-4511-8a1d-f2c2471f124a + x-requestid: 98e929e0-e611-42cf-aa56-aa3b2209c7b9 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=650&$top=1774&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1724&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:03.1946362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1674&$maxpagesize=50"}' headers: - apim-request-id: e7ab1c06-9b67-4333-85cd-9351e8e7cb97 + apim-request-id: 5314e7e3-285e-42f0-87b4-5fa224af3699 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:04 GMT - etag: '"6B656E0D93236D90471CF431F6965DFE96E9A560536AD4E3E82D0CD6763F4A3C"' + date: Thu, 06 May 2021 20:55:29 GMT + etag: '"3D95DD39F8EC98C3B89F70F95B5A3DE3B8F86CAF5E352A549AF35C7BE921DFD9"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e7ab1c06-9b67-4333-85cd-9351e8e7cb97 + x-requestid: 5314e7e3-285e-42f0-87b4-5fa224af3699 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=700&$top=1724&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1674&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:03.1946362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1624&$maxpagesize=50"}' headers: - apim-request-id: 06f8f039-98e3-45a9-88b0-7d5fbf670321 + apim-request-id: 67c0b639-15d7-4651-b152-23d9073b3a9c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:05 GMT - etag: '"6B656E0D93236D90471CF431F6965DFE96E9A560536AD4E3E82D0CD6763F4A3C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:29 GMT + etag: '"181CA58B349D71311DD93189CF0D631D1898FDC2707DF469D5D934FC9EF16BAF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 06f8f039-98e3-45a9-88b0-7d5fbf670321 + x-requestid: 67c0b639-15d7-4651-b152-23d9073b3a9c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=750&$top=1674&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1624&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:03.1946362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1574&$maxpagesize=50"}' headers: - apim-request-id: 3485116b-dd98-4e5c-8fd7-3c7d744aea93 + apim-request-id: c8af78dc-d5ed-4198-b658-ef4ab5508f4c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:07 GMT - etag: '"6B656E0D93236D90471CF431F6965DFE96E9A560536AD4E3E82D0CD6763F4A3C"' + date: Thu, 06 May 2021 20:55:29 GMT + etag: '"58E0B0DC7935B8295B7285EDDF99D7DF76C20D1F7EE2A74EC002D193A9DC3FE4"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3485116b-dd98-4e5c-8fd7-3c7d744aea93 + x-requestid: c8af78dc-d5ed-4198-b658-ef4ab5508f4c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=800&$top=1624&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1574&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:03.1946362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1524&$maxpagesize=50"}' headers: - apim-request-id: f12c8151-44fd-4cca-9cca-2dbe11fd37a4 + apim-request-id: 9a1f1068-69e4-47b7-82cc-64ea5d8e7328 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:08 GMT - etag: '"6B656E0D93236D90471CF431F6965DFE96E9A560536AD4E3E82D0CD6763F4A3C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:29 GMT + etag: '"78F40DB5A65331C1D8D684B54BFECF11E51DCC839FD60313252D66F19CB501A6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f12c8151-44fd-4cca-9cca-2dbe11fd37a4 + x-requestid: 9a1f1068-69e4-47b7-82cc-64ea5d8e7328 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=850&$top=1574&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1524&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:09.4760857Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1474&$maxpagesize=50"}' headers: - apim-request-id: 5f429c56-d659-4400-97ee-ef040452c64a + apim-request-id: 7d8a347e-5178-4ed5-b052-ecfb9a7f4bca cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:09 GMT - etag: '"69F68277274ECF100196D67ECEE0155A94E7594C57896846BB2E3FD6D6418C1C"' + date: Thu, 06 May 2021 20:55:30 GMT + etag: '"FED234EA47B8C87743F6C19277E7F9F45448F8FE3BA2319BA281B21CD649A082"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5f429c56-d659-4400-97ee-ef040452c64a + x-requestid: 7d8a347e-5178-4ed5-b052-ecfb9a7f4bca status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=900&$top=1524&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1474&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:09.4760857Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1424&$maxpagesize=50"}' headers: - apim-request-id: 6f7d4c95-76ab-444d-9562-fdbb9985628c + apim-request-id: 6f532f51-0b61-4ca1-a4bb-337e269d4d2f cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:10 GMT - etag: '"69F68277274ECF100196D67ECEE0155A94E7594C57896846BB2E3FD6D6418C1C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:30 GMT + etag: '"4F8D0FF73747DF336683B82815E3C3CBB95540443590695CE984351B7BBD0621"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6f7d4c95-76ab-444d-9562-fdbb9985628c + x-requestid: 6f532f51-0b61-4ca1-a4bb-337e269d4d2f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=950&$top=1474&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1424&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:09.4760857Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1374&$maxpagesize=50"}' headers: - apim-request-id: 2955f102-1f36-40be-ab07-53c5f1bb16a1 + apim-request-id: 7671574b-f158-490d-a283-40af0c9fe5d3 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:12 GMT - etag: '"69F68277274ECF100196D67ECEE0155A94E7594C57896846BB2E3FD6D6418C1C"' + date: Thu, 06 May 2021 20:55:30 GMT + etag: '"AD0BB581EDC49CFC0867AD9A50EC098834F262CC8CD8BB2D51E2ED6C537D33ED"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2955f102-1f36-40be-ab07-53c5f1bb16a1 + x-requestid: 7671574b-f158-490d-a283-40af0c9fe5d3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1000&$top=1424&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1374&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:09.4760857Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1324&$maxpagesize=50"}' headers: - apim-request-id: 87097067-3d2d-4378-a065-0c4c686f5651 + apim-request-id: 1e5e7f8b-a95e-4d37-9f59-f9ee28442f02 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:13 GMT - etag: '"69F68277274ECF100196D67ECEE0155A94E7594C57896846BB2E3FD6D6418C1C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:30 GMT + etag: '"F7B5EE20A6165715B308B85F6FE8365A55B6ACF3368A6D683FF3A221F833DE0B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 87097067-3d2d-4378-a065-0c4c686f5651 + x-requestid: 1e5e7f8b-a95e-4d37-9f59-f9ee28442f02 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1050&$top=1374&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1324&$maxpagesize=50 response: body: - string: '{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"value":[{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1274&$maxpagesize=50"}' headers: - apim-request-id: 2effa06a-cec6-415b-99bc-e98408925b6f + apim-request-id: 6d4329c6-a6a0-4d0a-8ff4-406098238f8c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:15 GMT - etag: '"D20AE746A2A08CDE6E1925B10A47065252239D3BFF58E06F8F591BEA45362D58"' + date: Thu, 06 May 2021 20:55:31 GMT + etag: '"42F61F7E38F91684453E3A7CA5893774B277420A317BBC3EF90A7F712985D4BB"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2effa06a-cec6-415b-99bc-e98408925b6f + x-requestid: 6d4329c6-a6a0-4d0a-8ff4-406098238f8c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/10733ad7-d257-43cc-8b8c-07ab3227405e + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1100&$top=1324&$maxpagesize=50 - request: body: null headers: Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' + - application/json User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Wed, 31 Mar 2021 22:14:16 GMT - x-ms-version: - - '2020-06-12' - method: PUT - uri: https://redacted.blob.core.windows.net/src360b0ad1-93c4-475c-9bda-adfbc621a0c4?restype=container + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1274&$maxpagesize=50 response: body: - string: '' + string: '{"value":[{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1224&$maxpagesize=50"}' headers: - content-length: - - '0' - date: - - Wed, 31 Mar 2021 22:14:16 GMT - etag: - - '"0x8D8F492530B0C58"' - last-modified: - - Wed, 31 Mar 2021 22:14:16 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-06-12' + apim-request-id: c1587311-48df-4367-ac1e-5e99cf2008a4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:31 GMT + etag: '"66560185DB4820F733F4DB49F73DCFC78D12AB3482C6485D4DEF7647903813FE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c1587311-48df-4367-ac1e-5e99cf2008a4 status: - code: 201 - message: Created + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1150&$top=1274&$maxpagesize=50 - request: - body: This is some text + body: null headers: Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '17' - Content-Type: - - application/octet-stream - If-None-Match: - - '*' + - application/json User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-blob-type: - - BlockBlob - x-ms-date: - - Wed, 31 Mar 2021 22:14:17 GMT - x-ms-encryption-algorithm: - - AES256 - x-ms-version: - - '2020-06-12' - method: PUT - uri: https://redacted.blob.core.windows.net/src360b0ad1-93c4-475c-9bda-adfbc621a0c4/a8176366-0345-4294-a505-f8317b1b4bd4.txt + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1224&$maxpagesize=50 response: body: - string: '' + string: '{"value":[{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1174&$maxpagesize=50"}' headers: - content-length: - - '0' - content-md5: - - lyFPYyJLwenMTaN3qtznxw== - date: - - Wed, 31 Mar 2021 22:14:16 GMT - etag: - - '"0x8D8F49253421479"' - last-modified: - - Wed, 31 Mar 2021 22:14:17 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-content-crc64: - - SqmNKeH10UQ= - x-ms-request-server-encrypted: - - 'true' - x-ms-version: - - '2020-06-12' + apim-request-id: 63b6346c-6b5e-409d-a940-7281b9b7d7d3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:31 GMT + etag: '"ABF2EB8B1BF0604AC7DF19F32618B36A02C56D6E626B49A0B7759EE77E5713AC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 63b6346c-6b5e-409d-a940-7281b9b7d7d3 status: - code: 201 - message: Created + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1200&$top=1224&$maxpagesize=50 - request: body: null headers: Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' + - application/json User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Wed, 31 Mar 2021 22:14:17 GMT - x-ms-version: - - '2020-06-12' - method: PUT - uri: https://redacted.blob.core.windows.net/target9fb975d6-8636-4bc9-94dc-1188d891c9ee?restype=container + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1174&$maxpagesize=50 response: body: - string: '' + string: '{"value":[{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1124&$maxpagesize=50"}' headers: - content-length: - - '0' - date: - - Wed, 31 Mar 2021 22:14:18 GMT - etag: - - '"0x8D8F49253F03A2C"' - last-modified: - - Wed, 31 Mar 2021 22:14:18 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-06-12' + apim-request-id: f4aa1fd1-6a2a-4ed3-abc3-636c6373d7f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:32 GMT + etag: '"98257CA57411B05B820FD64FAAB5E4E67DE431F90F1384933987DA7F0CB7CCEB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f4aa1fd1-6a2a-4ed3-abc3-636c6373d7f4 status: - code: 201 - message: Created + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1250&$top=1174&$maxpagesize=50 - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src360b0ad1-93c4-475c-9bda-adfbc621a0c4?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9fb975d6-8636-4bc9-94dc-1188d891c9ee?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", - "language": "es"}]}]}' + body: null headers: Accept: - application/json - Content-Length: - - '494' - Content-Type: - - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1124&$maxpagesize=50 response: body: - string: '' + string: '{"value":[{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1074&$maxpagesize=50"}' headers: - apim-request-id: def24ffd-9897-4097-8954-70902ebe6d49 - content-length: '0' - date: Wed, 31 Mar 2021 22:14:18 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + apim-request-id: 935e767a-3984-4aba-a0cf-f7db442645ad + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:32 GMT + etag: '"B4FCC1FC9E33A092A83EA9F6F0863949C5E31F2AA4672EAE8B2683E3153498A5"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: def24ffd-9897-4097-8954-70902ebe6d49 + x-requestid: 935e767a-3984-4aba-a0cf-f7db442645ad status: - code: 202 - message: Accepted - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1300&$top=1124&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1074&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:18.5634461Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1024&$maxpagesize=50"}' headers: - apim-request-id: 96a59281-b431-4a7b-8e03-c7f4c66efbc1 + apim-request-id: da1c9813-6e58-4a3c-8c43-6c760e351a4c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:18 GMT - etag: '"8BC5F8847C69AA55AD0A175568914BD19989D8E04BA720072DA9A83E9DFD3718"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:32 GMT + etag: '"24D1D28D68BFF7A00CB084E214E2C27DB18B6FD2DAF2DC6A1959BF53005D6880"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 96a59281-b431-4a7b-8e03-c7f4c66efbc1 + x-requestid: da1c9813-6e58-4a3c-8c43-6c760e351a4c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1350&$top=1074&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1024&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:18.5634461Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=974&$maxpagesize=50"}' headers: - apim-request-id: e4503e7d-001f-4322-8191-de93bec662ed + apim-request-id: 649e7fdd-af6b-4bdc-abf0-1c1bb836be82 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:18 GMT - etag: '"8BC5F8847C69AA55AD0A175568914BD19989D8E04BA720072DA9A83E9DFD3718"' + date: Thu, 06 May 2021 20:55:32 GMT + etag: '"C2AAB99A673E4632DD757E82796BECFBF831A0DB85346E9845A08532B3A93BE5"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e4503e7d-001f-4322-8191-de93bec662ed + x-requestid: 649e7fdd-af6b-4bdc-abf0-1c1bb836be82 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1400&$top=1024&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=974&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:19.566201Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=924&$maxpagesize=50"}' headers: - apim-request-id: 78b7f86f-48be-4436-9711-c5310dd5e2bd + apim-request-id: c5ac9c14-9546-4a2f-bdba-d794edeb407b cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:19 GMT - etag: '"37980EDBE53BEB62CA9BA4C053EE1C13D2D9C55A035AAFE7709C02693D2C5E1F"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:33 GMT + etag: '"D458944FF07CFD76CF1C78E077BBD3B6A10B6B6E7F4D7B475395AE6FA232905F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 78b7f86f-48be-4436-9711-c5310dd5e2bd + x-requestid: c5ac9c14-9546-4a2f-bdba-d794edeb407b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1450&$top=974&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=924&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:19.566201Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=874&$maxpagesize=50"}' headers: - apim-request-id: 3be885e0-39b5-43ed-b27a-30d631c82497 + apim-request-id: f6002f57-10de-458f-a76e-5c2400f91142 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:20 GMT - etag: '"37980EDBE53BEB62CA9BA4C053EE1C13D2D9C55A035AAFE7709C02693D2C5E1F"' + date: Thu, 06 May 2021 20:55:33 GMT + etag: '"896C1C6246062CA6D873A69186EC816703A37EDF6C57006DBEF7508FDA9CA6B1"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3be885e0-39b5-43ed-b27a-30d631c82497 + x-requestid: f6002f57-10de-458f-a76e-5c2400f91142 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1500&$top=924&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=874&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:19.566201Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=824&$maxpagesize=50"}' headers: - apim-request-id: 736c1212-85b1-420c-bc02-c6c55bb02a67 + apim-request-id: c53ee54e-2d21-4664-afa3-3121e7c5babb cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:21 GMT - etag: '"37980EDBE53BEB62CA9BA4C053EE1C13D2D9C55A035AAFE7709C02693D2C5E1F"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:33 GMT + etag: '"026BCFF9564925013442D74F30B3EEE2500E3631C5F115CD273C082482E83E01"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 736c1212-85b1-420c-bc02-c6c55bb02a67 + x-requestid: c53ee54e-2d21-4664-afa3-3121e7c5babb status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1550&$top=874&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=824&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:19.566201Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=774&$maxpagesize=50"}' headers: - apim-request-id: 8255dc96-dd0f-416f-83fe-d0a646f7974f + apim-request-id: 10fc1771-6e4f-484a-9acd-92b906a980bb cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:22 GMT - etag: '"37980EDBE53BEB62CA9BA4C053EE1C13D2D9C55A035AAFE7709C02693D2C5E1F"' + date: Thu, 06 May 2021 20:55:34 GMT + etag: '"095141BBED32B87E928988B61A358AFF3C93648AA05D1CF64380DEDEF4A4D4FE"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8255dc96-dd0f-416f-83fe-d0a646f7974f + x-requestid: 10fc1771-6e4f-484a-9acd-92b906a980bb status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1600&$top=824&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=774&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:24.5248969Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=724&$maxpagesize=50"}' headers: - apim-request-id: 8e57485f-4da9-4cef-96d7-9e6fcbe7b759 + apim-request-id: 3b8ae21b-2333-469c-9e56-621e23b524db cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:24 GMT - etag: '"9F2F924B19E6E190CA41435547DF0E7854A3A0F6894702E8006260B834A9E295"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:34 GMT + etag: '"431891D4244F56895DD447FB6488B9A5ED8C84ECDEA5F2A6D3E6A8640A2AA2CC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8e57485f-4da9-4cef-96d7-9e6fcbe7b759 + x-requestid: 3b8ae21b-2333-469c-9e56-621e23b524db status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1650&$top=774&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=724&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:24.5248969Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=674&$maxpagesize=50"}' headers: - apim-request-id: 0ef0a09c-9190-47e5-8c31-0224bc565ca9 + apim-request-id: 7dbb8640-5a57-4dc6-9e8d-83cce84f7299 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:25 GMT - etag: '"9F2F924B19E6E190CA41435547DF0E7854A3A0F6894702E8006260B834A9E295"' + date: Thu, 06 May 2021 20:55:34 GMT + etag: '"487991294BFAB14BB4746C071DD5F56C6FB3B81D2309070735AB2335AFF4D464"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0ef0a09c-9190-47e5-8c31-0224bc565ca9 + x-requestid: 7dbb8640-5a57-4dc6-9e8d-83cce84f7299 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1700&$top=724&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=674&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:24.5248969Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=624&$maxpagesize=50"}' headers: - apim-request-id: 89d52b7d-718f-4098-a979-de0d74391ea5 + apim-request-id: 84b5464d-2931-439b-b63d-bb639d0c084d cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:26 GMT - etag: '"9F2F924B19E6E190CA41435547DF0E7854A3A0F6894702E8006260B834A9E295"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:34 GMT + etag: '"2BC7541C3449182532356628905C22BF550B19314CE99EC78EE4B1146B72E152"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 89d52b7d-718f-4098-a979-de0d74391ea5 + x-requestid: 84b5464d-2931-439b-b63d-bb639d0c084d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1750&$top=674&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=624&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:24.5248969Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=574&$maxpagesize=50"}' headers: - apim-request-id: 8f2fcde9-fcc8-4244-9477-5d787ac9a854 + apim-request-id: 0299c8a4-ef81-4b0e-a4bc-f50963ed5b35 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:27 GMT - etag: '"9F2F924B19E6E190CA41435547DF0E7854A3A0F6894702E8006260B834A9E295"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:35 GMT + etag: '"0359A10DB925EF9AC7F05AADD3BA987228126BF94EB6CAB7C627DE33D446C4C6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8f2fcde9-fcc8-4244-9477-5d787ac9a854 + x-requestid: 0299c8a4-ef81-4b0e-a4bc-f50963ed5b35 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1800&$top=624&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=574&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:24.5248969Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=524&$maxpagesize=50"}' headers: - apim-request-id: 315bf9d7-b2a6-4236-9df9-4816eae0fd69 + apim-request-id: e35cd55a-40d6-4da4-b7ab-6949949505dc cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:28 GMT - etag: '"9F2F924B19E6E190CA41435547DF0E7854A3A0F6894702E8006260B834A9E295"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:35 GMT + etag: '"4C356669949A358642814018CC74A1F14B92034E682913F67683003F5655683E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 315bf9d7-b2a6-4236-9df9-4816eae0fd69 + x-requestid: e35cd55a-40d6-4da4-b7ab-6949949505dc status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1850&$top=574&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=524&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:24.5248969Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"value":[{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=474&$maxpagesize=50"}' headers: - apim-request-id: 401688ba-ee95-44ff-b3c6-ad36e7a76f6a + apim-request-id: 247298bd-4880-4e85-9a01-ac102e5b0bd1 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:29 GMT - etag: '"9F2F924B19E6E190CA41435547DF0E7854A3A0F6894702E8006260B834A9E295"' + date: Thu, 06 May 2021 20:55:35 GMT + etag: '"E3FDC7161C96267DBD4F2030CA60EFF27DCA8E519A70294E6A45E92E7B22AD09"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 401688ba-ee95-44ff-b3c6-ad36e7a76f6a + x-requestid: 247298bd-4880-4e85-9a01-ac102e5b0bd1 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1900&$top=524&$maxpagesize=50 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=474&$maxpagesize=50 response: body: - string: '{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"value":[{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=424&$maxpagesize=50"}' headers: - apim-request-id: fd097ba1-102a-4896-9f95-436681443224 + apim-request-id: 6933a63e-502d-45ca-9483-fb12d950c2d8 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:30 GMT - etag: '"EC0BEE548BE584CC5406C28E222303D8929A894C129CD0A11372154FE57C3268"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:35 GMT + etag: '"0EB7061567B9B714156E4B44761D7510C6339DCE9B2377458C086511B8A34987"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: fd097ba1-102a-4896-9f95-436681443224 + x-requestid: 6933a63e-502d-45ca-9483-fb12d950c2d8 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6636717c-354f-45a8-b170-d20db4efed14 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1950&$top=474&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=424&$maxpagesize=50 response: body: - string: '{"value":[{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=370&$maxpagesize=50"}' + string: '{"value":[{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=374&$maxpagesize=50"}' headers: - apim-request-id: 1a21214a-4627-43e2-8d3e-778fadb3f293 + apim-request-id: cc97bd06-fee1-4b3e-a38c-16c0004e9df9 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:31 GMT - etag: '"404B8C891A3A4DC8946414885483F421E97671F8B7FECE48BA934B83D8CAB0B8"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:36 GMT + etag: '"DE140C059E4689309ED249A7F05523C11B158EEFB352307FC1E52C55CB81987A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1a21214a-4627-43e2-8d3e-778fadb3f293 + x-requestid: cc97bd06-fee1-4b3e-a38c-16c0004e9df9 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=0&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2000&$top=424&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=370&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=374&$maxpagesize=50 response: body: - string: '{"value":[{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=320&$maxpagesize=50"}' + string: '{"value":[{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=324&$maxpagesize=50"}' headers: - apim-request-id: ab27f3bc-eacd-4781-89c2-41aacb6b3acd + apim-request-id: b3cfcf64-fa6f-4242-9967-6b6bdb7a6ce3 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:31 GMT - etag: '"D115C69C8153CF3E09DE452073B97B3F295E0AA45D238A81A34A6F6CD7E5C76D"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:36 GMT + etag: '"3B1827DBE8CA4EF1DE94D6E336841F22FE760703023BDC6018688143074773CA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ab27f3bc-eacd-4781-89c2-41aacb6b3acd + x-requestid: b3cfcf64-fa6f-4242-9967-6b6bdb7a6ce3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=50&$top=370&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2050&$top=374&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=320&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=324&$maxpagesize=50 response: body: - string: '{"value":[{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=270&$maxpagesize=50"}' + string: '{"value":[{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=274&$maxpagesize=50"}' headers: - apim-request-id: b6441984-fbe1-434b-a51d-e3695fdf1c90 + apim-request-id: c711bd26-33f0-4db3-a3f0-f0fd89011e80 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:31 GMT - etag: '"D23F6E2E50371EF4340A6E7C4F28BDE59393E1FA6DE470039FC82C537666CAFD"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:36 GMT + etag: '"1CBD5A1F4E0B81BF46556067E85623F57EC9E38D4AEF3ACD26EF3CEF77F14578"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b6441984-fbe1-434b-a51d-e3695fdf1c90 + x-requestid: c711bd26-33f0-4db3-a3f0-f0fd89011e80 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=100&$top=320&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2100&$top=324&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=270&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=274&$maxpagesize=50 response: body: - string: '{"value":[{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=220&$maxpagesize=50"}' + string: '{"value":[{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=224&$maxpagesize=50"}' headers: - apim-request-id: 07d84600-0600-4777-9916-5809ed3f47fb + apim-request-id: 73598f39-8da0-4720-a142-2a527f24ad3c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:32 GMT - etag: '"E69734EAFF59711306BA007690F5B69482437576488031571B24837B5EF6518E"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:36 GMT + etag: '"9665EE1494F1CD25CA2354F349170C8707043FA3F25C2352BBCD9F6A08D669E4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 07d84600-0600-4777-9916-5809ed3f47fb + x-requestid: 73598f39-8da0-4720-a142-2a527f24ad3c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=150&$top=270&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2150&$top=274&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=220&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=224&$maxpagesize=50 response: body: - string: '{"value":[{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=170&$maxpagesize=50"}' + string: '{"value":[{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=174&$maxpagesize=50"}' headers: - apim-request-id: ec173ce7-1f2b-41d2-a9d6-5125b7d24ff3 + apim-request-id: db227153-19d2-4dae-9727-69fb14c2f4bc cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:32 GMT - etag: '"1DA2ED66689DB3EA1599DBDCAF7A742ABCF8CDE1D38613C611CEB80D682E218B"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:37 GMT + etag: '"E02034B3B6C899BD26FA0973226066931E11A14E18A1C5A0B5DB500BF143F8AE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ec173ce7-1f2b-41d2-a9d6-5125b7d24ff3 + x-requestid: db227153-19d2-4dae-9727-69fb14c2f4bc status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=200&$top=220&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2200&$top=224&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=170&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=174&$maxpagesize=50 response: body: - string: '{"value":[{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"value":[{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot - access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=120&$maxpagesize=50"}' + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=124&$maxpagesize=50"}' headers: - apim-request-id: 0c8ed97a-fdf0-4c9e-9854-ea9032d418fe + apim-request-id: f4fe135f-4cc6-44c8-94b9-85dc35e527c6 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:32 GMT - etag: '"F5B34F8A6F657C2A89B0539D71931B9B04C1BFE4AB6DA9BB5986B869D445182D"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:37 GMT + etag: '"35C14DB4B3133D3E639C8C13B7DB35DE9CC04EC5092184E900925B4DCB3DCC19"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0c8ed97a-fdf0-4c9e-9854-ea9032d418fe + x-requestid: f4fe135f-4cc6-44c8-94b9-85dc35e527c6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=250&$top=170&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2250&$top=174&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=120&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=124&$maxpagesize=50 response: body: - string: '{"value":[{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + string: '{"value":[{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No - document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=70&$maxpagesize=50"}' + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=74&$maxpagesize=50"}' headers: - apim-request-id: 6bf2e782-d5a0-4868-bd8b-ed13c3eeae1b + apim-request-id: bdbf87a9-1e27-4d11-bbbc-ec9d4634bc7f cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:33 GMT - etag: '"8A1D0601F2054AABB33DD51FA14F08EC067B9D797FBC8E857C7273E0A5B0C4FC"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:37 GMT + etag: '"E7D6CE00C23F55AB4F9A81B866EAEE560E118761BD6159158848443E3EE0F44B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6bf2e782-d5a0-4868-bd8b-ed13c3eeae1b + x-requestid: bdbf87a9-1e27-4d11-bbbc-ec9d4634bc7f status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=300&$top=120&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2300&$top=124&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=70&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=74&$maxpagesize=50 response: body: - string: '{"value":[{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"value":[{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot @@ -1753,41 +3412,41 @@ interactions: document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot - access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=20&$maxpagesize=50"}' + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=24&$maxpagesize=50"}' headers: - apim-request-id: c297fea6-1603-40c0-847a-ea487417282c + apim-request-id: b749416f-d8eb-4ec7-b62b-24f27c981004 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:33 GMT - etag: '"C3A8C698ABD0B3863C12E1BDDE9CEB1A55696CAD8FB86A89A6E0C1524C2D24B0"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:37 GMT + etag: '"6F4B70A715AA684339C6A24DD2840C45668F9D202C0A0A6E9C62EC1C0FB1A0E1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c297fea6-1603-40c0-847a-ea487417282c + x-requestid: b749416f-d8eb-4ec7-b62b-24f27c981004 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=350&$top=70&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2350&$top=74&$maxpagesize=50 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=20&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=24&$maxpagesize=50 response: body: - string: '{"value":[{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"value":[{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot - access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"ValidationFailed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot @@ -1799,21 +3458,21 @@ interactions: access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' headers: - apim-request-id: ccafff5e-c467-47e4-9734-1c123a5541ca + apim-request-id: 4983ed32-1d70-43e5-b5f8-3aa91de24355 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:33 GMT - etag: '"9430D9F24C15B6A7ECCC5B29933850FB42FEA94104AEA7014BBAD39F5FB9995D"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 20:55:38 GMT + etag: '"3B6FCDD15438DBA2C8F6430D19FD4D2E7B6EE1C8CE828F6FCA55732DB598D116"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ccafff5e-c467-47e4-9734-1c123a5541ca + x-requestid: 4983ed32-1d70-43e5-b5f8-3aa91de24355 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=400&$top=20&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2400&$top=24&$maxpagesize=50 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_created_after.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_created_after.yaml new file mode 100644 index 000000000000..429f3a178137 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_created_after.yaml @@ -0,0 +1,746 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:39 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5c11ceda-d773-4a4e-af05-49600fb66282?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:39 GMT + etag: + - '"0x8D910D14E793082"' + last-modified: + - Thu, 06 May 2021 20:55:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:40 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5c11ceda-d773-4a4e-af05-49600fb66282/b77e7019-af64-4ed5-9879-ca4f1e2568e1.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:39 GMT + etag: + - '"0x8D910D14E9E05EB"' + last-modified: + - Thu, 06 May 2021 20:55:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:40 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5c11ceda-d773-4a4e-af05-49600fb66282/a40430eb-245a-45e1-a0d7-472566c43c0e.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:39 GMT + etag: + - '"0x8D910D14EC1C10D"' + last-modified: + - Thu, 06 May 2021 20:55:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:40 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target37effeef-524b-4d65-940b-e8d74e228fb7?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:40 GMT + etag: + - '"0x8D910D14F4C5392"' + last-modified: + - Thu, 06 May 2021 20:55:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5c11ceda-d773-4a4e-af05-49600fb66282?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target37effeef-524b-4d65-940b-e8d74e228fb7?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: b4f1c720-043b-44e8-9963-7e447e0d8954 + content-length: '0' + date: Thu, 06 May 2021 20:55:41 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/49eaa9cb-96e9-4b06-a36e-7c12685cd1d8 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b4f1c720-043b-44e8-9963-7e447e0d8954 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/49eaa9cb-96e9-4b06-a36e-7c12685cd1d8 + response: + body: + string: '{"id":"49eaa9cb-96e9-4b06-a36e-7c12685cd1d8","createdDateTimeUtc":"2021-05-06T20:55:42.3561935Z","lastActionDateTimeUtc":"2021-05-06T20:55:42.3561938Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 8f69fa99-8df6-4b72-a0b2-2ae435858573 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:41 GMT + etag: '"FBF3DDA9617634B803A6B34D7216DDCE425526DA0DA985A8E7815B6D91802EC9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8f69fa99-8df6-4b72-a0b2-2ae435858573 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/49eaa9cb-96e9-4b06-a36e-7c12685cd1d8 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:42 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3b213463-3311-4ab9-aa16-3bd7fb16654e?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:42 GMT + etag: + - '"0x8D910D150933556"' + last-modified: + - Thu, 06 May 2021 20:55:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:43 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3b213463-3311-4ab9-aa16-3bd7fb16654e/45478b72-f80e-4b27-9fbc-248cb537f439.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:43 GMT + etag: + - '"0x8D910D150B783D7"' + last-modified: + - Thu, 06 May 2021 20:55:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:43 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3b213463-3311-4ab9-aa16-3bd7fb16654e/ae3fa69b-e74f-408e-ac6e-2fdb747077a2.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:43 GMT + etag: + - '"0x8D910D150DC508F"' + last-modified: + - Thu, 06 May 2021 20:55:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:44 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target71b23c90-d247-4c4d-84fd-2202a33300f0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:44 GMT + etag: + - '"0x8D910D1516ADBBF"' + last-modified: + - Thu, 06 May 2021 20:55:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3b213463-3311-4ab9-aa16-3bd7fb16654e?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target71b23c90-d247-4c4d-84fd-2202a33300f0?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 087bd633-6c7c-4106-87bc-b18746e5ed30 + content-length: '0' + date: Thu, 06 May 2021 20:55:44 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/05748afd-3609-4e61-ba24-79defa5516b1 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 087bd633-6c7c-4106-87bc-b18746e5ed30 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/05748afd-3609-4e61-ba24-79defa5516b1 + response: + body: + string: '{"id":"05748afd-3609-4e61-ba24-79defa5516b1","createdDateTimeUtc":"2021-05-06T20:55:45.1927224Z","lastActionDateTimeUtc":"2021-05-06T20:55:45.1927229Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 416eb06f-fe08-4cd7-851e-bc4e99739b80 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:44 GMT + etag: '"089C0FE80DC01CD321B804972F8D20738261AC14A5D105224FF2C0C360C6AE0A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 416eb06f-fe08-4cd7-851e-bc4e99739b80 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/05748afd-3609-4e61-ba24-79defa5516b1 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:45 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src686d1e11-634c-4a4f-99f1-a953440d42e4?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:45 GMT + etag: + - '"0x8D910D152258547"' + last-modified: + - Thu, 06 May 2021 20:55:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src686d1e11-634c-4a4f-99f1-a953440d42e4/324ca04a-8270-42a6-a887-bc8f33a79a95.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:46 GMT + etag: + - '"0x8D910D1524A53DB"' + last-modified: + - Thu, 06 May 2021 20:55:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src686d1e11-634c-4a4f-99f1-a953440d42e4/b55d890b-a610-4aa2-b933-73a810f55622.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:46 GMT + etag: + - '"0x8D910D1526FBCF0"' + last-modified: + - Thu, 06 May 2021 20:55:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target2dd44ebb-cbe0-40eb-8a82-3a3e6c931a15?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:47 GMT + etag: + - '"0x8D910D15301E63F"' + last-modified: + - Thu, 06 May 2021 20:55:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src686d1e11-634c-4a4f-99f1-a953440d42e4?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2dd44ebb-cbe0-40eb-8a82-3a3e6c931a15?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: c23f5eb8-432d-4f20-8979-edd44d18f6fb + content-length: '0' + date: Thu, 06 May 2021 20:55:47 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/25f69e11-fcc6-4bf5-b617-b029d533cd2c + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c23f5eb8-432d-4f20-8979-edd44d18f6fb + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/25f69e11-fcc6-4bf5-b617-b029d533cd2c + response: + body: + string: '{"id":"25f69e11-fcc6-4bf5-b617-b029d533cd2c","createdDateTimeUtc":"2021-05-06T20:55:47.9352446Z","lastActionDateTimeUtc":"2021-05-06T20:55:47.9352451Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: e7d6ddc4-39f6-4875-9b34-cf9a8aa824db + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:47 GMT + etag: '"C7484790350D78BD14722177D2ABDE9CCFD60C9F68CB8CCCFBC9E8D9718D2470"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e7d6ddc4-39f6-4875-9b34-cf9a8aa824db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/25f69e11-fcc6-4bf5-b617-b029d533cd2c +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&createdDateTimeUtcStart=2021-05-06T22:55:39.276932Z + response: + body: + string: '{"value":[]}' + headers: + apim-request-id: 0768c563-0815-49a9-b628-5bb0b028b741 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:47 GMT + etag: '"D4214466E6EBAF6BC3F72013C0657B1E9A44E863C0798D64426663A1D281A27B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0768c563-0815-49a9-b628-5bb0b028b741 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=0&createdDateTimeUtcStart=2021-05-06T22:55:39.276932Z +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_created_before.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_created_before.yaml new file mode 100644 index 000000000000..59c7c201d0e6 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_created_before.yaml @@ -0,0 +1,4894 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srca02a9b69-52ad-438b-ba00-be7ede5e0e0a?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:48 GMT + etag: + - '"0x8D910D153E93D9C"' + last-modified: + - Thu, 06 May 2021 20:55:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:49 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srca02a9b69-52ad-438b-ba00-be7ede5e0e0a/b7ce948b-9c09-4f31-8484-04ceb7849d6a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:48 GMT + etag: + - '"0x8D910D1540CA13A"' + last-modified: + - Thu, 06 May 2021 20:55:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:49 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetaf658eae-f6d8-498e-8cdc-1a7664a38a13?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:49 GMT + etag: + - '"0x8D910D154975AE0"' + last-modified: + - Thu, 06 May 2021 20:55:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca02a9b69-52ad-438b-ba00-be7ede5e0e0a?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetaf658eae-f6d8-498e-8cdc-1a7664a38a13?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 1afb1fa8-383f-418c-85ff-65fd4c6decf7 + content-length: '0' + date: Thu, 06 May 2021 20:55:50 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1afb1fa8-383f-418c-85ff-65fd4c6decf7 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 + response: + body: + string: '{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:51.015876Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: f29a2593-d964-4030-9f7b-e202670fdeb3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:51 GMT + etag: '"4666C89891C47F938DB379D415B58A5714F01829A016D81295692B425D4211D0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f29a2593-d964-4030-9f7b-e202670fdeb3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 + response: + body: + string: '{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:51.015876Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 93c64650-f9b6-40aa-9e51-20f0581fa8cc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:51 GMT + etag: '"4666C89891C47F938DB379D415B58A5714F01829A016D81295692B425D4211D0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 93c64650-f9b6-40aa-9e51-20f0581fa8cc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 + response: + body: + string: '{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:51.8983386Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: dfac4a46-949c-492b-8197-35fa547c5c1e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:52 GMT + etag: '"74E0E92F22543915BEC2C4BAAA1716E657388EFC2C1E60E51DE1CC0A06440807"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dfac4a46-949c-492b-8197-35fa547c5c1e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 + response: + body: + string: '{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:51.8983386Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4b40a3e1-5ca9-4e01-a6c5-a1064b96125e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:53 GMT + etag: '"74E0E92F22543915BEC2C4BAAA1716E657388EFC2C1E60E51DE1CC0A06440807"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4b40a3e1-5ca9-4e01-a6c5-a1064b96125e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 + response: + body: + string: '{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:53.9401603Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 7afd7c48-63fe-4d85-881f-10b7e2e99e43 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:54 GMT + etag: '"EFAE630F20441B68BF4EF491CF0ACC7BEAB389FF056FB39829094BCBE9207C5D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7afd7c48-63fe-4d85-881f-10b7e2e99e43 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 + response: + body: + string: '{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:53.9401603Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: e9c7c15a-fd83-4bc5-8f7d-665cb8b4b238 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:55 GMT + etag: '"4F47D9568B35965EF058F77547DD240E1D7BCF821D26C9A74B2A238B3F117A12"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e9c7c15a-fd83-4bc5-8f7d-665cb8b4b238 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/202661bf-4549-49cb-8d76-b4b1cb0dd853 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:56 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srca0598696-ad74-4869-9e50-e31367736963?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:56 GMT + etag: + - '"0x8D910D1587E1DD1"' + last-modified: + - Thu, 06 May 2021 20:55:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:55:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srca0598696-ad74-4869-9e50-e31367736963/3c3139ec-cea6-4f88-8362-d8f705e84539.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:55:56 GMT + etag: + - '"0x8D910D158A26B1F"' + last-modified: + - Thu, 06 May 2021 20:55:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:55:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target931fc285-60ad-4382-9b88-338cdb826782?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:55:57 GMT + etag: + - '"0x8D910D1593220B7"' + last-modified: + - Thu, 06 May 2021 20:55:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca0598696-ad74-4869-9e50-e31367736963?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target931fc285-60ad-4382-9b88-338cdb826782?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '492' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 88ba67ab-1eca-4ecb-95f8-8a355550e541 + content-length: '0' + date: Thu, 06 May 2021 20:55:58 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 88ba67ab-1eca-4ecb-95f8-8a355550e541 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 + response: + body: + string: '{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:55:58.2530798Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: c5df9c8e-33bb-46d3-b278-58179dbf9370 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:58 GMT + etag: '"429129C2601259C1ABA78F7A733B74C7739B2FD01EA9C91DD764FE0BA2CAD28E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c5df9c8e-33bb-46d3-b278-58179dbf9370 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 + response: + body: + string: '{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:55:58.2530798Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 78c1a7d2-31ad-4476-ab78-2aef6c59d1f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:58 GMT + etag: '"429129C2601259C1ABA78F7A733B74C7739B2FD01EA9C91DD764FE0BA2CAD28E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 78c1a7d2-31ad-4476-ab78-2aef6c59d1f4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 + response: + body: + string: '{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:55:59.236702Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4b5bc827-35ef-4f77-b8ba-4fce02f6356a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:55:59 GMT + etag: '"2A603AA64816EEDFA874B6EB1A5F5843A7DC61CA938F912339C86B8A949BD879"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4b5bc827-35ef-4f77-b8ba-4fce02f6356a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 + response: + body: + string: '{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:55:59.236702Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b5420082-e47c-4365-8b37-b1fd0d445eba + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:00 GMT + etag: '"2A603AA64816EEDFA874B6EB1A5F5843A7DC61CA938F912339C86B8A949BD879"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b5420082-e47c-4365-8b37-b1fd0d445eba + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 + response: + body: + string: '{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:56:00.883148Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 13f07c24-3b54-4c7b-8179-4480840efe99 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:01 GMT + etag: '"8274BFB9C5095CDEED00B56C20A3BBC6CB921C02B64CB53E5D8F14300646A68E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 13f07c24-3b54-4c7b-8179-4480840efe99 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 + response: + body: + string: '{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:56:00.883148Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: fdadad8a-6b49-4b7d-9697-11a24f18d74a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:02 GMT + etag: '"ADC2EB2864BC9202F9041753A1435436340FB13E074859F82037F3B4236D8F5E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fdadad8a-6b49-4b7d-9697-11a24f18d74a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/403694e3-f4f5-4def-826a-047021532273 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:03 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src21d2728b-09ff-44a2-ba3e-d802fea66426?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:03 GMT + etag: + - '"0x8D910D15CD970AC"' + last-modified: + - Thu, 06 May 2021 20:56:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:56:04 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src21d2728b-09ff-44a2-ba3e-d802fea66426/9e9a8ad2-bf33-4631-a4d3-2fd0041caa2a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:56:03 GMT + etag: + - '"0x8D910D15D01AEC7"' + last-modified: + - Thu, 06 May 2021 20:56:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:04 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetedead827-7ef1-43c8-aae2-95a3feea7878?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:05 GMT + etag: + - '"0x8D910D15D9B5794"' + last-modified: + - Thu, 06 May 2021 20:56:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src21d2728b-09ff-44a2-ba3e-d802fea66426?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetedead827-7ef1-43c8-aae2-95a3feea7878?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 97dc54d1-66bd-4e85-8be2-a337102fa524 + content-length: '0' + date: Thu, 06 May 2021 20:56:05 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 97dc54d1-66bd-4e85-8be2-a337102fa524 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 + response: + body: + string: '{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:05.6282766Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: e288fcf1-0b49-4eca-970f-b2dfbffda43a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:05 GMT + etag: '"4878DD31F37A788055B87DC1FB32049B764BB0E4E548E017FB4C2BB122B6EA63"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e288fcf1-0b49-4eca-970f-b2dfbffda43a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 + response: + body: + string: '{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:05.6282766Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 901868bb-7789-4bc5-aa8a-caf098006342 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:05 GMT + etag: '"4878DD31F37A788055B87DC1FB32049B764BB0E4E548E017FB4C2BB122B6EA63"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 901868bb-7789-4bc5-aa8a-caf098006342 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 + response: + body: + string: '{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:06.4909982Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 1568b3b4-6ff7-41f8-9857-9321e960ff7b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:06 GMT + etag: '"160585831C0700458060DD0E518690C77A2A56B2ED9E1410E725B761FB9749F2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1568b3b4-6ff7-41f8-9857-9321e960ff7b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 + response: + body: + string: '{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:07.9680961Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: c07ecf8d-800f-4b9f-9bb6-764da0ce98b0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:08 GMT + etag: '"DF6A25AFE285909204E554058C1D0C699E39D8BE4FEC67FC20B3FB2DBCFC217B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c07ecf8d-800f-4b9f-9bb6-764da0ce98b0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 + response: + body: + string: '{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:07.9680961Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 45a72e8e-45fb-4cc8-a84b-33b3683c5098 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:09 GMT + etag: '"DF6A25AFE285909204E554058C1D0C699E39D8BE4FEC67FC20B3FB2DBCFC217B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 45a72e8e-45fb-4cc8-a84b-33b3683c5098 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 + response: + body: + string: '{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:07.9680961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 6cc06ebd-30a0-4095-8bc4-72fa4e07f053 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:10 GMT + etag: '"38A375008B960E7D92F672B9677C10089FBE5D57CB13DC9B1A073E2908A00841"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6cc06ebd-30a0-4095-8bc4-72fa4e07f053 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/66239416-6882-4454-aac6-ef4ecd254002 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:10 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb0460dd4-6d97-4df2-bfb3-84740b0396e0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:11 GMT + etag: + - '"0x8D910D161379CEF"' + last-modified: + - Thu, 06 May 2021 20:56:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:56:11 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb0460dd4-6d97-4df2-bfb3-84740b0396e0/d851447b-6108-4e23-a01f-38eb5b9bbc13.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:56:11 GMT + etag: + - '"0x8D910D1615DBD17"' + last-modified: + - Thu, 06 May 2021 20:56:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:11 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetdd9bbc3c-fab5-42af-922e-a5c4cd720695?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:12 GMT + etag: + - '"0x8D910D161FE95F7"' + last-modified: + - Thu, 06 May 2021 20:56:12 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb0460dd4-6d97-4df2-bfb3-84740b0396e0?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetdd9bbc3c-fab5-42af-922e-a5c4cd720695?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: a8619446-3067-4888-bb05-152dfef01cc6 + content-length: '0' + date: Thu, 06 May 2021 20:56:12 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a8619446-3067-4888-bb05-152dfef01cc6 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 + response: + body: + string: '{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:12.9797549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: aa125e04-a809-4081-949c-0c383917cab9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:12 GMT + etag: '"17C8CE0E312AF3CF2E02E90CBA085178650CFD1566F3FA060E6246649C1F9379"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: aa125e04-a809-4081-949c-0c383917cab9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 + response: + body: + string: '{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:12.9797549Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 84d06d55-6a0e-427f-9cb2-f94e04dc80ca + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:12 GMT + etag: '"17C8CE0E312AF3CF2E02E90CBA085178650CFD1566F3FA060E6246649C1F9379"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 84d06d55-6a0e-427f-9cb2-f94e04dc80ca + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 + response: + body: + string: '{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:13.8677913Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4daf1875-cc84-44c9-90e8-2c0ef6a87635 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:13 GMT + etag: '"CE2DF94D67BB644E9CF275A2CD7EED32C63CCA6FF46A4757CD74EEE0AFCC9ACE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4daf1875-cc84-44c9-90e8-2c0ef6a87635 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 + response: + body: + string: '{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:14.9686929Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 1a7172b6-309d-4a3d-9d8b-d1f39291242d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:15 GMT + etag: '"E4D814932FF90707FAA3EBFC5B491B443977B7999E7AA5C3658CEA3B722B2FB8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1a7172b6-309d-4a3d-9d8b-d1f39291242d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 + response: + body: + string: '{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:14.9686929Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: db1d0768-0429-4bf4-bf3f-d5b325d9b4ee + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:16 GMT + etag: '"E4D814932FF90707FAA3EBFC5B491B443977B7999E7AA5C3658CEA3B722B2FB8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: db1d0768-0429-4bf4-bf3f-d5b325d9b4ee + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 + response: + body: + string: '{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:14.9686929Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: af3e4346-1066-4da0-95f6-5f612b3fb770 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:17 GMT + etag: '"E4D814932FF90707FAA3EBFC5B491B443977B7999E7AA5C3658CEA3B722B2FB8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: af3e4346-1066-4da0-95f6-5f612b3fb770 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 + response: + body: + string: '{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:14.9686929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: ebb7c37d-0742-4acf-a43d-dd174b9d28b3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:18 GMT + etag: '"078AB03361FAAF10AD72C06CABB3E2441B9D746550010D6E0A919ABE4328639E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ebb7c37d-0742-4acf-a43d-dd174b9d28b3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/fdf80ecf-184c-432e-a083-c042a1efdb59 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src652a532e-846b-4486-956d-5073fda92798?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:19 GMT + etag: + - '"0x8D910D16646559D"' + last-modified: + - Thu, 06 May 2021 20:56:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:56:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src652a532e-846b-4486-956d-5073fda92798/53c4bab0-39a1-4f18-b20b-bc34b5ebee86.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:56:19 GMT + etag: + - '"0x8D910D1666BFDE6"' + last-modified: + - Thu, 06 May 2021 20:56:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetf9be216d-5d5e-41c8-a1d0-182f879c8790?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:21 GMT + etag: + - '"0x8D910D166F83A51"' + last-modified: + - Thu, 06 May 2021 20:56:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src652a532e-846b-4486-956d-5073fda92798?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf9be216d-5d5e-41c8-a1d0-182f879c8790?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: d747c3e9-e6e0-41e0-8b98-581b52dc8cf4 + content-length: '0' + date: Thu, 06 May 2021 20:56:20 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d747c3e9-e6e0-41e0-8b98-581b52dc8cf4 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 + response: + body: + string: '{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:21.3293033Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 665e048c-e877-44fb-b07e-6f805f5ae3a2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:20 GMT + etag: '"CC43A08FB8C7D08BB181225B2606B53F0D0D2BB4ADF11FCD3BDA6231ADEDD09F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 665e048c-e877-44fb-b07e-6f805f5ae3a2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 + response: + body: + string: '{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:21.3293033Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: ce9ca234-3e27-4649-a8c9-585e21cbc73e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:20 GMT + etag: '"CC43A08FB8C7D08BB181225B2606B53F0D0D2BB4ADF11FCD3BDA6231ADEDD09F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ce9ca234-3e27-4649-a8c9-585e21cbc73e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 + response: + body: + string: '{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:22.1945379Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 0dbca617-419e-4f29-acae-fc1258d823ee + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:21 GMT + etag: '"35C8D2A1201A3CCB257CFA0288DFDEC820ED631FF2BC902128F3F49A82F65F54"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0dbca617-419e-4f29-acae-fc1258d823ee + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 + response: + body: + string: '{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:22.1945379Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b7ad3d98-190c-47cf-8a75-c7056f5d53de + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:23 GMT + etag: '"35C8D2A1201A3CCB257CFA0288DFDEC820ED631FF2BC902128F3F49A82F65F54"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b7ad3d98-190c-47cf-8a75-c7056f5d53de + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 + response: + body: + string: '{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:22.1945379Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 6f04b1d6-e57b-4428-87f3-7cb5e83c1ca3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:24 GMT + etag: '"35C8D2A1201A3CCB257CFA0288DFDEC820ED631FF2BC902128F3F49A82F65F54"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6f04b1d6-e57b-4428-87f3-7cb5e83c1ca3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 + response: + body: + string: '{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:25.6398593Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 799ea1c8-43ab-4c38-8ee0-6b47a46bde60 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:26 GMT + etag: '"DB0131BB3506AB952135FC5E9B428F1194BF26D744F8AB81EAD0BF5CB3D97D3E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 799ea1c8-43ab-4c38-8ee0-6b47a46bde60 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 + response: + body: + string: '{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:25.6398593Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b342a9d4-d66d-4a9b-9a88-cc50ce1fbf8e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:27 GMT + etag: '"DB0131BB3506AB952135FC5E9B428F1194BF26D744F8AB81EAD0BF5CB3D97D3E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b342a9d4-d66d-4a9b-9a88-cc50ce1fbf8e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 + response: + body: + string: '{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:25.6398593Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: eef488b3-78bb-428a-b20b-fdf81b4ff933 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:28 GMT + etag: '"543517ABCD1E4CBA91AEC2EE96EDC85F70BB3B3CFA47BF4D1EF97047E7F376C0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eef488b3-78bb-428a-b20b-fdf81b4ff933 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8c493079-e70c-4b12-a191-6e0d8ac1a257 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src145395e6-6940-46c8-8d30-a7c404d1d8fc?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:29 GMT + etag: + - '"0x8D910D16BECC34A"' + last-modified: + - Thu, 06 May 2021 20:56:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:56:29 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src145395e6-6940-46c8-8d30-a7c404d1d8fc/5889d3b7-3d5a-442d-b220-a9b533be96ed.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:56:29 GMT + etag: + - '"0x8D910D16C13B4F3"' + last-modified: + - Thu, 06 May 2021 20:56:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:29 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target502ba42b-5be4-4e0d-b13a-c95daa7d487e?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:30 GMT + etag: + - '"0x8D910D16CA78BDC"' + last-modified: + - Thu, 06 May 2021 20:56:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src145395e6-6940-46c8-8d30-a7c404d1d8fc?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target502ba42b-5be4-4e0d-b13a-c95daa7d487e?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '490' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: e6bfe8df-657c-4ca8-91b7-d752cf24bcdf + content-length: '0' + date: Thu, 06 May 2021 20:56:30 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e6bfe8df-657c-4ca8-91b7-d752cf24bcdf + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 + response: + body: + string: '{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:30.8665607Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 7deba846-839b-415e-97f0-bca5645fe6b9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:30 GMT + etag: '"42DA4A6B54901F8F7048C19ED68E1FA5F8724445C7A672A2D4A0BC0AA0E74F87"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7deba846-839b-415e-97f0-bca5645fe6b9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 + response: + body: + string: '{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:30.8665607Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: e2098f09-316c-44de-b496-48b9a9d8e7fd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:31 GMT + etag: '"42DA4A6B54901F8F7048C19ED68E1FA5F8724445C7A672A2D4A0BC0AA0E74F87"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e2098f09-316c-44de-b496-48b9a9d8e7fd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 + response: + body: + string: '{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:31.7286323Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: acfeee61-678c-48e1-bc4e-c4e7453a6fb9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:32 GMT + etag: '"55FBF3D46434390BDA0D4BE245066AC706BAF9BC092D99692AB5BF45155E9247"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: acfeee61-678c-48e1-bc4e-c4e7453a6fb9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 + response: + body: + string: '{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:32.3788307Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: df922e57-b87e-4fcf-9d0b-9faf57574dc7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:33 GMT + etag: '"B07686D6F5022E50A371130A16DE4030C45FD5267E5BCD060CD3E3F26185E5CE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: df922e57-b87e-4fcf-9d0b-9faf57574dc7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 + response: + body: + string: '{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:32.3788307Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: d384d6fc-a6cb-4b71-9f5d-a85407da4102 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:34 GMT + etag: '"B07686D6F5022E50A371130A16DE4030C45FD5267E5BCD060CD3E3F26185E5CE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d384d6fc-a6cb-4b71-9f5d-a85407da4102 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 + response: + body: + string: '{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:32.3788307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: e925ca00-e2ac-47d2-a8cb-a44559f91368 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:35 GMT + etag: '"E3088DA640124FDE090FBCEED50BBC4E1F023C8A07DD89EC5C03E04ECDCB1F64"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e925ca00-e2ac-47d2-a8cb-a44559f91368 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9061db81-1ed0-4825-97db-a2e811c6c3c2 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:35 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src4f7714b3-b08b-433f-a78b-501e1198217c?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:35 GMT + etag: + - '"0x8D910D17043BCA6"' + last-modified: + - Thu, 06 May 2021 20:56:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:56:36 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src4f7714b3-b08b-433f-a78b-501e1198217c/9a97065a-033a-46c5-891e-c5d62aa4f4eb.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:56:36 GMT + etag: + - '"0x8D910D1706B2EFF"' + last-modified: + - Thu, 06 May 2021 20:56:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:37 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target09faa426-d572-450e-839b-635a59d4bcb9?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:37 GMT + etag: + - '"0x8D910D170FCAE09"' + last-modified: + - Thu, 06 May 2021 20:56:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4f7714b3-b08b-433f-a78b-501e1198217c?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target09faa426-d572-450e-839b-635a59d4bcb9?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 0fcd26bb-f7ed-4bbb-888e-665e271ef387 + content-length: '0' + date: Thu, 06 May 2021 20:56:37 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0fcd26bb-f7ed-4bbb-888e-665e271ef387 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e + response: + body: + string: '{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:38.1354338Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 3e3fc92e-e4fc-493e-939f-3ec610206b86 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:37 GMT + etag: '"7BD02A14E23611D8DB22462B7060CCEFC596AC2D668BA2D9816E0035D00865C2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3e3fc92e-e4fc-493e-939f-3ec610206b86 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e + response: + body: + string: '{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:38.1354338Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 520e6b40-e318-4f7a-8fb0-0c88c08be457 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:38 GMT + etag: '"7BD02A14E23611D8DB22462B7060CCEFC596AC2D668BA2D9816E0035D00865C2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 520e6b40-e318-4f7a-8fb0-0c88c08be457 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e + response: + body: + string: '{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:39.0138025Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 416970a0-267e-4af9-8b8f-7376424b35b3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:39 GMT + etag: '"8C6189725C1198A76C92BB3F85FBFE17A7446954F92CC8B4212D8A19622396C3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 416970a0-267e-4af9-8b8f-7376424b35b3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e + response: + body: + string: '{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:40.0552132Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 3b122d2e-3cbf-49da-8e2e-28b25d501b9a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:40 GMT + etag: '"DE9ACC1CB38E91BB3F21434F258A5B0C00C2B628156A2532C9CAF66C978AA726"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3b122d2e-3cbf-49da-8e2e-28b25d501b9a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e + response: + body: + string: '{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:40.0552132Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 80591c18-0bfd-4589-b02f-3c45fdffa0d7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:41 GMT + etag: '"DE9ACC1CB38E91BB3F21434F258A5B0C00C2B628156A2532C9CAF66C978AA726"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 80591c18-0bfd-4589-b02f-3c45fdffa0d7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e + response: + body: + string: '{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:40.0552132Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 2d9c80a9-666e-4e6e-9e4f-c718aef13f0f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:42 GMT + etag: '"BE4BDC55974DBF25A3F6C2F9DB8108691EC3600227FBAD8B647BC78FE3F29517"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2d9c80a9-666e-4e6e-9e4f-c718aef13f0f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/76a151d1-928d-44bb-883e-1e96f1efc75e +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:43 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd9a7727b-20ad-43e8-ac2a-3e019dbf6d53?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:43 GMT + etag: + - '"0x8D910D174986D19"' + last-modified: + - Thu, 06 May 2021 20:56:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:56:44 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd9a7727b-20ad-43e8-ac2a-3e019dbf6d53/32787d40-9fb4-4eb8-801b-0927982963d6.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:56:43 GMT + etag: + - '"0x8D910D174D326DB"' + last-modified: + - Thu, 06 May 2021 20:56:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:44 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetcd648fb5-7f52-431e-9ccc-d8a531fc1f60?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:44 GMT + etag: + - '"0x8D910D17560E64F"' + last-modified: + - Thu, 06 May 2021 20:56:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd9a7727b-20ad-43e8-ac2a-3e019dbf6d53?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetcd648fb5-7f52-431e-9ccc-d8a531fc1f60?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 02f58557-273e-4407-bf2e-066411b27209 + content-length: '0' + date: Thu, 06 May 2021 20:56:45 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 02f58557-273e-4407-bf2e-066411b27209 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb + response: + body: + string: '{"id":"15dd871e-9bac-4f5c-85b1-0cd334b4d2bb","createdDateTimeUtc":"2021-05-06T20:56:45.5040606Z","lastActionDateTimeUtc":"2021-05-06T20:56:45.5040611Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: a915311f-5cda-4d71-8cb3-b1f37e0a02de + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:45 GMT + etag: '"5D8AABD6DEA5D1924A0FE58E6370FFC52848A3E91960F17938078C4982EDCEBF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a915311f-5cda-4d71-8cb3-b1f37e0a02de + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb + response: + body: + string: '{"id":"15dd871e-9bac-4f5c-85b1-0cd334b4d2bb","createdDateTimeUtc":"2021-05-06T20:56:45.5040606Z","lastActionDateTimeUtc":"2021-05-06T20:56:45.5040611Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b0b3dac1-e1f1-4d62-b05d-51d2d03351f9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:45 GMT + etag: '"5D8AABD6DEA5D1924A0FE58E6370FFC52848A3E91960F17938078C4982EDCEBF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b0b3dac1-e1f1-4d62-b05d-51d2d03351f9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb + response: + body: + string: '{"id":"15dd871e-9bac-4f5c-85b1-0cd334b4d2bb","createdDateTimeUtc":"2021-05-06T20:56:45.5040606Z","lastActionDateTimeUtc":"2021-05-06T20:56:46.38686Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 79a715ea-6b26-4186-830c-3feb3dc61e37 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:46 GMT + etag: '"7BD228C3648A6D52B681F0C780A0402D26071B18F907BEB065CABE0748B876F0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 79a715ea-6b26-4186-830c-3feb3dc61e37 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb + response: + body: + string: '{"id":"15dd871e-9bac-4f5c-85b1-0cd334b4d2bb","createdDateTimeUtc":"2021-05-06T20:56:45.5040606Z","lastActionDateTimeUtc":"2021-05-06T20:56:47.1540091Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: e07f1f29-38c9-4872-ad59-82a75c5d870b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:47 GMT + etag: '"AD84C51C117C40FD45E3AA7437C168B7C132D8B1E2D15EB57FB22EB43D209279"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e07f1f29-38c9-4872-ad59-82a75c5d870b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb + response: + body: + string: '{"id":"15dd871e-9bac-4f5c-85b1-0cd334b4d2bb","createdDateTimeUtc":"2021-05-06T20:56:45.5040606Z","lastActionDateTimeUtc":"2021-05-06T20:56:47.1540091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: b379b0ab-992a-43a1-b142-dde795847c7f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:48 GMT + etag: '"C5593A94E5D195523AC8A1B335543F2E75C2A6926246C876CEF810A2569793E3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b379b0ab-992a-43a1-b142-dde795847c7f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15dd871e-9bac-4f5c-85b1-0cd334b4d2bb +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:49 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93c5a079-017d-4247-975a-69c8b1fe51c6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:49 GMT + etag: + - '"0x8D910D1785033D4"' + last-modified: + - Thu, 06 May 2021 20:56:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:56:50 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src93c5a079-017d-4247-975a-69c8b1fe51c6/5a972b96-6b71-4592-b5fd-b356b10043f0.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:56:49 GMT + etag: + - '"0x8D910D1787539B0"' + last-modified: + - Thu, 06 May 2021 20:56:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:50 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target1ea10a48-edee-43cb-9f2b-b86351454cb7?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:50 GMT + etag: + - '"0x8D910D179036158"' + last-modified: + - Thu, 06 May 2021 20:56:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src93c5a079-017d-4247-975a-69c8b1fe51c6?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1ea10a48-edee-43cb-9f2b-b86351454cb7?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 57b719e9-478d-481b-86b6-feacda64f359 + content-length: '0' + date: Thu, 06 May 2021 20:56:51 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 57b719e9-478d-481b-86b6-feacda64f359 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e + response: + body: + string: '{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:51.595883Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 22946fb1-f0a6-45dd-bcfa-2befa321771f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:51 GMT + etag: '"C7968FBDB17E902BBD99899294DA8B96602ADEAA8CDC0FA1AAF5C3F61B06CB1E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 22946fb1-f0a6-45dd-bcfa-2befa321771f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e + response: + body: + string: '{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:51.595883Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4d247acd-95fa-4c62-a350-fd8a8c25b8d0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:51 GMT + etag: '"C7968FBDB17E902BBD99899294DA8B96602ADEAA8CDC0FA1AAF5C3F61B06CB1E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4d247acd-95fa-4c62-a350-fd8a8c25b8d0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e + response: + body: + string: '{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:52.4601049Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 3bcb6dfa-4cc3-482c-9fdd-f13d93d0ef6b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:52 GMT + etag: '"3F060B0FBB3C4E1D9C7C95AC987D899C6484A0359F7CB24F71D527BFC1A42177"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3bcb6dfa-4cc3-482c-9fdd-f13d93d0ef6b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e + response: + body: + string: '{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:54.0787865Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 2d35118f-3c3e-4958-bb62-08fadfc2d5f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:53 GMT + etag: '"DF02092C590B6F9AB28BBBDCE8C919B85A46302A5E47102E3000F1A034F32F85"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2d35118f-3c3e-4958-bb62-08fadfc2d5f4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e + response: + body: + string: '{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:54.0787865Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 9b5bc40c-db51-4eca-8e7f-9852cbaebf58 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:54 GMT + etag: '"DF02092C590B6F9AB28BBBDCE8C919B85A46302A5E47102E3000F1A034F32F85"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9b5bc40c-db51-4eca-8e7f-9852cbaebf58 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e + response: + body: + string: '{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:54.0787865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: dd17b1db-4379-43e6-bed1-7fb3c150ffc4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:56 GMT + etag: '"72BA6552EFBA3CE5B5D7D3B8B358E944B39B11DB83F3F87319F532A1C6261483"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dd17b1db-4379-43e6-bed1-7fb3c150ffc4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c5430b39-1f05-4e25-baff-967baa57f03e +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:56 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfec20d73-e156-43c9-b4af-4902f4979334?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:57 GMT + etag: + - '"0x8D910D17CA24540"' + last-modified: + - Thu, 06 May 2021 20:56:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:56:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfec20d73-e156-43c9-b4af-4902f4979334/b5e15931-9bed-49f4-8e60-8208789afe28.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:56:57 GMT + etag: + - '"0x8D910D17CC9CD10"' + last-modified: + - Thu, 06 May 2021 20:56:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:56:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target687aa0ea-ba80-44c0-b1ac-92518a1005b4?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:56:58 GMT + etag: + - '"0x8D910D17D5C2684"' + last-modified: + - Thu, 06 May 2021 20:56:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfec20d73-e156-43c9-b4af-4902f4979334?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target687aa0ea-ba80-44c0-b1ac-92518a1005b4?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: b9b337bc-1e21-4303-a522-3c2f6380cb46 + content-length: '0' + date: Thu, 06 May 2021 20:56:58 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b9b337bc-1e21-4303-a522-3c2f6380cb46 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f + response: + body: + string: '{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:56:58.8902066Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 759f79dd-4de2-4ccf-97b6-0f95fee0aee7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:58 GMT + etag: '"5B977C22E5D15682A9C099FD387AA261633D415B03825BEE290A53141C85BC4E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 759f79dd-4de2-4ccf-97b6-0f95fee0aee7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f + response: + body: + string: '{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:56:58.8902066Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b008e1b0-a012-4a49-b9bd-d701cfc6d5b2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:58 GMT + etag: '"5B977C22E5D15682A9C099FD387AA261633D415B03825BEE290A53141C85BC4E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b008e1b0-a012-4a49-b9bd-d701cfc6d5b2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f + response: + body: + string: '{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:56:59.7930858Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 2bc4f7db-732c-4bd1-a4d3-9791324db959 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:56:59 GMT + etag: '"18760F17FD243C8004911247A775C47293406E75FCD3265C4DFB797FD4A1228E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2bc4f7db-732c-4bd1-a4d3-9791324db959 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f + response: + body: + string: '{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:57:01.1209204Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 23f0d7b6-b9f3-4dcd-8d0a-de7ccde7d5da + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:00 GMT + etag: '"873350C28597936BD1962B8739A154E32F74BBD36F7BA4ABEF6C237AFB4F96E7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 23f0d7b6-b9f3-4dcd-8d0a-de7ccde7d5da + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f + response: + body: + string: '{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:57:01.1209204Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 2188a3df-c12b-4e50-bc33-81c523f63def + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:01 GMT + etag: '"873350C28597936BD1962B8739A154E32F74BBD36F7BA4ABEF6C237AFB4F96E7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2188a3df-c12b-4e50-bc33-81c523f63def + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f + response: + body: + string: '{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:57:01.1209204Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: fc62b75e-b73b-47b6-9b11-d7717d6cd92f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:03 GMT + etag: '"0704E23B14FF38749B6DEAD503F5B2269C8236406491172160099D56C9F8227E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fc62b75e-b73b-47b6-9b11-d7717d6cd92f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e4439275-8f04-4a6a-a5e7-071206cbd01f +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&createdDateTimeUtcEnd=2021-05-06T20:56:28.666064Z + response: + body: + string: '{"value":[{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:25.6398593Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:14.9686929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:07.9680961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:56:00.883148Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:53.9401603Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25f69e11-fcc6-4bf5-b617-b029d533cd2c","createdDateTimeUtc":"2021-05-06T20:55:47.9352446Z","lastActionDateTimeUtc":"2021-05-06T20:55:51.2881259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05748afd-3609-4e61-ba24-79defa5516b1","createdDateTimeUtc":"2021-05-06T20:55:45.1927224Z","lastActionDateTimeUtc":"2021-05-06T20:55:48.1845579Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49eaa9cb-96e9-4b06-a36e-7c12685cd1d8","createdDateTimeUtc":"2021-05-06T20:55:42.3561935Z","lastActionDateTimeUtc":"2021-05-06T20:55:45.2155183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3491bd7b-faee-4cbf-988c-9e9dff6b5214","createdDateTimeUtc":"2021-05-06T20:55:25.5887053Z","lastActionDateTimeUtc":"2021-05-06T20:55:30.2964062Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a71f70b-97ab-4af6-858d-c7fb29a04365","createdDateTimeUtc":"2021-05-06T20:55:22.1332246Z","lastActionDateTimeUtc":"2021-05-06T20:55:26.8061623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e317b832-94ee-49aa-9bd0-93fbff05be0c","createdDateTimeUtc":"2021-05-06T20:55:18.586865Z","lastActionDateTimeUtc":"2021-05-06T20:55:23.2186936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6bd767a7-bb87-49cb-b588-18ed193a8c85","createdDateTimeUtc":"2021-05-06T20:55:15.1851317Z","lastActionDateTimeUtc":"2021-05-06T20:55:19.8840932Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8792cce1-19ea-4d45-9232-6739e9930a20","createdDateTimeUtc":"2021-05-06T20:55:11.6049885Z","lastActionDateTimeUtc":"2021-05-06T20:55:18.6714173Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"61dcde6e-cc80-4dd5-966d-837ba83e0ecb","createdDateTimeUtc":"2021-05-06T20:54:39.714637Z","lastActionDateTimeUtc":"2021-05-06T20:54:43.1491955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a078c47e-81d5-48a2-9bd0-2bb06781ed31","createdDateTimeUtc":"2021-05-06T20:54:37.0750245Z","lastActionDateTimeUtc":"2021-05-06T20:54:40.170261Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3d0ea5b8-4028-4368-9055-1909b1a48879","createdDateTimeUtc":"2021-05-06T20:54:34.4125052Z","lastActionDateTimeUtc":"2021-05-06T20:54:37.4692205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"984488d1-d483-4e43-a3bd-03c0ee927395","createdDateTimeUtc":"2021-05-06T20:54:31.7380529Z","lastActionDateTimeUtc":"2021-05-06T20:54:34.3520813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fa48f36-547c-4994-8457-59fb9e8409f7","createdDateTimeUtc":"2021-05-06T20:54:29.0375092Z","lastActionDateTimeUtc":"2021-05-06T20:54:32.4424323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bc07d0-942c-4273-992e-53ed54f806ed","createdDateTimeUtc":"2021-05-06T20:54:26.3866081Z","lastActionDateTimeUtc":"2021-05-06T20:54:29.33425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45f5e5e7-ae1e-44b3-adc4-6913cd5c8413","createdDateTimeUtc":"2021-05-06T20:54:23.7599762Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9593749d-938a-421f-a569-22abf0a93dad","createdDateTimeUtc":"2021-05-06T20:54:21.060224Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.115287Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a679740-861b-4230-a782-30c632a0f98a","createdDateTimeUtc":"2021-05-06T20:54:18.389999Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"704284cb-eef3-4719-a645-34bb5d3570ec","createdDateTimeUtc":"2021-05-06T20:54:15.7426458Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.5490811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:31.7799976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:28.6916857Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:27.2981028Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7455463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7237955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.6065399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.5123621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.0499248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2382&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 16b7eeda-ae8a-49d1-bbe9-86232469ed52 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:03 GMT + etag: '"5729C7BF01E6B294E1BB7BB08FCF43E1699345AC97297220C88286037E4E82F9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 16b7eeda-ae8a-49d1-bbe9-86232469ed52 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=0&createdDateTimeUtcEnd=2021-05-06T20:56:28.666064Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2382&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2332&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 54c4d211-f5c4-4776-b385-f7c957e1ad47 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:03 GMT + etag: '"CC27CCA3DB4F7472D4B62CD33A34F7E97F8038430668376E9E6DFA286FC57867"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 54c4d211-f5c4-4776-b385-f7c957e1ad47 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=50&$top=2382&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2332&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2282&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: c88220e1-0fce-43eb-8adc-ddbb7f8d6f06 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:03 GMT + etag: '"67CA1D376A391387974616BD12F31F1B3A289D15C92E68972FE9BC6E2B2FA43F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c88220e1-0fce-43eb-8adc-ddbb7f8d6f06 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=100&$top=2332&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2282&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2232&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 13df013f-bd5a-44f3-92f5-451f957fdb06 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:04 GMT + etag: '"57E373C286BD8EF8183C437D58ECE83E31CA378B77F4EA477B0081616B56539B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 13df013f-bd5a-44f3-92f5-451f957fdb06 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=150&$top=2282&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2232&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2182&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: b932abb5-4fc5-4bfe-8539-9f7bccec0beb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:04 GMT + etag: '"ADE62B0116899F30CE425B5D397DE744FF74333B5F9D6F43AEA899E9A6985350"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b932abb5-4fc5-4bfe-8539-9f7bccec0beb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=200&$top=2232&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2182&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2132&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 1a2ad7b5-bf6a-48d5-bb02-fc0ca6ba80fe + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:04 GMT + etag: '"D63D5F0065B5D7563E953E194B4B61BD930CD494CE733CC491344D9CE7D8AFB9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1a2ad7b5-bf6a-48d5-bb02-fc0ca6ba80fe + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=250&$top=2182&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2132&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2082&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 5c242b4d-c6a1-4c5d-bbc9-33e0cef9390a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:04 GMT + etag: '"EC227B7CEAB770397C41C94107412D2F2F8E9F727E125ECB0CD1F40882B6EE3F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5c242b4d-c6a1-4c5d-bbc9-33e0cef9390a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=300&$top=2132&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2082&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2032&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: fb0a7e0f-15c6-484e-8fce-a415c5bfad45 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:05 GMT + etag: '"B0C8C3040952B4863016923D2DD8BF131E3710F4B08C8CF3C4F78E5BE3C04C73"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fb0a7e0f-15c6-484e-8fce-a415c5bfad45 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=350&$top=2082&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2032&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1982&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 75540337-00fa-484e-a3b5-dd3f16484960 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:05 GMT + etag: '"288960DBE7FAACEB608D9409E726B748406748B82C6DC26FD005B337936D258D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 75540337-00fa-484e-a3b5-dd3f16484960 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=400&$top=2032&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=1982&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1932&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 4248a930-39c8-414b-92bf-0be7bb4a4e31 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:05 GMT + etag: '"C1E49DD8816CEDD0A4F4FD0A592A1A26625DB4A9A64E8B5CFDD6C56A4CC114A4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4248a930-39c8-414b-92bf-0be7bb4a4e31 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=450&$top=1982&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1932&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1882&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: ec2d89e1-a990-4820-b394-40c90076feb0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:06 GMT + etag: '"735676292129365DB1954ACA5159EE50845AF3810D89A00A1B9D41D91D2A1D06"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ec2d89e1-a990-4820-b394-40c90076feb0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=500&$top=1932&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1882&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1832&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 2f62fa1d-7dff-4210-8feb-d30bf2aeff48 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:06 GMT + etag: '"F7BDEAB8776D52B4869659F91B66C0BE1596D8E12CB152C93CDAB8D434A53E55"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2f62fa1d-7dff-4210-8feb-d30bf2aeff48 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=550&$top=1882&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1832&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1782&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 148d6a50-7aa4-4f0f-88a4-cef108768e79 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:06 GMT + etag: '"8DC84FDC7C334C4DC3EA7A3099180A784DF04E74D786643009648760B5618925"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 148d6a50-7aa4-4f0f-88a4-cef108768e79 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=600&$top=1832&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1782&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1732&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: ac1f0d14-a2cf-4056-a8ef-4ee33936af33 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:06 GMT + etag: '"3C55B530FCA374378F6F91C2029AAFE72718734AEAFDDCB4C7BCA3E580990854"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ac1f0d14-a2cf-4056-a8ef-4ee33936af33 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=650&$top=1782&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1732&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1682&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 938bd787-15d6-4097-ad9b-d89ff6ec0e77 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:08 GMT + etag: '"93937421F75EF71C71E74DE39988BDD62B8694C4DEB3B40BFB89DDB8BE0D829B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 938bd787-15d6-4097-ad9b-d89ff6ec0e77 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=700&$top=1732&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1682&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1632&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 6c5717c1-f8d6-481b-97f4-e6ca38cdbbc6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:08 GMT + etag: '"F052BBBF11FB311BD7482B4BD53C563B57A33612BB16C04D2DAF9A8029E4E479"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6c5717c1-f8d6-481b-97f4-e6ca38cdbbc6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=750&$top=1682&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1632&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1582&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 75e44bb7-d39b-4a38-bb18-3c18006ba3ea + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:08 GMT + etag: '"7A13C0BDEF88A1A38649AF59CA6286C6A97D1BE89D53B97ADEAB60877378FA21"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 75e44bb7-d39b-4a38-bb18-3c18006ba3ea + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=800&$top=1632&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1582&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1532&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: ae14ff7b-f17d-4f2e-866b-fa46417f45f7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:08 GMT + etag: '"2DFD5FF5E668146A40A977151B6F5E80D6C2D3088DF794F9623DF7E669166B5B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ae14ff7b-f17d-4f2e-866b-fa46417f45f7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=850&$top=1582&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1532&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1482&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 3f19cd53-36d6-4e66-a950-67df0ed08169 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:09 GMT + etag: '"307B306D484B4F33557D360419C432EC6052671C5F34371D23E1E2113A3F0E76"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3f19cd53-36d6-4e66-a950-67df0ed08169 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=900&$top=1532&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1482&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1432&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 4098821b-298c-447a-bb30-2a6d535efd56 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:09 GMT + etag: '"6F93A9B51CED94F2BFAFFCCF4CDDB897694E41EE3ED38481C6A7FC434F0309F8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4098821b-298c-447a-bb30-2a6d535efd56 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=950&$top=1482&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1432&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1382&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: a235323a-92e1-49ea-a763-d67e2e1b83b0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:09 GMT + etag: '"E1935A1A0661D801BE4B9B5B3CEE8F0DF25898335D28CA7B7FF3C785416FB9D2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a235323a-92e1-49ea-a763-d67e2e1b83b0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1000&$top=1432&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1382&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1332&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 4b519130-b46e-4ae8-933d-6a991303062b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:10 GMT + etag: '"17C8ADBFF63DA1240B1DC0F31B05B5877E2AC425F5BABBFA6C91F48A9ABF178B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4b519130-b46e-4ae8-933d-6a991303062b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1050&$top=1382&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1332&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1282&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 85a65aa4-2cc5-4c1f-b41e-c696bcc986f2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:10 GMT + etag: '"CCE2ECE20A4EC8C0F0A85524FF0412B4CEA335752DD8F762EF4F61F80289FD54"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 85a65aa4-2cc5-4c1f-b41e-c696bcc986f2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1100&$top=1332&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1282&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1232&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: f6795489-8090-4547-a0d3-e5944eb363b8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:10 GMT + etag: '"1D06334714F91B21E4337B01887FC316B5328F781619B676BA8132FB2388BD74"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f6795489-8090-4547-a0d3-e5944eb363b8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1150&$top=1282&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1232&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1182&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: da09f4f1-a599-411e-be4b-a2c8b94fac23 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:10 GMT + etag: '"CC8C3EF2E838C5FA3ED3A81BCD74C284B819D0ACD4BD4AA475DB358C41FBCAA5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: da09f4f1-a599-411e-be4b-a2c8b94fac23 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1200&$top=1232&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1182&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1132&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: c590a139-8c95-4fe4-9509-1d0640cc852b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:11 GMT + etag: '"6AA171E188112F6144A258840E1F3D1F9BA30DBA44763C8E7DC20FCE9D507F4A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c590a139-8c95-4fe4-9509-1d0640cc852b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1250&$top=1182&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1132&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1082&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: e6655bdf-ed15-4114-9c23-6d11868d6a77 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:11 GMT + etag: '"D2F777729EEDF8C95FC9F780C09FD5C100302C97FB1E027567ED9988959E7E27"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e6655bdf-ed15-4114-9c23-6d11868d6a77 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1300&$top=1132&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1082&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1032&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 20c6bd01-9473-4934-a6bf-e5cd0f35c991 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:11 GMT + etag: '"6967B27329F70ACD51FA180291B62E1C6BC962009A561D63A05C44839BFB552C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 20c6bd01-9473-4934-a6bf-e5cd0f35c991 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1350&$top=1082&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1032&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=982&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 057597e8-59b5-4a67-8d5f-a7f802e815db + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:12 GMT + etag: '"97260DDAB830DF44A61E13AF7ADD947301F49D92B49B34EBDD080ECBFB6996EA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 057597e8-59b5-4a67-8d5f-a7f802e815db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1400&$top=1032&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=982&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=932&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 0453f855-33bd-4a87-be87-d4ff34729ace + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:12 GMT + etag: '"D08E341CEAFAA14950263B7CB50E2641430772FF60C75D9361231AC979B8F074"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0453f855-33bd-4a87-be87-d4ff34729ace + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1450&$top=982&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=932&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=882&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: d5404af3-cb98-4ea6-98aa-05c674c106a4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:12 GMT + etag: '"471AFB9E3BF40F8A7F86778115C06CBD2BEB21F048B9183BE8BE59AA32744884"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d5404af3-cb98-4ea6-98aa-05c674c106a4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1500&$top=932&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=882&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=832&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 946f8adb-fbf8-4977-b03f-65ef3037ad2b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:12 GMT + etag: '"C9FA3943EBD3F89743D3B9A6C074AC23526285B4983BE3B0502E44DD8D25C4D4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 946f8adb-fbf8-4977-b03f-65ef3037ad2b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1550&$top=882&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=832&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=782&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: ddfdd56a-c084-4a2b-95ef-e408c116e3c0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:13 GMT + etag: '"D5E4060C4918074099C3B01412E24525BBAA1C64BF8F90C5240F73743E9E52E4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ddfdd56a-c084-4a2b-95ef-e408c116e3c0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1600&$top=832&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=782&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=732&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 6134f8fb-14c9-4df0-9681-c026474d5e90 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:13 GMT + etag: '"37BB5E774EAB930B0B0342AB7D0FC0DFCBFFC4E89B3FF771215EB529578535AD"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6134f8fb-14c9-4df0-9681-c026474d5e90 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1650&$top=782&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=732&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=682&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: ce0132e9-6b8a-40ce-9ced-b338f16fd936 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:13 GMT + etag: '"77A9BF894C485BF9CC05A16126C57AC4BAF180F9FCF9C0C136681641DA28853D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ce0132e9-6b8a-40ce-9ced-b338f16fd936 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1700&$top=732&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=682&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=632&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 8f0f0790-8f26-4cc9-8274-b5c8e0c3a705 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:13 GMT + etag: '"C7E98F14B8C72DDD743131A43969D90F8B80A6B19055E3E835D8F4F8B812A028"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8f0f0790-8f26-4cc9-8274-b5c8e0c3a705 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1750&$top=682&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=632&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=582&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 8391b617-04c4-406d-8321-da5554d5711c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:14 GMT + etag: '"CAE18C48B35313F463A586F9BE0E43D499ACF95354EE0F9AB4AE77057620BDB7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8391b617-04c4-406d-8321-da5554d5711c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1800&$top=632&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=582&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=532&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: b758db67-3aa0-4f0c-9731-1cece9d00eb4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:14 GMT + etag: '"6D429E1A6576D2B741BED0F565137D201295BC90D163AFA0C1720E61046D9435"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b758db67-3aa0-4f0c-9731-1cece9d00eb4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1850&$top=582&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=532&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=482&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: e670cfbf-f6a9-4713-b5b0-b2983c9c0839 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:14 GMT + etag: '"51A9AE6125B941D1BCB9C42C31EDC3297B245EE096673A615C17A34886F7238A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e670cfbf-f6a9-4713-b5b0-b2983c9c0839 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1900&$top=532&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=482&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=432&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: ebaaf085-bd18-4799-b086-829d9ed72441 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:14 GMT + etag: '"191DE4F6F63EDF681035C07D1138FB68A3A64B4175613E6A8515E201F091939D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ebaaf085-bd18-4799-b086-829d9ed72441 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1950&$top=482&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=432&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=382&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: faaea127-1b2d-4265-8234-9bb45107ba87 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:15 GMT + etag: '"DC8703A77F162E4E30C44B84BA1FA3629BE0819F1F48E4E943AB46D5D228FD47"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: faaea127-1b2d-4265-8234-9bb45107ba87 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2000&$top=432&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=382&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=332&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: d12c6f73-62a5-40c7-9733-14b5dae472b3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:15 GMT + etag: '"15065D56E63C52F76120A34127500CE55DF48A5CB46C2CD0ED27E4638FD41428"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d12c6f73-62a5-40c7-9733-14b5dae472b3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2050&$top=382&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=332&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=282&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: b17780ac-7d44-40af-8025-568bca0a4534 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:15 GMT + etag: '"9907B289563041C3729E3453DF0393269F22608BF4105470F85E810D030469CF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b17780ac-7d44-40af-8025-568bca0a4534 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2100&$top=332&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=282&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=232&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: f5e17312-fd71-4c96-a44d-617e0e91b441 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:16 GMT + etag: '"B9A39044DB748CD8497104E46F57C2B5F3CAFE4B8A995DDBD265933D9F250E71"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f5e17312-fd71-4c96-a44d-617e0e91b441 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2150&$top=282&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=232&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=182&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 56fd7f4f-a898-40d8-b7a1-c364233a94ec + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:16 GMT + etag: '"FCBB733B3532082E8880FA393DD69E6BE8573AE9866E8246A4C4367AB921BD9E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 56fd7f4f-a898-40d8-b7a1-c364233a94ec + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2200&$top=232&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=182&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=132&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 1d9723bc-c507-49c2-81af-af81790e66c8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:16 GMT + etag: '"84DC86E6F995165D3A3DDF9933E62EE980075B962823700EC9507F8A7B628204"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1d9723bc-c507-49c2-81af-af81790e66c8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2250&$top=182&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=132&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=82&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: a0725964-d65b-4baa-a227-fcadefe93e48 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:16 GMT + etag: '"92CB408BF258244AB0172882E18EB59C0C918F0F8059EB7EBA69983C8C8C8CAA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a0725964-d65b-4baa-a227-fcadefe93e48 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2300&$top=132&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=82&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=32&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z"}' + headers: + apim-request-id: 8db9ca58-2cca-4173-aa3f-6599b0dab592 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:17 GMT + etag: '"F92185056962AD20057963FCC8736329C8CCAA77BF6C8E17D69F8B0EC71B1C22"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8db9ca58-2cca-4173-aa3f-6599b0dab592 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2350&$top=82&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=32&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z + response: + body: + string: '{"value":[{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: d677e0ab-a473-4d88-9040-9a70b736e9c6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:17 GMT + etag: '"EA7BDB537BD89FFFD9A7434570118632D0208560E4177CD8C619092851166C87"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d677e0ab-a473-4d88-9040-9a70b736e9c6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2400&$top=32&$maxpagesize=50&createdDateTimeUtcEnd=2021-05-06T20:56:28.6660640Z +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_ids.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_ids.yaml new file mode 100644 index 000000000000..edf0ba4c344e --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_ids.yaml @@ -0,0 +1,746 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcba647799-1e70-4740-9a22-de2e92be1e17?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:18 GMT + etag: + - '"0x8D910D1894AF6E1"' + last-modified: + - Thu, 06 May 2021 20:57:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:18 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcba647799-1e70-4740-9a22-de2e92be1e17/1557c3cc-cb9b-4944-9951-362b01a980e6.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:18 GMT + etag: + - '"0x8D910D1896E339A"' + last-modified: + - Thu, 06 May 2021 20:57:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcba647799-1e70-4740-9a22-de2e92be1e17/169c9b57-e26a-4bae-8f3e-6604f19335df.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:19 GMT + etag: + - '"0x8D910D189928B18"' + last-modified: + - Thu, 06 May 2021 20:57:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetf90dbf04-d18b-432c-a106-574c0976290f?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:19 GMT + etag: + - '"0x8D910D18A1CC92A"' + last-modified: + - Thu, 06 May 2021 20:57:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcba647799-1e70-4740-9a22-de2e92be1e17?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf90dbf04-d18b-432c-a106-574c0976290f?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '492' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 8494673a-0a0a-4d82-baaf-9425d11091d4 + content-length: '0' + date: Thu, 06 May 2021 20:57:20 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d73f47d7-8a61-467a-8d35-951391ec7429 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8494673a-0a0a-4d82-baaf-9425d11091d4 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d73f47d7-8a61-467a-8d35-951391ec7429 + response: + body: + string: '{"id":"d73f47d7-8a61-467a-8d35-951391ec7429","createdDateTimeUtc":"2021-05-06T20:57:20.9908459Z","lastActionDateTimeUtc":"2021-05-06T20:57:20.9908462Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 31655314-09e2-454c-848d-53268589191a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:20 GMT + etag: '"37014B29692D9FA4D679338F6D751B9657E6F30F167F4F03A83E580F3B78FD09"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 31655314-09e2-454c-848d-53268589191a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d73f47d7-8a61-467a-8d35-951391ec7429 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb07dd736-4330-4a87-a07c-dc24aa889ed6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:21 GMT + etag: + - '"0x8D910D18B485E92"' + last-modified: + - Thu, 06 May 2021 20:57:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb07dd736-4330-4a87-a07c-dc24aa889ed6/2828cdae-67fb-4e57-8579-16abb602d590.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:21 GMT + etag: + - '"0x8D910D18B6ECD8F"' + last-modified: + - Thu, 06 May 2021 20:57:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb07dd736-4330-4a87-a07c-dc24aa889ed6/6300151a-e4f5-4574-96d7-57c138934aa3.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:21 GMT + etag: + - '"0x8D910D18B92FDE7"' + last-modified: + - Thu, 06 May 2021 20:57:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetaabb7f63-8171-4d99-8ad9-a1fb2083e470?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:22 GMT + etag: + - '"0x8D910D18C2324F4"' + last-modified: + - Thu, 06 May 2021 20:57:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb07dd736-4330-4a87-a07c-dc24aa889ed6?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetaabb7f63-8171-4d99-8ad9-a1fb2083e470?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: e2845225-9e62-49c3-8811-39d617f052b7 + content-length: '0' + date: Thu, 06 May 2021 20:57:23 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/994ae2f8-f8a2-402b-836e-6b4ae5f219b7 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e2845225-9e62-49c3-8811-39d617f052b7 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/994ae2f8-f8a2-402b-836e-6b4ae5f219b7 + response: + body: + string: '{"id":"994ae2f8-f8a2-402b-836e-6b4ae5f219b7","createdDateTimeUtc":"2021-05-06T20:57:23.6823591Z","lastActionDateTimeUtc":"2021-05-06T20:57:23.6823594Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 96ffcfcb-0004-4094-8375-f38299a697be + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:23 GMT + etag: '"CD9D81613688F6AE008D8FB2C4449D6FB871DCF2C595FA928D96433CA3DC27B4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 96ffcfcb-0004-4094-8375-f38299a697be + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/994ae2f8-f8a2-402b-836e-6b4ae5f219b7 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd004ac39-6894-4155-ac2c-435d890605e0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:24 GMT + etag: + - '"0x8D910D18CE14592"' + last-modified: + - Thu, 06 May 2021 20:57:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd004ac39-6894-4155-ac2c-435d890605e0/e8232243-b0f1-4285-b281-0007ba99a42f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:24 GMT + etag: + - '"0x8D910D18D05BD49"' + last-modified: + - Thu, 06 May 2021 20:57:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd004ac39-6894-4155-ac2c-435d890605e0/a0334fde-0d63-4117-ae37-e4fcb87246ee.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:24 GMT + etag: + - '"0x8D910D18D2BC2BF"' + last-modified: + - Thu, 06 May 2021 20:57:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target3e9a4f2e-f6c5-4366-9e0e-e034b72606e1?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:25 GMT + etag: + - '"0x8D910D18DBC137A"' + last-modified: + - Thu, 06 May 2021 20:57:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd004ac39-6894-4155-ac2c-435d890605e0?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target3e9a4f2e-f6c5-4366-9e0e-e034b72606e1?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 8294bf53-ae4c-4335-98fc-170ede178ecd + content-length: '0' + date: Thu, 06 May 2021 20:57:25 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ee05021f-bce7-4c0e-b00f-7eb1cb54225b + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8294bf53-ae4c-4335-98fc-170ede178ecd + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ee05021f-bce7-4c0e-b00f-7eb1cb54225b + response: + body: + string: '{"id":"ee05021f-bce7-4c0e-b00f-7eb1cb54225b","createdDateTimeUtc":"2021-05-06T20:57:26.3856659Z","lastActionDateTimeUtc":"2021-05-06T20:57:26.3856662Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 806e2e61-d63e-4610-92f2-2ddb8435ed76 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:26 GMT + etag: '"3DC1A470B8E1D9486F648B763CB8BB9A5FF4999E6FCF624D464AE11BB676B86E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 806e2e61-d63e-4610-92f2-2ddb8435ed76 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ee05021f-bce7-4c0e-b00f-7eb1cb54225b +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&ids=d73f47d7-8a61-467a-8d35-951391ec7429,994ae2f8-f8a2-402b-836e-6b4ae5f219b7,ee05021f-bce7-4c0e-b00f-7eb1cb54225b + response: + body: + string: '{"value":[{"id":"ee05021f-bce7-4c0e-b00f-7eb1cb54225b","createdDateTimeUtc":"2021-05-06T20:57:26.3856659Z","lastActionDateTimeUtc":"2021-05-06T20:57:26.3856662Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"994ae2f8-f8a2-402b-836e-6b4ae5f219b7","createdDateTimeUtc":"2021-05-06T20:57:23.6823591Z","lastActionDateTimeUtc":"2021-05-06T20:57:26.203164Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d73f47d7-8a61-467a-8d35-951391ec7429","createdDateTimeUtc":"2021-05-06T20:57:20.9908459Z","lastActionDateTimeUtc":"2021-05-06T20:57:25.6382834Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: 64ad10dc-4671-4eb5-9be1-0d3e583b2d1f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:26 GMT + etag: '"FBFB0F99A419F3C665EA4F9857B88D9422350423138BAAB47F8F9E7671ADBBFD"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 64ad10dc-4671-4eb5-9be1-0d3e583b2d1f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=0&ids=d73f47d7-8a61-467a-8d35-951391ec7429,994ae2f8-f8a2-402b-836e-6b4ae5f219b7,ee05021f-bce7-4c0e-b00f-7eb1cb54225b +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_status.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_status.yaml new file mode 100644 index 000000000000..584e2b9985e3 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_filter_by_status.yaml @@ -0,0 +1,2848 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:26 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src8164c35d-16a3-4902-90b1-b45af83c163a?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:26 GMT + etag: + - '"0x8D910D18E9A9114"' + last-modified: + - Thu, 06 May 2021 20:57:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src8164c35d-16a3-4902-90b1-b45af83c163a/1d5cb4d4-1fa1-435f-afea-42551e0b6e7a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:27 GMT + etag: + - '"0x8D910D18EBE449E"' + last-modified: + - Thu, 06 May 2021 20:57:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target9a90a002-3e86-4cda-bedd-cfac751ce005?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:28 GMT + etag: + - '"0x8D910D18F4E3865"' + last-modified: + - Thu, 06 May 2021 20:57:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8164c35d-16a3-4902-90b1-b45af83c163a?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9a90a002-3e86-4cda-bedd-cfac751ce005?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 39cec894-f656-4660-915f-f2686d41181b + content-length: '0' + date: Thu, 06 May 2021 20:57:28 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 39cec894-f656-4660-915f-f2686d41181b + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c + response: + body: + string: '{"id":"1109c823-471e-4942-9d7f-f257db54611c","createdDateTimeUtc":"2021-05-06T20:57:29.4018947Z","lastActionDateTimeUtc":"2021-05-06T20:57:29.4018952Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 87673283-afd9-4301-aa5b-741ea2379977 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:28 GMT + etag: '"762F223429214EA27FFD570176D0E06E855318178AB016FC74D54F3C1010FEFC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 87673283-afd9-4301-aa5b-741ea2379977 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c + response: + body: + string: '{"id":"1109c823-471e-4942-9d7f-f257db54611c","createdDateTimeUtc":"2021-05-06T20:57:29.4018947Z","lastActionDateTimeUtc":"2021-05-06T20:57:29.4018952Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 646963d4-f121-4d9e-8409-17acfb40b4f8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:29 GMT + etag: '"762F223429214EA27FFD570176D0E06E855318178AB016FC74D54F3C1010FEFC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 646963d4-f121-4d9e-8409-17acfb40b4f8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c + response: + body: + string: '{"id":"1109c823-471e-4942-9d7f-f257db54611c","createdDateTimeUtc":"2021-05-06T20:57:29.4018947Z","lastActionDateTimeUtc":"2021-05-06T20:57:30.3053403Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 77a5cd3f-27ac-4e28-8b8b-5544f2117dcf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:30 GMT + etag: '"6EF8FDD3847F60FBD3159BE608632C113C9C85A9E7D528E1074AED8CA7A3139A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 77a5cd3f-27ac-4e28-8b8b-5544f2117dcf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c + response: + body: + string: '{"id":"1109c823-471e-4942-9d7f-f257db54611c","createdDateTimeUtc":"2021-05-06T20:57:29.4018947Z","lastActionDateTimeUtc":"2021-05-06T20:57:31.729452Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 5805c6ad-da9e-45c8-9df6-1822092655bd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:31 GMT + etag: '"DCE33793FB1AD4267B20BC5EB923B1466452B8BE4EA1606944901E76689F5079"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5805c6ad-da9e-45c8-9df6-1822092655bd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c + response: + body: + string: '{"id":"1109c823-471e-4942-9d7f-f257db54611c","createdDateTimeUtc":"2021-05-06T20:57:29.4018947Z","lastActionDateTimeUtc":"2021-05-06T20:57:31.729452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 9ade4f40-7843-404f-ab1c-161f9822babd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:32 GMT + etag: '"D041F52737BD6B82A71C0B9CFDE3144642AFB1832D6E7B4F3FB84D7A0C64CAA8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9ade4f40-7843-404f-ab1c-161f9822babd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1109c823-471e-4942-9d7f-f257db54611c +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:33 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd6de2f5b-2cf5-4a96-b093-aee587aa167b?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:33 GMT + etag: + - '"0x8D910D1927331FE"' + last-modified: + - Thu, 06 May 2021 20:57:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:34 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcd6de2f5b-2cf5-4a96-b093-aee587aa167b/9533e16e-3eaf-476a-8003-d3c4aae4ef83.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:33 GMT + etag: + - '"0x8D910D19296B39B"' + last-modified: + - Thu, 06 May 2021 20:57:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:34 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetec5723fc-1113-47b3-adbb-b86c514ed63f?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:34 GMT + etag: + - '"0x8D910D19325F536"' + last-modified: + - Thu, 06 May 2021 20:57:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcd6de2f5b-2cf5-4a96-b093-aee587aa167b?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetec5723fc-1113-47b3-adbb-b86c514ed63f?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '490' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 54a4913c-2902-4758-aedb-cba67d3a888e + content-length: '0' + date: Thu, 06 May 2021 20:57:34 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 54a4913c-2902-4758-aedb-cba67d3a888e + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 + response: + body: + string: '{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:35.4432324Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: ff56c383-9c76-4b4a-84ed-64e0e97c3170 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:34 GMT + etag: '"8687B372581FE66C1851CA48407D8EF67B4069F3F89B18D247B43DAD00E8268A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ff56c383-9c76-4b4a-84ed-64e0e97c3170 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 + response: + body: + string: '{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:35.4432324Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: eb70d3a3-beb8-493e-843b-310ce71933d9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:35 GMT + etag: '"8687B372581FE66C1851CA48407D8EF67B4069F3F89B18D247B43DAD00E8268A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eb70d3a3-beb8-493e-843b-310ce71933d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 + response: + body: + string: '{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:36.3043562Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 5f3a1fdd-9b40-4724-a8f2-c623671a0800 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:36 GMT + etag: '"4BA52AEDF8FBA3F1707FBFCB0B15A35E3F77A01EDB6BDF01F6C8705F7A1769DF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5f3a1fdd-9b40-4724-a8f2-c623671a0800 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 + response: + body: + string: '{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:37.4676643Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 59e71571-c11c-428e-ab23-a89cf14a0664 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:37 GMT + etag: '"CAC58E00EF1ECC8A20491129BB5F343CD4135C11D28A7142D159070658020134"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 59e71571-c11c-428e-ab23-a89cf14a0664 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 + response: + body: + string: '{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:37.4676643Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b45a1641-0b9c-43a2-bc93-19e554fa80c1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:38 GMT + etag: '"CAC58E00EF1ECC8A20491129BB5F343CD4135C11D28A7142D159070658020134"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b45a1641-0b9c-43a2-bc93-19e554fa80c1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 + response: + body: + string: '{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:37.4676643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: c8537cac-fbb8-491d-953e-baf717562463 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:39 GMT + etag: '"A52D2127CF45FA61BB0764C9B6847D58A4BB2810946180AEE0E3AE695A3872D4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c8537cac-fbb8-491d-953e-baf717562463 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/1bde9877-50bd-4c4e-9ff7-11b4410f29f3 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:40 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src921333f1-15dd-40b1-acf2-cd204955aef3?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:41 GMT + etag: + - '"0x8D910D196BCA44C"' + last-modified: + - Thu, 06 May 2021 20:57:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:41 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src921333f1-15dd-40b1-acf2-cd204955aef3/4c13ccf7-c832-4159-bf1b-a35332faab79.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:41 GMT + etag: + - '"0x8D910D196E1F69C"' + last-modified: + - Thu, 06 May 2021 20:57:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:41 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target58ac56e8-0209-4057-8aed-cb71ecad7244?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:42 GMT + etag: + - '"0x8D910D1977092BF"' + last-modified: + - Thu, 06 May 2021 20:57:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src921333f1-15dd-40b1-acf2-cd204955aef3?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target58ac56e8-0209-4057-8aed-cb71ecad7244?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '490' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 9db22270-bda7-4212-b496-62c1e2024011 + content-length: '0' + date: Thu, 06 May 2021 20:57:41 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9db22270-bda7-4212-b496-62c1e2024011 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 + response: + body: + string: '{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:42.6455656Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 745a2e9e-f163-4c2b-954c-7f169fc0db4b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:42 GMT + etag: '"2D1B4D6237E1B6187201B83C7AFEBA2810146D566842F8109470DFFF57528E6D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 745a2e9e-f163-4c2b-954c-7f169fc0db4b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 + response: + body: + string: '{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:42.6455656Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b029833b-bbfb-4117-8841-5fc96b4b61c8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:42 GMT + etag: '"2D1B4D6237E1B6187201B83C7AFEBA2810146D566842F8109470DFFF57528E6D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b029833b-bbfb-4117-8841-5fc96b4b61c8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 + response: + body: + string: '{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:43.513674Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 60278cd2-f5fb-4d27-8ba2-cc305a43191b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:43 GMT + etag: '"38BED3D17C6D2C50ADB8D5574653A1B3FD80AE18CC2AD4788D3E81413E51C9F0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 60278cd2-f5fb-4d27-8ba2-cc305a43191b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 + response: + body: + string: '{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:44.4905271Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 64e69ce9-eb4e-4e4c-8cf8-059e9acb7e15 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:44 GMT + etag: '"2BC6A7250957CD379DB67DE8DF03AEEB3B547726A010FA6BC7BF5EB8AB22C3C4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 64e69ce9-eb4e-4e4c-8cf8-059e9acb7e15 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 + response: + body: + string: '{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:44.4905271Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 2409a97e-2f7e-4e34-bff6-828449842f5d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:45 GMT + etag: '"2BC6A7250957CD379DB67DE8DF03AEEB3B547726A010FA6BC7BF5EB8AB22C3C4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2409a97e-2f7e-4e34-bff6-828449842f5d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 + response: + body: + string: '{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:44.4905271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 993a26ec-c563-427f-bcc3-35011edb5a48 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:47 GMT + etag: '"CACF804CBC2930755221C6AF13D131419C1FF659A456B621F32BF814D6B118DA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 993a26ec-c563-427f-bcc3-35011edb5a48 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/42e3fbab-32df-431e-8e3d-3b66e0819764 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf1e302be-c2e8-4b93-a37c-e043e57cf9cb?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:47 GMT + etag: + - '"0x8D910D19B22F38A"' + last-modified: + - Thu, 06 May 2021 20:57:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:48 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcf1e302be-c2e8-4b93-a37c-e043e57cf9cb/b0639097-eff4-446b-8b56-40e05997d0fa.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:48 GMT + etag: + - '"0x8D910D19B48196E"' + last-modified: + - Thu, 06 May 2021 20:57:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:49 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target15bccf38-bcf2-4567-8047-b239006820fb?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:49 GMT + etag: + - '"0x8D910D19BDC4995"' + last-modified: + - Thu, 06 May 2021 20:57:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf1e302be-c2e8-4b93-a37c-e043e57cf9cb?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target15bccf38-bcf2-4567-8047-b239006820fb?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 1ff0b607-ea93-4551-9605-10ac967b061f + content-length: '0' + date: Thu, 06 May 2021 20:57:49 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1ff0b607-ea93-4551-9605-10ac967b061f + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 + response: + body: + string: '{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:50.0681459Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 0ad6315b-1f49-4466-90a3-63b666c585f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:49 GMT + etag: '"FF65D8D99A6CC58EB68CA87E1327B1AAE1B95E9EA8AB70907EF83ACB1A8137A8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0ad6315b-1f49-4466-90a3-63b666c585f4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 + response: + body: + string: '{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:50.0681459Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 2b98dab1-4a31-415e-9519-af0be315afe9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:49 GMT + etag: '"FF65D8D99A6CC58EB68CA87E1327B1AAE1B95E9EA8AB70907EF83ACB1A8137A8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2b98dab1-4a31-415e-9519-af0be315afe9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 + response: + body: + string: '{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:51.4943893Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: e7aded71-7ee2-41e7-8290-41fa4928e516 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:50 GMT + etag: '"5A4F7A007E16C3B9CFDBE015BD0411C1133983365A1525DA6A3D1D821D082E63"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e7aded71-7ee2-41e7-8290-41fa4928e516 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 + response: + body: + string: '{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:51.4943893Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: cd9f2169-e903-49ba-b791-89e60d59f0d3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:51 GMT + etag: '"5A4F7A007E16C3B9CFDBE015BD0411C1133983365A1525DA6A3D1D821D082E63"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cd9f2169-e903-49ba-b791-89e60d59f0d3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 + response: + body: + string: '{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:51.4943893Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 2d0ea223-d505-4a83-961f-a2e4cf4fb3ef + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:53 GMT + etag: '"5A4F7A007E16C3B9CFDBE015BD0411C1133983365A1525DA6A3D1D821D082E63"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2d0ea223-d505-4a83-961f-a2e4cf4fb3ef + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 + response: + body: + string: '{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:51.4943893Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: b505f04a-8837-4192-8e85-bef32e1feaa7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:54 GMT + etag: '"9233DF6875A60CF68ED79EB6DFFDDF22927B41E100E3EDBCD087DED8A4FBFF72"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b505f04a-8837-4192-8e85-bef32e1feaa7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2cc455f7-d1e9-4315-8e10-419a015eade0 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:55 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src7ec41dd0-fa8b-47e3-be1e-acb9a460b7d7?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:55 GMT + etag: + - '"0x8D910D19F809B24"' + last-modified: + - Thu, 06 May 2021 20:57:55 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:57:56 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src7ec41dd0-fa8b-47e3-be1e-acb9a460b7d7/99a5f966-2e92-481f-8a49-6fe131ca367a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:57:55 GMT + etag: + - '"0x8D910D19FA539D9"' + last-modified: + - Thu, 06 May 2021 20:57:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:57:56 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target5eb725bb-3057-4f0f-b391-57114d8d75f6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:57:56 GMT + etag: + - '"0x8D910D1A03AF4CA"' + last-modified: + - Thu, 06 May 2021 20:57:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7ec41dd0-fa8b-47e3-be1e-acb9a460b7d7?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5eb725bb-3057-4f0f-b391-57114d8d75f6?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: a11f226d-5e50-4c53-9535-e36d861ec7ee + content-length: '0' + date: Thu, 06 May 2021 20:57:56 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a11f226d-5e50-4c53-9535-e36d861ec7ee + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 + response: + body: + string: '{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:57:57.4057243Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: b94529f0-4ec7-4745-9f22-9daad62c4f19 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:56 GMT + etag: '"F4E8CE420D5D9226A1A8F187117D5F36947452ADFA866C2A068111022A7FEF8A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b94529f0-4ec7-4745-9f22-9daad62c4f19 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 + response: + body: + string: '{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:57:57.4057243Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 54002cd1-4f71-4cdc-8c7f-f2a3e39887f3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:56 GMT + etag: '"F4E8CE420D5D9226A1A8F187117D5F36947452ADFA866C2A068111022A7FEF8A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 54002cd1-4f71-4cdc-8c7f-f2a3e39887f3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 + response: + body: + string: '{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:57:58.3725452Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: bacbab58-44a6-42ee-8fc4-692113e00bc1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:58 GMT + etag: '"52BD1D350A9632555F00156D6447E81E7D1689D5C669B550FF65A42B53879EFC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bacbab58-44a6-42ee-8fc4-692113e00bc1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 + response: + body: + string: '{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:57:58.3725452Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: a793444d-d42b-4510-8cc9-e085dff6df20 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:57:59 GMT + etag: '"52BD1D350A9632555F00156D6447E81E7D1689D5C669B550FF65A42B53879EFC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a793444d-d42b-4510-8cc9-e085dff6df20 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 + response: + body: + string: '{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:58:01.2382957Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: d6f2c751-5f45-4a44-8e12-8354ef8f0249 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:01 GMT + etag: '"A5EE92BB7D7F5C04618EB19E039A6C63838B1B688D03BAB3F365168ED3357066"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d6f2c751-5f45-4a44-8e12-8354ef8f0249 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 + response: + body: + string: '{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:58:01.2382957Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: fe46d060-7e6a-4ea6-a0c6-148005635a67 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:02 GMT + etag: '"A5EE92BB7D7F5C04618EB19E039A6C63838B1B688D03BAB3F365168ED3357066"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fe46d060-7e6a-4ea6-a0c6-148005635a67 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 + response: + body: + string: '{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:58:01.2382957Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 7f42a1e8-24fc-4d81-a7e6-28fc972a506a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:03 GMT + etag: '"A5EE92BB7D7F5C04618EB19E039A6C63838B1B688D03BAB3F365168ED3357066"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7f42a1e8-24fc-4d81-a7e6-28fc972a506a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 + response: + body: + string: '{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:58:01.2382957Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 6a2d3b3b-6e98-4e23-91a0-71a1b2d45359 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:04 GMT + etag: '"A5EE92BB7D7F5C04618EB19E039A6C63838B1B688D03BAB3F365168ED3357066"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6a2d3b3b-6e98-4e23-91a0-71a1b2d45359 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 + response: + body: + string: '{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:58:01.2382957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 93e12498-39ed-4665-9125-d5d393c7013e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:05 GMT + etag: '"3101C8CB19555A01BB5F7E0D28EECD83AD705E1C65AEC51E31CA0A09F013CD5C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 93e12498-39ed-4665-9125-d5d393c7013e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4bc00374-b3d2-44b8-b1cf-7d154dde3988 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:06 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfc09ff35-ec33-4a05-a017-a92a6160f5f9?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:07 GMT + etag: + - '"0x8D910D1A66C816A"' + last-modified: + - Thu, 06 May 2021 20:58:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:07 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcfc09ff35-ec33-4a05-a017-a92a6160f5f9/bf8a2d66-dc0a-4106-b5c9-21af12408e62.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:07 GMT + etag: + - '"0x8D910D1A69340B9"' + last-modified: + - Thu, 06 May 2021 20:58:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:08 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target06cd75fa-89f3-456b-8311-1c6b1aea29a1?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:07 GMT + etag: + - '"0x8D910D1A728048D"' + last-modified: + - Thu, 06 May 2021 20:58:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfc09ff35-ec33-4a05-a017-a92a6160f5f9?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target06cd75fa-89f3-456b-8311-1c6b1aea29a1?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 0675e59e-cbcf-4cc1-a1b4-155179cb8e98 + content-length: '0' + date: Thu, 06 May 2021 20:58:08 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/807faa20-00cb-4fd5-b544-c2dc39400ff8 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0675e59e-cbcf-4cc1-a1b4-155179cb8e98 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/807faa20-00cb-4fd5-b544-c2dc39400ff8 + response: + body: + string: '{"id":"807faa20-00cb-4fd5-b544-c2dc39400ff8","createdDateTimeUtc":"2021-05-06T20:58:09.0174165Z","lastActionDateTimeUtc":"2021-05-06T20:58:09.017417Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: ebc68e94-9337-4c86-b186-2b029f5cc47a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:08 GMT + etag: '"0E8D45FBD70FA42CA06CA22C81D523DAB3FD864B99EA78E90E7DD79D219A8A3A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ebc68e94-9337-4c86-b186-2b029f5cc47a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/807faa20-00cb-4fd5-b544-c2dc39400ff8 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:09 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src7cb25563-c3fa-4c56-92d0-3c973e3c5e39?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:09 GMT + etag: + - '"0x8D910D1A7E4E04F"' + last-modified: + - Thu, 06 May 2021 20:58:10 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:10 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src7cb25563-c3fa-4c56-92d0-3c973e3c5e39/eb0cffbd-4983-4f72-ae14-9740d356d93d.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:09 GMT + etag: + - '"0x8D910D1A80B57F1"' + last-modified: + - Thu, 06 May 2021 20:58:10 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:10 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target37ac54f7-491b-41af-9dd4-d675c19d4d70?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:10 GMT + etag: + - '"0x8D910D1A89B902B"' + last-modified: + - Thu, 06 May 2021 20:58:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src7cb25563-c3fa-4c56-92d0-3c973e3c5e39?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target37ac54f7-491b-41af-9dd4-d675c19d4d70?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '490' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: e91a9935-38e0-44bd-95b2-1e042d040fde + content-length: '0' + date: Thu, 06 May 2021 20:58:10 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ec30fae6-fba2-4a8e-828b-916d756e2e58 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e91a9935-38e0-44bd-95b2-1e042d040fde + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ec30fae6-fba2-4a8e-828b-916d756e2e58 + response: + body: + string: '{"id":"ec30fae6-fba2-4a8e-828b-916d756e2e58","createdDateTimeUtc":"2021-05-06T20:58:11.4798699Z","lastActionDateTimeUtc":"2021-05-06T20:58:11.4798706Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: f1abe5fd-4bf5-4134-bf35-7935d5eb66de + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:10 GMT + etag: '"3C4917FFF09837BEDA151CABADEEAEA2DCC216002A56EFB2A07E3FA78B3D44DF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f1abe5fd-4bf5-4134-bf35-7935d5eb66de + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ec30fae6-fba2-4a8e-828b-916d756e2e58 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:11 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcae7d7850-f7ad-48b2-96f2-000a0ef3cafc?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:11 GMT + etag: + - '"0x8D910D1A9634DE3"' + last-modified: + - Thu, 06 May 2021 20:58:12 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:12 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcae7d7850-f7ad-48b2-96f2-000a0ef3cafc/b766875b-2211-474a-8428-dcad7c469e89.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:12 GMT + etag: + - '"0x8D910D1A98BD559"' + last-modified: + - Thu, 06 May 2021 20:58:12 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:13 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target5d936217-1a54-4534-8daa-fb1a66356e90?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:13 GMT + etag: + - '"0x8D910D1AA215E2E"' + last-modified: + - Thu, 06 May 2021 20:58:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcae7d7850-f7ad-48b2-96f2-000a0ef3cafc?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5d936217-1a54-4534-8daa-fb1a66356e90?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 2654bf09-73d6-4fce-bbc1-936bf5d09785 + content-length: '0' + date: Thu, 06 May 2021 20:58:13 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2746f514-19d1-4536-9945-77fe255d40d2 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2654bf09-73d6-4fce-bbc1-936bf5d09785 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2746f514-19d1-4536-9945-77fe255d40d2 + response: + body: + string: '{"id":"2746f514-19d1-4536-9945-77fe255d40d2","createdDateTimeUtc":"2021-05-06T20:58:14.0274925Z","lastActionDateTimeUtc":"2021-05-06T20:58:14.0274928Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 63050fd1-ae3f-45d7-bce9-d3984621ddef + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:13 GMT + etag: '"A2C3F9077061684C1A4AC878D32B5F1BD4CFA783871CB83CA07764612C5F8880"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 63050fd1-ae3f-45d7-bce9-d3984621ddef + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2746f514-19d1-4536-9945-77fe255d40d2 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:14 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9038db42-95f8-46f4-ae31-7b60af9cfeee?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:14 GMT + etag: + - '"0x8D910D1AAE5F4EA"' + last-modified: + - Thu, 06 May 2021 20:58:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:15 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9038db42-95f8-46f4-ae31-7b60af9cfeee/bf7c44cb-bd20-4a6e-a78f-7524574f81fe.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:14 GMT + etag: + - '"0x8D910D1AB0A2F5B"' + last-modified: + - Thu, 06 May 2021 20:58:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:15 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target6ca2378e-0e15-446e-9567-d3737b695385?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:16 GMT + etag: + - '"0x8D910D1AB9D6027"' + last-modified: + - Thu, 06 May 2021 20:58:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9038db42-95f8-46f4-ae31-7b60af9cfeee?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6ca2378e-0e15-446e-9567-d3737b695385?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 540c2a6c-cf3d-4f27-8441-63c907d679c3 + content-length: '0' + date: Thu, 06 May 2021 20:58:15 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7e4cd5d1-e661-48af-a391-ad95d730b900 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 540c2a6c-cf3d-4f27-8441-63c907d679c3 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7e4cd5d1-e661-48af-a391-ad95d730b900 + response: + body: + string: '{"id":"7e4cd5d1-e661-48af-a391-ad95d730b900","createdDateTimeUtc":"2021-05-06T20:58:16.5051919Z","lastActionDateTimeUtc":"2021-05-06T20:58:16.5051924Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 3cb53a7c-eb80-443a-a385-353c3a4304c7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:15 GMT + etag: '"78F8FC6AB004ADA2C272A631023699F9E25FBD7CD2AA38F27FE56F9D3828449F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3cb53a7c-eb80-443a-a385-353c3a4304c7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7e4cd5d1-e661-48af-a391-ad95d730b900 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src4793fbbb-c0a8-4060-84c3-b573b18fe395?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:16 GMT + etag: + - '"0x8D910D1AC62588E"' + last-modified: + - Thu, 06 May 2021 20:58:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src4793fbbb-c0a8-4060-84c3-b573b18fe395/a0dc29bb-d8ac-4e34-a947-058deeeae504.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:17 GMT + etag: + - '"0x8D910D1AC8BBE30"' + last-modified: + - Thu, 06 May 2021 20:58:17 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:18 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targeta765fe2c-2d28-4485-a44a-efa04422bfdd?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:18 GMT + etag: + - '"0x8D910D1AD21F103"' + last-modified: + - Thu, 06 May 2021 20:58:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4793fbbb-c0a8-4060-84c3-b573b18fe395?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta765fe2c-2d28-4485-a44a-efa04422bfdd?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: c1e10250-e7d8-4d5a-a9a9-c0c91148732d + content-length: '0' + date: Thu, 06 May 2021 20:58:18 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4b2fca25-8bf1-4431-8bc1-1a7babddc9a2 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c1e10250-e7d8-4d5a-a9a9-c0c91148732d + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4b2fca25-8bf1-4431-8bc1-1a7babddc9a2 + response: + body: + string: '{"id":"4b2fca25-8bf1-4431-8bc1-1a7babddc9a2","createdDateTimeUtc":"2021-05-06T20:58:19.0337516Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.0337521Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 45896198-767a-4c0c-8422-c0802180e6ed + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:18 GMT + etag: '"E9CCACE62F7888D8A7025223A7E46B4622B9E48C22C58F63506265597D737C0E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 45896198-767a-4c0c-8422-c0802180e6ed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4b2fca25-8bf1-4431-8bc1-1a7babddc9a2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/807faa20-00cb-4fd5-b544-c2dc39400ff8 + response: + body: + string: '{"id":"807faa20-00cb-4fd5-b544-c2dc39400ff8","createdDateTimeUtc":"2021-05-06T20:58:09.0174165Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.3253271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 799dfd34-fa6c-4f58-a5de-066eb3ec5140 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:18 GMT + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 799dfd34-fa6c-4f58-a5de-066eb3ec5140 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/807faa20-00cb-4fd5-b544-c2dc39400ff8 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ec30fae6-fba2-4a8e-828b-916d756e2e58 + response: + body: + string: '{"id":"ec30fae6-fba2-4a8e-828b-916d756e2e58","createdDateTimeUtc":"2021-05-06T20:58:11.4798699Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.4816552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: e95647ef-c7cd-439c-8684-921791f4a7ca + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:18 GMT + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e95647ef-c7cd-439c-8684-921791f4a7ca + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ec30fae6-fba2-4a8e-828b-916d756e2e58 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/2746f514-19d1-4536-9945-77fe255d40d2 + response: + body: + string: '{"id":"2746f514-19d1-4536-9945-77fe255d40d2","createdDateTimeUtc":"2021-05-06T20:58:14.0274925Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.6398519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: 8ef58d8b-88ab-4b5a-9232-2d5f5c53a976 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:18 GMT + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8ef58d8b-88ab-4b5a-9232-2d5f5c53a976 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/2746f514-19d1-4536-9945-77fe255d40d2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/7e4cd5d1-e661-48af-a391-ad95d730b900 + response: + body: + string: '{"id":"7e4cd5d1-e661-48af-a391-ad95d730b900","createdDateTimeUtc":"2021-05-06T20:58:16.5051919Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.7950799Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 0e2be9a4-667f-4e27-9d97-3d69c3efc176 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:18 GMT + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0e2be9a4-667f-4e27-9d97-3d69c3efc176 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/7e4cd5d1-e661-48af-a391-ad95d730b900 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4b2fca25-8bf1-4431-8bc1-1a7babddc9a2 + response: + body: + string: '{"id":"4b2fca25-8bf1-4431-8bc1-1a7babddc9a2","createdDateTimeUtc":"2021-05-06T20:58:19.0337516Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.947964Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: e4b122f2-fa5e-41c9-96ae-7953d7a57fd5 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:19 GMT + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e4b122f2-fa5e-41c9-96ae-7953d7a57fd5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4b2fca25-8bf1-4431-8bc1-1a7babddc9a2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&statuses=Cancelled + response: + body: + string: '{"value":[{"id":"4b2fca25-8bf1-4431-8bc1-1a7babddc9a2","createdDateTimeUtc":"2021-05-06T20:58:19.0337516Z","lastActionDateTimeUtc":"2021-05-06T20:58:21.8144695Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=16&$maxpagesize=50&statuses=Cancelled"}' + headers: + apim-request-id: 9ef4eea9-fa80-4d43-80f7-fec425210b96 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:29 GMT + etag: '"AA0B4DF6335EE1C214C11DB172FD6CAAEC980EE65793EA05CDDAC0956A9283DB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9ef4eea9-fa80-4d43-80f7-fec425210b96 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=0&statuses=Cancelled +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=16&$maxpagesize=50&statuses=Cancelled + response: + body: + string: '{"value":[{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: c312bd96-bdbd-4e4f-8474-d9b35d2ae419 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:29 GMT + etag: '"DEA48C302B56612A49ADC8CD5F2C011A54BC408E9305F28BE95F3C1A6AB26F72"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c312bd96-bdbd-4e4f-8474-d9b35d2ae419 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=50&$top=16&$maxpagesize=50&statuses=Cancelled +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_order_by_creation_time_asc.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_order_by_creation_time_asc.yaml new file mode 100644 index 000000000000..a939615d9415 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_order_by_creation_time_asc.yaml @@ -0,0 +1,2331 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:30 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srccd5b535f-7e3f-40a9-b0fe-5b6e117800ea?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:30 GMT + etag: + - '"0x8D910D1B4A81C40"' + last-modified: + - Thu, 06 May 2021 20:58:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srccd5b535f-7e3f-40a9-b0fe-5b6e117800ea/d348a382-e899-4b60-93f7-558e5d61bda2.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:31 GMT + etag: + - '"0x8D910D1B4CBD71F"' + last-modified: + - Thu, 06 May 2021 20:58:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srccd5b535f-7e3f-40a9-b0fe-5b6e117800ea/a8fe2046-f6be-4dbc-a975-48deebbf5ac7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:31 GMT + etag: + - '"0x8D910D1B4EF9238"' + last-modified: + - Thu, 06 May 2021 20:58:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:32 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target8107313d-bffd-43eb-b4e0-dafdcf87c85d?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:32 GMT + etag: + - '"0x8D910D1B57A10AD"' + last-modified: + - Thu, 06 May 2021 20:58:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srccd5b535f-7e3f-40a9-b0fe-5b6e117800ea?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8107313d-bffd-43eb-b4e0-dafdcf87c85d?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 74631226-8c86-469d-ad50-fab9a3dff3a2 + content-length: '0' + date: Thu, 06 May 2021 20:58:33 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bf4b572f-7707-4c4d-943c-cf18f40a39ab + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 74631226-8c86-469d-ad50-fab9a3dff3a2 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bf4b572f-7707-4c4d-943c-cf18f40a39ab + response: + body: + string: '{"id":"bf4b572f-7707-4c4d-943c-cf18f40a39ab","createdDateTimeUtc":"2021-05-06T20:58:33.5701587Z","lastActionDateTimeUtc":"2021-05-06T20:58:33.5701589Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4bf60447-f5bd-49b3-a069-39058afeddb4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:33 GMT + etag: '"F92865324804FCC21F172B34E56178ABC7F1014FB3206E09C5B59A7BBECAAB14"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4bf60447-f5bd-49b3-a069-39058afeddb4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bf4b572f-7707-4c4d-943c-cf18f40a39ab +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:33 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcceee4f2b-dafc-4b8e-b3e5-f225915bbd82?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:34 GMT + etag: + - '"0x8D910D1B6811417"' + last-modified: + - Thu, 06 May 2021 20:58:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:34 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcceee4f2b-dafc-4b8e-b3e5-f225915bbd82/01bcbf2c-fdcd-4902-aef4-f476bb04ee60.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:34 GMT + etag: + - '"0x8D910D1B6A840A6"' + last-modified: + - Thu, 06 May 2021 20:58:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:35 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcceee4f2b-dafc-4b8e-b3e5-f225915bbd82/c52c3446-11e2-444d-9b89-15b97bebfdb9.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:34 GMT + etag: + - '"0x8D910D1B6CF7ED9"' + last-modified: + - Thu, 06 May 2021 20:58:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:35 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetfd19a46f-81b8-4783-90e2-741626ed9713?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:35 GMT + etag: + - '"0x8D910D1B7622C99"' + last-modified: + - Thu, 06 May 2021 20:58:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcceee4f2b-dafc-4b8e-b3e5-f225915bbd82?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfd19a46f-81b8-4783-90e2-741626ed9713?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 0fc4a9d7-ea92-4df1-b145-df63507e1957 + content-length: '0' + date: Thu, 06 May 2021 20:58:36 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/894f7cd0-05c2-4094-9d24-a1a70a731125 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0fc4a9d7-ea92-4df1-b145-df63507e1957 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/894f7cd0-05c2-4094-9d24-a1a70a731125 + response: + body: + string: '{"id":"894f7cd0-05c2-4094-9d24-a1a70a731125","createdDateTimeUtc":"2021-05-06T20:58:36.2463614Z","lastActionDateTimeUtc":"2021-05-06T20:58:36.2463617Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 57a6121b-d86a-4611-a073-8721b46a8c4a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:36 GMT + etag: '"29068EDA05FF5816C083EDC95E0A20F45E14C074F55F7FE9F0ADE6584C006287"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 57a6121b-d86a-4611-a073-8721b46a8c4a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/894f7cd0-05c2-4094-9d24-a1a70a731125 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:36 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcab4fd32f-7f14-40f6-868f-0aa1520b1052?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:36 GMT + etag: + - '"0x8D910D1B823967A"' + last-modified: + - Thu, 06 May 2021 20:58:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:37 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcab4fd32f-7f14-40f6-868f-0aa1520b1052/201c64b2-c1a5-48c3-a13b-95af8fbefad4.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:36 GMT + etag: + - '"0x8D910D1B84880E8"' + last-modified: + - Thu, 06 May 2021 20:58:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:37 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcab4fd32f-7f14-40f6-868f-0aa1520b1052/e784773c-5aee-4245-8500-3bc0116766be.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:37 GMT + etag: + - '"0x8D910D1B86EFB9C"' + last-modified: + - Thu, 06 May 2021 20:58:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:37 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target83e809a4-4db0-46ef-ba73-e7547c3b7c74?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:38 GMT + etag: + - '"0x8D910D1B905517C"' + last-modified: + - Thu, 06 May 2021 20:58:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcab4fd32f-7f14-40f6-868f-0aa1520b1052?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target83e809a4-4db0-46ef-ba73-e7547c3b7c74?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 04025026-5afa-4c6f-82aa-1c4332d5555c + content-length: '0' + date: Thu, 06 May 2021 20:58:38 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/13b69fe6-9f91-423d-9512-643db7332a70 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 04025026-5afa-4c6f-82aa-1c4332d5555c + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/13b69fe6-9f91-423d-9512-643db7332a70 + response: + body: + string: '{"id":"13b69fe6-9f91-423d-9512-643db7332a70","createdDateTimeUtc":"2021-05-06T20:58:38.9863162Z","lastActionDateTimeUtc":"2021-05-06T20:58:38.9863165Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: bca6b6fc-b6b7-4994-888c-c409ee31048b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:39 GMT + etag: '"551389A221834555068824D250A234310B96E7BCC21DAE690DB70F3F079AC035"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bca6b6fc-b6b7-4994-888c-c409ee31048b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/13b69fe6-9f91-423d-9512-643db7332a70 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&$orderBy=createdDateTimeUtc%20asc + response: + body: + string: '{"value":[{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2403&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 560c8504-26b7-4211-8d66-6d4902a0590b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:39 GMT + etag: '"6638E194393F27B27163B7B5BEDC90883EEE2ADB3088F2F77C542BBA7298E017"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 560c8504-26b7-4211-8d66-6d4902a0590b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=0&$orderBy=createdDateTimeUtc%20asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2403&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2353&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 6eaf8177-9de4-4f67-b3a3-808302dcca7c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:39 GMT + etag: '"29CCC2B9FBA105068F7D673D919A9F7BC7D7881D55071EFF49D214A9D6FD17BE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6eaf8177-9de4-4f67-b3a3-808302dcca7c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=50&$top=2403&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2353&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2303&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: facbb998-bc6f-40b0-bf72-1f829e49c909 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:39 GMT + etag: '"982775116CBB066658237555ACC298B29D99B425B60E8E8062DCCC73930DF9B9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: facbb998-bc6f-40b0-bf72-1f829e49c909 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=100&$top=2353&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2303&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2253&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: f0c9ca58-5e76-40aa-b139-de5970a33c46 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:40 GMT + etag: '"44954EF45FACB3242BE1B384B39B67215C5B7EB506E8792BC150AE9D25D387D4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f0c9ca58-5e76-40aa-b139-de5970a33c46 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=150&$top=2303&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2253&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2203&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: b867c143-571b-43ee-8c08-af899cd4784c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:40 GMT + etag: '"550E5E8A4C562461DDD919D87D82FCBC7A3311FB363FFD548C7A57B52E126A97"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b867c143-571b-43ee-8c08-af899cd4784c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=200&$top=2253&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2203&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2153&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: dcce5e62-6b59-4979-872b-0b5d4eb3648e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:40 GMT + etag: '"8148A4F53984EFED1BF227471418F6CFE0D11473D529AA383B51E1131432723B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dcce5e62-6b59-4979-872b-0b5d4eb3648e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=250&$top=2203&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2153&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2103&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 2020c647-6509-4c99-a2f0-bc8afc9eebe1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:41 GMT + etag: '"3D76ACB7476F685BD16716788CB756E8C30C15E0C6827D7F8ABFDFF88F7C6D38"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2020c647-6509-4c99-a2f0-bc8afc9eebe1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=300&$top=2153&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2103&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2053&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 84f07cb4-8345-4d38-81a1-b94c9be89b47 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:41 GMT + etag: '"8967E2CC53BB63DC8CA8553DCAA7F2A3380EF28576F3744D940E9079EFB28A63"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 84f07cb4-8345-4d38-81a1-b94c9be89b47 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=350&$top=2103&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2053&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=2003&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: ea27e72b-28c3-4bf5-b635-739ef2867a04 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:41 GMT + etag: '"6484C0287B5439E4EEEBB3B9B7A820DF9B9CAB5563207335AB9DD34D443FD299"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ea27e72b-28c3-4bf5-b635-739ef2867a04 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=400&$top=2053&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=2003&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1953&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 6a4031fc-b315-4d66-a1b0-4c4cdeffff4f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:41 GMT + etag: '"66E4909B9F511E5404AF0B4B563D521392D8011429F3EF4FE2A53F238AEB2FE6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6a4031fc-b315-4d66-a1b0-4c4cdeffff4f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=450&$top=2003&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1953&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1903&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 0b10ed17-3859-4fea-a14c-c16c0b063fa7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:42 GMT + etag: '"136193782FB01801137340B4E956C1C1AEB66B8A4C5A8E47CE21F6817F2F5B67"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0b10ed17-3859-4fea-a14c-c16c0b063fa7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=500&$top=1953&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1903&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1853&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 3bde1a06-9653-4d75-b3fc-6351d6dc36a4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:42 GMT + etag: '"1B8AAF1F91843C332CABC20AE0F21647A5539740D4BDD1DCC3A26D0C7B1A9504"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3bde1a06-9653-4d75-b3fc-6351d6dc36a4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=550&$top=1903&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1853&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1803&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 4055687a-15d3-4e00-b3e4-b78bbdf7d2ac + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:42 GMT + etag: '"D9B33C8C22EC78535464427E9F11BD16471DFE37DAF0C285EA6C3DEB37F8764E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4055687a-15d3-4e00-b3e4-b78bbdf7d2ac + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=600&$top=1853&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1803&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1753&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: cedd80bb-db48-4279-9f78-ca602b138d21 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:42 GMT + etag: '"EC14EFD87EF5D5897460A47D01D75876AE138F298EF152F7489CA6E4E8A9306D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cedd80bb-db48-4279-9f78-ca602b138d21 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=650&$top=1803&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1753&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1703&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 2938572d-d1af-4754-8fb0-fa50c102eb34 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:43 GMT + etag: '"CF059839289B4DD654492CD8D3858467976986F1B56987BD240E4FC868C2E98C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2938572d-d1af-4754-8fb0-fa50c102eb34 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=700&$top=1753&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1703&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1653&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: d594431c-62e6-4d12-bb01-8c7677bdd4c3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:43 GMT + etag: '"DC91D34E12D929001F8FC8CF231BBCCFC5574DDA3DF82164D17EE8459BD4F301"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d594431c-62e6-4d12-bb01-8c7677bdd4c3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=750&$top=1703&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1653&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1603&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: d5994dd5-7c90-4e4a-a8c6-cd2c7936d5db + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:43 GMT + etag: '"A8ED5FA76AD58ED4F3018609668577ACCEF68F4ACE32859632914A775A232582"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d5994dd5-7c90-4e4a-a8c6-cd2c7936d5db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=800&$top=1653&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1603&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1553&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 0b8ca97d-0432-492d-8c5a-0ecea6f310d6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:43 GMT + etag: '"994EFEF1422D1B196E05FBAE52048709A0476D867A4EC9DAC128DB3C3DCEC66E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0b8ca97d-0432-492d-8c5a-0ecea6f310d6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=850&$top=1603&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1553&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1503&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 6414511e-cbc0-4d31-9758-51d13c61c30b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:44 GMT + etag: '"DE1317A9FC6E9CDEA75F94A2F44A1CF3868D243BC90F1D7CE7DDF3F6AFF8CFF0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6414511e-cbc0-4d31-9758-51d13c61c30b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=900&$top=1553&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1503&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1453&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: d325eb47-8689-4d55-a286-eeffd85c59d3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:44 GMT + etag: '"23289F167990BFE8206CC64FC6C02C6A1E126E1CBD305608704BE88AE5202792"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d325eb47-8689-4d55-a286-eeffd85c59d3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=950&$top=1503&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1453&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1403&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: d6681771-5569-47c6-bbf6-013a3b499677 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:44 GMT + etag: '"54A1EC7A7291434AC67950F6CCA893BA02B924EB313CA8B34FC127EC619CE63C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d6681771-5569-47c6-bbf6-013a3b499677 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1000&$top=1453&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1403&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1353&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: e9f36044-4e15-465f-b77c-8748e1302f3b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:45 GMT + etag: '"4E7FDC93119E4D77E4DC9F5D138F778548BBFA8EAD839434894AF1008A7EFE05"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e9f36044-4e15-465f-b77c-8748e1302f3b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1050&$top=1403&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1353&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1303&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: eeeb9101-c63d-49d6-8ebb-b5f5d4c7f40d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:45 GMT + etag: '"929260ED4F4AF4341F9DF9C4DBFCA6825991DD850B59F9A83AD7C7778CF2B5F9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eeeb9101-c63d-49d6-8ebb-b5f5d4c7f40d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1100&$top=1353&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1303&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1253&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: dec101ae-6aae-47ce-8d08-f40eecbc6f0c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:45 GMT + etag: '"EB4CB5C5CE32AA1FA20A45CB61C96EF54ADE43E1C4C7DCB5ECECE961EEB0625B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dec101ae-6aae-47ce-8d08-f40eecbc6f0c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1150&$top=1303&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1253&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1203&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 48417ec7-0b54-4b17-8782-8c5aa1635e3f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:45 GMT + etag: '"65EFEAA4D50D2192717B2D6F305D5DC90F7DF91F401522D94C13F799CE9B4216"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 48417ec7-0b54-4b17-8782-8c5aa1635e3f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1200&$top=1253&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1203&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1153&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: d01dfd49-876f-4e5b-9e9d-8d6847aab352 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:46 GMT + etag: '"A491E351F0A02DE179870D52F90BBD02D168EA4F19442472E5247F3F20FF2387"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d01dfd49-876f-4e5b-9e9d-8d6847aab352 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1250&$top=1203&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1153&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1103&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 811a5746-1172-46f8-ab64-5fc7da1f62b9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:46 GMT + etag: '"34E3FCEA8C08CEFD2DAAC817FCFB0FBFA2920EFD995913A0FD2380A132E0199B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 811a5746-1172-46f8-ab64-5fc7da1f62b9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1300&$top=1153&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1103&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1053&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: a6e4c742-c3ae-4691-958e-1ad562e145ba + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:46 GMT + etag: '"D0B2F4B9914A24723187E53A7F3F1795EBD864674ADBC09B9FAD4A9271DB45D2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a6e4c742-c3ae-4691-958e-1ad562e145ba + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1350&$top=1103&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1053&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=1003&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: de3f604b-fc88-4828-af02-d6dd614eb383 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:46 GMT + etag: '"335F7FE398FD6416499215ECCE6BA140472D7EFB40C153179BDD397C73FA76B6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: de3f604b-fc88-4828-af02-d6dd614eb383 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1400&$top=1053&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=1003&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=953&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 8f0cc35b-8bc3-48de-89f6-a174802e2b72 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:47 GMT + etag: '"E4DD3FF8A5B85E77483FD82ADA297C6C116299F2081D73CAE511A79B8975D32F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8f0cc35b-8bc3-48de-89f6-a174802e2b72 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1450&$top=1003&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=953&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=903&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 99dc4a20-0786-46cc-b33e-8321694ec88f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:47 GMT + etag: '"DBD1F6967C7E3F51F87794BC50CB88F5AE910CAB06A47046EC8150081BE98589"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 99dc4a20-0786-46cc-b33e-8321694ec88f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1500&$top=953&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=903&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=853&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 0c3e5ea9-37b0-419f-a09e-d4715a44c9e7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:47 GMT + etag: '"DADCAFD13F4E9A364690165574462C7A696A4F26F4413F746C0AF8DE0B199E17"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0c3e5ea9-37b0-419f-a09e-d4715a44c9e7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1550&$top=903&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=853&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=803&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 9dcdebcb-eba8-4dea-b46d-d5e8a7dd7775 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:47 GMT + etag: '"62C3BCF202B6E7A2B9A2EC91549985EDB1461E68FAEE039EE50F839F87D90D1E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9dcdebcb-eba8-4dea-b46d-d5e8a7dd7775 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1600&$top=853&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=803&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=753&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 17fbba63-7018-49eb-8aee-f38923bee75c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:48 GMT + etag: '"CEDCD042765E9D4DE171519EA75475F2D68A77FFA11C72000B9C8884E27A060F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 17fbba63-7018-49eb-8aee-f38923bee75c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1650&$top=803&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=753&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=703&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 31302ae3-d8bd-470d-9161-787db171b31a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:48 GMT + etag: '"54D856D8D7F258CF27DF9C0122FE29AA2BBEA09BB5CA9F35EA5AF3B54B66BD5B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 31302ae3-d8bd-470d-9161-787db171b31a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1700&$top=753&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=703&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=653&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 79e607ec-48e1-463b-bff9-3aab3940443e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:48 GMT + etag: '"BD461CA246A625FD3479DD9A9AF358C647FBE17B2B22E9C845740C41BB2351E1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 79e607ec-48e1-463b-bff9-3aab3940443e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1750&$top=703&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=653&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=603&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 9edc2a23-dafc-4bde-bf7a-d926c12e6aed + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:48 GMT + etag: '"C0C88B49CFF957C17F30C16F44484C299396E085C5953BC5F2337EC356E90C10"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9edc2a23-dafc-4bde-bf7a-d926c12e6aed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1800&$top=653&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=603&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=553&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 2cc89bc9-2190-43df-9231-428d171e1332 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:49 GMT + etag: '"F7B76897788F96E2A8EE6D0AA3A71DA4547029721BA3139E67ACA0424AA5ADF8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2cc89bc9-2190-43df-9231-428d171e1332 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1850&$top=603&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=553&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=503&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: bf3db045-0aa6-44f3-a24a-4b2b20bcaeb9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:49 GMT + etag: '"70213D6941C18A4465D440B344F3AECBC8ECB8D2316ACF84013EDB2DF09D5FF2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bf3db045-0aa6-44f3-a24a-4b2b20bcaeb9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1900&$top=553&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=503&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=453&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: d16658e9-9ac7-432f-9a1f-6e2447389604 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:49 GMT + etag: '"C00127B2BCB1F694D593D0DF21ACE8FE4C001FCB7F36426FA9400EE24554552B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d16658e9-9ac7-432f-9a1f-6e2447389604 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1950&$top=503&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=453&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=403&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: a4a322eb-3461-431d-b2ca-6f7a47002d4b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:50 GMT + etag: '"C9EDAFE2745F0B41EF2AF02731BA2E247EEC4D3004061F7F612301C425D6EE70"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a4a322eb-3461-431d-b2ca-6f7a47002d4b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2000&$top=453&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=403&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=353&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 7728bc9e-4f04-48c3-92cd-0bd5fe499f9c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:50 GMT + etag: '"D6F385C20A87769BD39E6B43643C752B2AA0DCC0E65E510374FE8209D092C3A6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7728bc9e-4f04-48c3-92cd-0bd5fe499f9c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2050&$top=403&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=353&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=303&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: a94fdc79-fe04-4556-9021-c2277752a0e8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:50 GMT + etag: '"3FDDE762F5CFD7E3D8688CADC3D8DAAE50715D1F2FC787674D64DF19E765C185"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a94fdc79-fe04-4556-9021-c2277752a0e8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2100&$top=353&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=303&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=253&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: a44d303f-a9e0-47f6-bf42-26b2cd5bad70 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:50 GMT + etag: '"9C774F15DF2D31F111ACB1551076E17043D3480AF99AF2A95338A3131AF4F5FE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a44d303f-a9e0-47f6-bf42-26b2cd5bad70 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2150&$top=303&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=253&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=203&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: ae9e7315-9a29-4225-8293-192b69c7f917 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:51 GMT + etag: '"7B30AD19E2E76FEC8E15CD63F702BCAEC8B9ED0E6C7DC60FEA73B59D0453B86D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ae9e7315-9a29-4225-8293-192b69c7f917 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2200&$top=253&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=203&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=153&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 79c7ed76-e347-47dd-bc36-130a895e842d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:51 GMT + etag: '"4E1679E61FBF06955221AC12E85CD1733D4E10669D010263FCB0BE75C23B584F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 79c7ed76-e347-47dd-bc36-130a895e842d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2250&$top=203&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=153&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=103&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 03f657d7-9a67-4ca5-9280-63f0b9ddc837 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:51 GMT + etag: '"C002AE887E7A67A98014F5384FF0A26938F40FD4693667051C67BC9EB77A10ED"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 03f657d7-9a67-4ca5-9280-63f0b9ddc837 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2300&$top=153&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=103&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=53&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: fb855b58-a8ab-4eb7-b034-fc1bab7a4022 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:51 GMT + etag: '"7D2E59AF9A58BC62842D16369C53147C9BCD97EB0DAA04F521614CD3A8EF4FBB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fb855b58-a8ab-4eb7-b034-fc1bab7a4022 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2350&$top=103&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=53&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.0499248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.5123621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.6065399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7237955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7455463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:27.2981028Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:28.6916857Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:31.7799976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"704284cb-eef3-4719-a645-34bb5d3570ec","createdDateTimeUtc":"2021-05-06T20:54:15.7426458Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.5490811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a679740-861b-4230-a782-30c632a0f98a","createdDateTimeUtc":"2021-05-06T20:54:18.389999Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9593749d-938a-421f-a569-22abf0a93dad","createdDateTimeUtc":"2021-05-06T20:54:21.060224Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.115287Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45f5e5e7-ae1e-44b3-adc4-6913cd5c8413","createdDateTimeUtc":"2021-05-06T20:54:23.7599762Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bc07d0-942c-4273-992e-53ed54f806ed","createdDateTimeUtc":"2021-05-06T20:54:26.3866081Z","lastActionDateTimeUtc":"2021-05-06T20:54:29.33425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fa48f36-547c-4994-8457-59fb9e8409f7","createdDateTimeUtc":"2021-05-06T20:54:29.0375092Z","lastActionDateTimeUtc":"2021-05-06T20:54:32.4424323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"984488d1-d483-4e43-a3bd-03c0ee927395","createdDateTimeUtc":"2021-05-06T20:54:31.7380529Z","lastActionDateTimeUtc":"2021-05-06T20:54:34.3520813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3d0ea5b8-4028-4368-9055-1909b1a48879","createdDateTimeUtc":"2021-05-06T20:54:34.4125052Z","lastActionDateTimeUtc":"2021-05-06T20:54:37.4692205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a078c47e-81d5-48a2-9bd0-2bb06781ed31","createdDateTimeUtc":"2021-05-06T20:54:37.0750245Z","lastActionDateTimeUtc":"2021-05-06T20:54:40.170261Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"61dcde6e-cc80-4dd5-966d-837ba83e0ecb","createdDateTimeUtc":"2021-05-06T20:54:39.714637Z","lastActionDateTimeUtc":"2021-05-06T20:54:43.1491955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8792cce1-19ea-4d45-9232-6739e9930a20","createdDateTimeUtc":"2021-05-06T20:55:11.6049885Z","lastActionDateTimeUtc":"2021-05-06T20:55:18.6714173Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6bd767a7-bb87-49cb-b588-18ed193a8c85","createdDateTimeUtc":"2021-05-06T20:55:15.1851317Z","lastActionDateTimeUtc":"2021-05-06T20:55:19.8840932Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e317b832-94ee-49aa-9bd0-93fbff05be0c","createdDateTimeUtc":"2021-05-06T20:55:18.586865Z","lastActionDateTimeUtc":"2021-05-06T20:55:23.2186936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a71f70b-97ab-4af6-858d-c7fb29a04365","createdDateTimeUtc":"2021-05-06T20:55:22.1332246Z","lastActionDateTimeUtc":"2021-05-06T20:55:26.8061623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3491bd7b-faee-4cbf-988c-9e9dff6b5214","createdDateTimeUtc":"2021-05-06T20:55:25.5887053Z","lastActionDateTimeUtc":"2021-05-06T20:55:30.2964062Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"49eaa9cb-96e9-4b06-a36e-7c12685cd1d8","createdDateTimeUtc":"2021-05-06T20:55:42.3561935Z","lastActionDateTimeUtc":"2021-05-06T20:55:45.2155183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05748afd-3609-4e61-ba24-79defa5516b1","createdDateTimeUtc":"2021-05-06T20:55:45.1927224Z","lastActionDateTimeUtc":"2021-05-06T20:55:48.1845579Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25f69e11-fcc6-4bf5-b617-b029d533cd2c","createdDateTimeUtc":"2021-05-06T20:55:47.9352446Z","lastActionDateTimeUtc":"2021-05-06T20:55:51.2881259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:53.9401603Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:56:00.883148Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:07.9680961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:14.9686929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:25.6398593Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:32.3788307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:40.0552132Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15dd871e-9bac-4f5c-85b1-0cd334b4d2bb","createdDateTimeUtc":"2021-05-06T20:56:45.5040606Z","lastActionDateTimeUtc":"2021-05-06T20:56:47.1540091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:54.0787865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:57:01.1209204Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d73f47d7-8a61-467a-8d35-951391ec7429","createdDateTimeUtc":"2021-05-06T20:57:20.9908459Z","lastActionDateTimeUtc":"2021-05-06T20:57:25.6382834Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"994ae2f8-f8a2-402b-836e-6b4ae5f219b7","createdDateTimeUtc":"2021-05-06T20:57:23.6823591Z","lastActionDateTimeUtc":"2021-05-06T20:57:26.203164Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ee05021f-bce7-4c0e-b00f-7eb1cb54225b","createdDateTimeUtc":"2021-05-06T20:57:26.3856659Z","lastActionDateTimeUtc":"2021-05-06T20:57:28.692327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1109c823-471e-4942-9d7f-f257db54611c","createdDateTimeUtc":"2021-05-06T20:57:29.4018947Z","lastActionDateTimeUtc":"2021-05-06T20:57:31.729452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:37.4676643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:44.4905271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:51.4943893Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:58:01.2382957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"807faa20-00cb-4fd5-b544-c2dc39400ff8","createdDateTimeUtc":"2021-05-06T20:58:09.0174165Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.3253271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec30fae6-fba2-4a8e-828b-916d756e2e58","createdDateTimeUtc":"2021-05-06T20:58:11.4798699Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.4816552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2746f514-19d1-4536-9945-77fe255d40d2","createdDateTimeUtc":"2021-05-06T20:58:14.0274925Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.6398519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7e4cd5d1-e661-48af-a391-ad95d730b900","createdDateTimeUtc":"2021-05-06T20:58:16.5051919Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.7950799Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4b2fca25-8bf1-4431-8bc1-1a7babddc9a2","createdDateTimeUtc":"2021-05-06T20:58:19.0337516Z","lastActionDateTimeUtc":"2021-05-06T20:58:21.8144695Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2450&$top=3&$maxpagesize=50&$orderBy=createdDateTimeUtc + asc"}' + headers: + apim-request-id: 9af173b3-8e78-43f3-9c9f-837eaead2cb3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:52 GMT + etag: '"F80656D3B94B51E7E709F9627DD2C40B21E1AA5D47F8B333589C95A63053C720"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9af173b3-8e78-43f3-9c9f-837eaead2cb3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2400&$top=53&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2450&$top=3&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc + response: + body: + string: '{"value":[{"id":"bf4b572f-7707-4c4d-943c-cf18f40a39ab","createdDateTimeUtc":"2021-05-06T20:58:33.5701587Z","lastActionDateTimeUtc":"2021-05-06T20:58:36.5001712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"894f7cd0-05c2-4094-9d24-a1a70a731125","createdDateTimeUtc":"2021-05-06T20:58:36.2463614Z","lastActionDateTimeUtc":"2021-05-06T20:58:38.4372218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"13b69fe6-9f91-423d-9512-643db7332a70","createdDateTimeUtc":"2021-05-06T20:58:38.9863162Z","lastActionDateTimeUtc":"2021-05-06T20:58:41.5510814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}]}' + headers: + apim-request-id: 0c67a555-8d10-4aad-b030-47b6e8b44a9f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:52 GMT + etag: '"E37EA90AEF8A8C50712813B77313D9469BB4B5DC2F198D653F64A6C41370A0FE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0c67a555-8d10-4aad-b030-47b6e8b44a9f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2450&$top=3&$maxpagesize=50&$orderBy=createdDateTimeUtc+asc +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_order_by_creation_time_desc.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_order_by_creation_time_desc.yaml new file mode 100644 index 000000000000..6b0eb0cf4881 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_order_by_creation_time_desc.yaml @@ -0,0 +1,2331 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:52 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src815f5661-5f39-4fcf-9d75-d731b41d6a67?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:53 GMT + etag: + - '"0x8D910D1C1DD6175"' + last-modified: + - Thu, 06 May 2021 20:58:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:53 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src815f5661-5f39-4fcf-9d75-d731b41d6a67/8cba36fa-b4ef-4680-82cc-ca8c0ba0fa57.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:53 GMT + etag: + - '"0x8D910D1C200FEEC"' + last-modified: + - Thu, 06 May 2021 20:58:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:54 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src815f5661-5f39-4fcf-9d75-d731b41d6a67/ae6e16f0-5223-4eb5-bc67-1600c5f118d4.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:54 GMT + etag: + - '"0x8D910D1C2246BE0"' + last-modified: + - Thu, 06 May 2021 20:58:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:54 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target7556cb2f-3882-417f-9c6c-e9631ec69d0d?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:54 GMT + etag: + - '"0x8D910D1C2ADE420"' + last-modified: + - Thu, 06 May 2021 20:58:55 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src815f5661-5f39-4fcf-9d75-d731b41d6a67?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target7556cb2f-3882-417f-9c6c-e9631ec69d0d?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 53fb4be0-6175-4791-94f9-e5dfd6c29dce + content-length: '0' + date: Thu, 06 May 2021 20:58:55 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/82ef605d-508b-4a19-9110-fe42b96821bf + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 53fb4be0-6175-4791-94f9-e5dfd6c29dce + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/82ef605d-508b-4a19-9110-fe42b96821bf + response: + body: + string: '{"id":"82ef605d-508b-4a19-9110-fe42b96821bf","createdDateTimeUtc":"2021-05-06T20:58:55.4656903Z","lastActionDateTimeUtc":"2021-05-06T20:58:55.4656908Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 8fb89392-74c7-4d24-8683-959eb8d783e5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:55 GMT + etag: '"7FE680CE53B4DA5A65667F6873147D8FD4004576A1E25DF20B17FF11035B9DDC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8fb89392-74c7-4d24-8683-959eb8d783e5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/82ef605d-508b-4a19-9110-fe42b96821bf +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:55 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9032f59c-cd82-4ca5-a6f1-568bd08acc82?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:55 GMT + etag: + - '"0x8D910D1C391EF8A"' + last-modified: + - Thu, 06 May 2021 20:58:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:56 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9032f59c-cd82-4ca5-a6f1-568bd08acc82/cd7b874e-273b-4962-b5fd-05ac2515ce34.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:56 GMT + etag: + - '"0x8D910D1C3B7D884"' + last-modified: + - Thu, 06 May 2021 20:58:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:56 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9032f59c-cd82-4ca5-a6f1-568bd08acc82/6ccaabe8-80a6-4f62-8a0c-c053174d2f0b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:56 GMT + etag: + - '"0x8D910D1C3DD41AA"' + last-modified: + - Thu, 06 May 2021 20:58:56 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:57 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target6426c500-c97b-4199-8c16-8410cde26285?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:57 GMT + etag: + - '"0x8D910D1C46A8B7C"' + last-modified: + - Thu, 06 May 2021 20:58:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9032f59c-cd82-4ca5-a6f1-568bd08acc82?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6426c500-c97b-4199-8c16-8410cde26285?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 017e6f26-6a9b-43c6-b22e-82ac7da4d201 + content-length: '0' + date: Thu, 06 May 2021 20:58:57 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e87a8292-4ddf-4cac-8202-e5730c6ac695 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 017e6f26-6a9b-43c6-b22e-82ac7da4d201 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e87a8292-4ddf-4cac-8202-e5730c6ac695 + response: + body: + string: '{"id":"e87a8292-4ddf-4cac-8202-e5730c6ac695","createdDateTimeUtc":"2021-05-06T20:58:58.1025028Z","lastActionDateTimeUtc":"2021-05-06T20:58:58.1025031Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 388ecb99-6419-4059-b6fb-650f826bcd1b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:58:57 GMT + etag: '"CBBF9625A63C3EA51F9BA9ECAE4157BA6DCF6019FCCF72436DBA777C515FA0CA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 388ecb99-6419-4059-b6fb-650f826bcd1b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e87a8292-4ddf-4cac-8202-e5730c6ac695 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:58 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5ec38e5d-826b-4fa5-ad4f-3eb2765c792d?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:58:58 GMT + etag: + - '"0x8D910D1C523275B"' + last-modified: + - Thu, 06 May 2021 20:58:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:59 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5ec38e5d-826b-4fa5-ad4f-3eb2765c792d/bf106015-c1e7-47f6-ab3e-297bbdaa71ea.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:58 GMT + etag: + - '"0x8D910D1C548FA91"' + last-modified: + - Thu, 06 May 2021 20:58:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:58:59 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5ec38e5d-826b-4fa5-ad4f-3eb2765c792d/d9c8d259-9f52-4479-8ac3-c2e1ca7b4274.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:58:58 GMT + etag: + - '"0x8D910D1C56CB5B7"' + last-modified: + - Thu, 06 May 2021 20:58:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:58:59 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target6fd46161-af1b-4bb3-b831-086256e682f4?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:00 GMT + etag: + - '"0x8D910D1C5F91C63"' + last-modified: + - Thu, 06 May 2021 20:59:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5ec38e5d-826b-4fa5-ad4f-3eb2765c792d?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6fd46161-af1b-4bb3-b831-086256e682f4?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 9b664c62-4f66-4fbc-8ae1-0f66becf6076 + content-length: '0' + date: Thu, 06 May 2021 20:59:00 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4a4f5555-35fb-474c-8922-0008ffcd494b + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9b664c62-4f66-4fbc-8ae1-0f66becf6076 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/4a4f5555-35fb-474c-8922-0008ffcd494b + response: + body: + string: '{"id":"4a4f5555-35fb-474c-8922-0008ffcd494b","createdDateTimeUtc":"2021-05-06T20:59:00.7075172Z","lastActionDateTimeUtc":"2021-05-06T20:59:00.7075177Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: df4fe5a5-dcd4-4ace-bbea-93a9967c28b3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:00 GMT + etag: '"1666252C6B6CA6AB6609AB534E0CA052A78E6FFE1B55054450E1D944D56CB75F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: df4fe5a5-dcd4-4ace-bbea-93a9967c28b3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/4a4f5555-35fb-474c-8922-0008ffcd494b +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&$orderBy=createdDateTimeUtc%20desc + response: + body: + string: '{"value":[{"id":"4a4f5555-35fb-474c-8922-0008ffcd494b","createdDateTimeUtc":"2021-05-06T20:59:00.7075172Z","lastActionDateTimeUtc":"2021-05-06T20:59:00.7075177Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e87a8292-4ddf-4cac-8202-e5730c6ac695","createdDateTimeUtc":"2021-05-06T20:58:58.1025028Z","lastActionDateTimeUtc":"2021-05-06T20:58:59.7014714Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"82ef605d-508b-4a19-9110-fe42b96821bf","createdDateTimeUtc":"2021-05-06T20:58:55.4656903Z","lastActionDateTimeUtc":"2021-05-06T20:58:57.4569914Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}},{"id":"13b69fe6-9f91-423d-9512-643db7332a70","createdDateTimeUtc":"2021-05-06T20:58:38.9863162Z","lastActionDateTimeUtc":"2021-05-06T20:58:41.5510814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"894f7cd0-05c2-4094-9d24-a1a70a731125","createdDateTimeUtc":"2021-05-06T20:58:36.2463614Z","lastActionDateTimeUtc":"2021-05-06T20:58:38.4372218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf4b572f-7707-4c4d-943c-cf18f40a39ab","createdDateTimeUtc":"2021-05-06T20:58:33.5701587Z","lastActionDateTimeUtc":"2021-05-06T20:58:36.5001712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b2fca25-8bf1-4431-8bc1-1a7babddc9a2","createdDateTimeUtc":"2021-05-06T20:58:19.0337516Z","lastActionDateTimeUtc":"2021-05-06T20:58:21.8144695Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7e4cd5d1-e661-48af-a391-ad95d730b900","createdDateTimeUtc":"2021-05-06T20:58:16.5051919Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.7950799Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2746f514-19d1-4536-9945-77fe255d40d2","createdDateTimeUtc":"2021-05-06T20:58:14.0274925Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.6398519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec30fae6-fba2-4a8e-828b-916d756e2e58","createdDateTimeUtc":"2021-05-06T20:58:11.4798699Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.4816552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"807faa20-00cb-4fd5-b544-c2dc39400ff8","createdDateTimeUtc":"2021-05-06T20:58:09.0174165Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.3253271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:58:01.2382957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:51.4943893Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:44.4905271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:37.4676643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1109c823-471e-4942-9d7f-f257db54611c","createdDateTimeUtc":"2021-05-06T20:57:29.4018947Z","lastActionDateTimeUtc":"2021-05-06T20:57:31.729452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee05021f-bce7-4c0e-b00f-7eb1cb54225b","createdDateTimeUtc":"2021-05-06T20:57:26.3856659Z","lastActionDateTimeUtc":"2021-05-06T20:57:28.692327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"994ae2f8-f8a2-402b-836e-6b4ae5f219b7","createdDateTimeUtc":"2021-05-06T20:57:23.6823591Z","lastActionDateTimeUtc":"2021-05-06T20:57:26.203164Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d73f47d7-8a61-467a-8d35-951391ec7429","createdDateTimeUtc":"2021-05-06T20:57:20.9908459Z","lastActionDateTimeUtc":"2021-05-06T20:57:25.6382834Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:57:01.1209204Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:54.0787865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15dd871e-9bac-4f5c-85b1-0cd334b4d2bb","createdDateTimeUtc":"2021-05-06T20:56:45.5040606Z","lastActionDateTimeUtc":"2021-05-06T20:56:47.1540091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:40.0552132Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:32.3788307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:25.6398593Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:14.9686929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:07.9680961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:56:00.883148Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:53.9401603Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25f69e11-fcc6-4bf5-b617-b029d533cd2c","createdDateTimeUtc":"2021-05-06T20:55:47.9352446Z","lastActionDateTimeUtc":"2021-05-06T20:55:51.2881259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05748afd-3609-4e61-ba24-79defa5516b1","createdDateTimeUtc":"2021-05-06T20:55:45.1927224Z","lastActionDateTimeUtc":"2021-05-06T20:55:48.1845579Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49eaa9cb-96e9-4b06-a36e-7c12685cd1d8","createdDateTimeUtc":"2021-05-06T20:55:42.3561935Z","lastActionDateTimeUtc":"2021-05-06T20:55:45.2155183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3491bd7b-faee-4cbf-988c-9e9dff6b5214","createdDateTimeUtc":"2021-05-06T20:55:25.5887053Z","lastActionDateTimeUtc":"2021-05-06T20:55:30.2964062Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a71f70b-97ab-4af6-858d-c7fb29a04365","createdDateTimeUtc":"2021-05-06T20:55:22.1332246Z","lastActionDateTimeUtc":"2021-05-06T20:55:26.8061623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e317b832-94ee-49aa-9bd0-93fbff05be0c","createdDateTimeUtc":"2021-05-06T20:55:18.586865Z","lastActionDateTimeUtc":"2021-05-06T20:55:23.2186936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6bd767a7-bb87-49cb-b588-18ed193a8c85","createdDateTimeUtc":"2021-05-06T20:55:15.1851317Z","lastActionDateTimeUtc":"2021-05-06T20:55:19.8840932Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8792cce1-19ea-4d45-9232-6739e9930a20","createdDateTimeUtc":"2021-05-06T20:55:11.6049885Z","lastActionDateTimeUtc":"2021-05-06T20:55:18.6714173Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"61dcde6e-cc80-4dd5-966d-837ba83e0ecb","createdDateTimeUtc":"2021-05-06T20:54:39.714637Z","lastActionDateTimeUtc":"2021-05-06T20:54:43.1491955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a078c47e-81d5-48a2-9bd0-2bb06781ed31","createdDateTimeUtc":"2021-05-06T20:54:37.0750245Z","lastActionDateTimeUtc":"2021-05-06T20:54:40.170261Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3d0ea5b8-4028-4368-9055-1909b1a48879","createdDateTimeUtc":"2021-05-06T20:54:34.4125052Z","lastActionDateTimeUtc":"2021-05-06T20:54:37.4692205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"984488d1-d483-4e43-a3bd-03c0ee927395","createdDateTimeUtc":"2021-05-06T20:54:31.7380529Z","lastActionDateTimeUtc":"2021-05-06T20:54:34.3520813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fa48f36-547c-4994-8457-59fb9e8409f7","createdDateTimeUtc":"2021-05-06T20:54:29.0375092Z","lastActionDateTimeUtc":"2021-05-06T20:54:32.4424323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bc07d0-942c-4273-992e-53ed54f806ed","createdDateTimeUtc":"2021-05-06T20:54:26.3866081Z","lastActionDateTimeUtc":"2021-05-06T20:54:29.33425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45f5e5e7-ae1e-44b3-adc4-6913cd5c8413","createdDateTimeUtc":"2021-05-06T20:54:23.7599762Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9593749d-938a-421f-a569-22abf0a93dad","createdDateTimeUtc":"2021-05-06T20:54:21.060224Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.115287Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a679740-861b-4230-a782-30c632a0f98a","createdDateTimeUtc":"2021-05-06T20:54:18.389999Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"704284cb-eef3-4719-a645-34bb5d3570ec","createdDateTimeUtc":"2021-05-06T20:54:15.7426458Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.5490811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:31.7799976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:28.6916857Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:27.2981028Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2406&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: f42332f8-1019-4a81-9770-edcb89878210 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:00 GMT + etag: '"44DFBC2B08B2A77E78180780667A7D4372C9E13E99E234CDF5F9FAF6749BCC15"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f42332f8-1019-4a81-9770-edcb89878210 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=0&$orderBy=createdDateTimeUtc%20desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2406&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7455463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7237955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.6065399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.5123621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.0499248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2356&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 81d966b0-cf1d-4fe2-9472-4a2528138f46 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:00 GMT + etag: '"C028DCD48340629E6E2E846D502605883F86EB11B8DFD17EBC691CC23E03B4FF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 81d966b0-cf1d-4fe2-9472-4a2528138f46 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=50&$top=2406&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2356&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2306&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 35b12c1d-1e25-4ff1-919f-363160a16a13 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:01 GMT + etag: '"F5C45699FFC1784A81530EB4E5B211E54F1F3E8E376EB40288D1EE1C81F78981"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 35b12c1d-1e25-4ff1-919f-363160a16a13 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=100&$top=2356&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2306&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2256&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: ad340f45-2ed7-4c57-bb6a-fb2a6275429e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:01 GMT + etag: '"79D77AF6535F11F365C47D0261C9BE0C6D2431C7751A306DCF4B09A69E06C72B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ad340f45-2ed7-4c57-bb6a-fb2a6275429e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=150&$top=2306&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2256&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2206&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 9d80530c-b128-4f44-89b2-c5547047b074 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:01 GMT + etag: '"54A632C4CECA0E7C8AC795C40790A5267B4650FFED54A0584100C35A5F14FC5D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9d80530c-b128-4f44-89b2-c5547047b074 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=200&$top=2256&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2206&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2156&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 86f675a3-3be7-4e48-be82-5f30b7dbba0b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:01 GMT + etag: '"C2283EC519E38F839649BB2A8515514C5DE78BEAE99C05675F9FF0A2A07E314F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 86f675a3-3be7-4e48-be82-5f30b7dbba0b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=250&$top=2206&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2156&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2106&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 364e1084-33a9-45c0-bd39-b07910d58908 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:02 GMT + etag: '"614CF44575AD41924BC09AD9D65E58D16E995D94DFD6FE507A37643D454E4604"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 364e1084-33a9-45c0-bd39-b07910d58908 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=300&$top=2156&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2106&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2056&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 0e7e6846-edcf-4850-a034-aa05c6f355a9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:02 GMT + etag: '"11A8F93BAAE8B3F4A5E08D80092EB0775400895AB939EDE3725E2FCCAFD4339A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0e7e6846-edcf-4850-a034-aa05c6f355a9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=350&$top=2106&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2056&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=2006&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 2368107e-3398-477d-9665-e4c12ebaf000 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:02 GMT + etag: '"01E3B55B8F0FC5128F73B9643CD17AFB9A239C2B2D90BD444A9F7CFA25B77131"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2368107e-3398-477d-9665-e4c12ebaf000 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=400&$top=2056&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=2006&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1956&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: e317ca4e-9a03-4b3b-a160-4b41954c3821 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:03 GMT + etag: '"58575A6FD2E8DA903C1A3DEB434C4590458B239B51D794CD6BB3B63B48A7063E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e317ca4e-9a03-4b3b-a160-4b41954c3821 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=450&$top=2006&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1956&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1906&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 4a0f5bbe-86e2-4c7e-a633-e927ab8267fd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:03 GMT + etag: '"0A5E55D2C4A502FBAAF52FB0C043F491BB4FE9B48A22D2517BBCBCA6EC751F24"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4a0f5bbe-86e2-4c7e-a633-e927ab8267fd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=500&$top=1956&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1906&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1856&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 73bdb888-03d4-457e-9b67-a8c76cd51411 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:03 GMT + etag: '"4960F04EB4037D3FA6217388323B53AD492DA8781B69D98CCCB811B491ED3DF4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 73bdb888-03d4-457e-9b67-a8c76cd51411 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=550&$top=1906&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1856&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1806&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: dbd3a4d4-9859-43b4-8b8e-9e876785e21d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:03 GMT + etag: '"060837EAAA69786F6C6D28F7AF195924951175AE98E13E04533B920A62BBDF11"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dbd3a4d4-9859-43b4-8b8e-9e876785e21d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=600&$top=1856&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1806&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1756&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 7fc483d7-a724-41ab-8c21-86751ab8a520 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:04 GMT + etag: '"C44CF6543BB7C666984C3BCE14E3ADAAE3F6BEC2FA2586436B942346A14E78C1"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7fc483d7-a724-41ab-8c21-86751ab8a520 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=650&$top=1806&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1756&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1706&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: fb47c86f-a5c5-425a-a6b0-aa4b320a8d82 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:04 GMT + etag: '"59D6551ED8E6364B43EA0B3778A418115DEFE860FDF7144E3EAD7823A0284313"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fb47c86f-a5c5-425a-a6b0-aa4b320a8d82 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=700&$top=1756&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1706&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1656&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: cb7f6260-2f0e-43cd-a484-65f125db441e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:04 GMT + etag: '"D1F5C0DCAD2241ECB3A9F98ED83D990E23AFC3F31EFF516394C8B9FEC28AD069"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cb7f6260-2f0e-43cd-a484-65f125db441e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=750&$top=1706&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1656&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1606&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: d76e3593-5fa3-4d60-a33a-1b1851b27629 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:04 GMT + etag: '"C87F652B4FEDAAFF0BC251B82C456E7B084EC8822645D92C9C60143FFB09F8EA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d76e3593-5fa3-4d60-a33a-1b1851b27629 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=800&$top=1656&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1606&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1556&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: f8fb27f9-8f5b-4370-a48e-e9a857488c7d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:05 GMT + etag: '"FA37F56BAFADBD9C59C392EC270EFFB9EE240E0AE62845A5857C97CB0B06F52E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f8fb27f9-8f5b-4370-a48e-e9a857488c7d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=850&$top=1606&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1556&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1506&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: b9c87c7f-80ab-46eb-b33f-091260c78256 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:05 GMT + etag: '"62796CA0766D396FA9FCA85E4121C4EA88273221518F1751B5F4C0AABB2B26A0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b9c87c7f-80ab-46eb-b33f-091260c78256 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=900&$top=1556&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1506&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1456&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 3d5e0ec9-a3d4-4157-aea5-6bd932efd77d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:05 GMT + etag: '"11D1204D064F97361096589980BE1F882A7D41E008AD1F1D486A9302D402C9BC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3d5e0ec9-a3d4-4157-aea5-6bd932efd77d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=950&$top=1506&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1456&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1406&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: dea264d3-6645-46bb-94c2-e595124f7ef9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:05 GMT + etag: '"A9C7CFCC3B4D520FF1C2340DCD929B5D84D95B4FA77F40E96D11FD947911B710"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dea264d3-6645-46bb-94c2-e595124f7ef9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1000&$top=1456&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1406&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1356&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 14182545-3498-41cc-9624-f764bb260aa7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:06 GMT + etag: '"74D0798AC477DA531CA5B11CD244E466D2AE0B9376F916DF45BA819C0FD5CAA4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 14182545-3498-41cc-9624-f764bb260aa7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1050&$top=1406&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1356&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1306&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 86ab3751-3362-40bf-853c-a0ba24bfce15 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:06 GMT + etag: '"A1E69655E9EB01C447AD5BB08C98DC6023035728FF9BE0D788B92FF06DA85019"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 86ab3751-3362-40bf-853c-a0ba24bfce15 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1100&$top=1356&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1306&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1256&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 4d177fb8-ae2c-4b27-ae5e-cc2d6d846948 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:06 GMT + etag: '"697AB472B9E50CD9CDAEAD82C999C80182A9895781DEF57677C84CF3141D4B74"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4d177fb8-ae2c-4b27-ae5e-cc2d6d846948 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1150&$top=1306&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1256&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1206&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 897f4ad2-64e7-4273-a0fe-0203e2b0254e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:07 GMT + etag: '"388A87E2A601DCDA8A1CA4C81781EE0F600B512D586A2A7DCB8548B71C94F6FB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 897f4ad2-64e7-4273-a0fe-0203e2b0254e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1200&$top=1256&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1206&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1156&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 5056c9d8-505f-41ac-9da9-5757b51cebc1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:07 GMT + etag: '"3C3F1BC26C2C6C373F773CF1205F33644D2A42F78628BC0138FDE780E476CE89"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5056c9d8-505f-41ac-9da9-5757b51cebc1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1250&$top=1206&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1156&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1106&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: c8db8698-2fe8-4cef-93ca-ef0f66100d68 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:07 GMT + etag: '"2C9787FD8F22DA36FAC9B488543B77927BB532CED4D1308FA32246EE9B91CE2C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c8db8698-2fe8-4cef-93ca-ef0f66100d68 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1300&$top=1156&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1106&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1056&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 0f6bf4ff-f9d4-482f-9168-06f562ec31e4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:08 GMT + etag: '"7DE3774CEA3CCF27630D7AB1D5E1831D919F44C0F0D81A0E1B80F094C8EE05DC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0f6bf4ff-f9d4-482f-9168-06f562ec31e4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1350&$top=1106&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1056&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=1006&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 97587299-c0a9-47e3-b043-461e2e6b844e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:08 GMT + etag: '"155A0B59C1F00751FBE78F06AD9D3B8C10CEEBD7A5715D10AD787A9B746FDCDE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 97587299-c0a9-47e3-b043-461e2e6b844e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1400&$top=1056&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=1006&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=956&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 68d42915-dd9d-4215-8eb0-6f3d5ba1683c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:08 GMT + etag: '"4AAC3ADEA467F76F1C70154A3389B2B09104615C726CE1E8FA8E016A835318B0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 68d42915-dd9d-4215-8eb0-6f3d5ba1683c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1450&$top=1006&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=956&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=906&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: b5ca4ba7-243b-4564-8489-d9153b3bd5f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:08 GMT + etag: '"01BA12992377E3A7FD4DA0A0E0EEA54D64256727CB005F8309AD55DDACD16D61"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b5ca4ba7-243b-4564-8489-d9153b3bd5f4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1500&$top=956&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=906&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=856&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: b25e5471-9bd9-49ff-a0a3-b936af3913d9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:09 GMT + etag: '"C1B733E66AD05B05FFDE13EA10B44F5DE25BE92674383B88BD57DC1F9EABC8C3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b25e5471-9bd9-49ff-a0a3-b936af3913d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1550&$top=906&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=856&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=806&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: f3eeafb2-4c4b-4bbd-b0ab-c5503a0b6de0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:09 GMT + etag: '"0F938150F77866920813553E0221706D506E3151D99B6680F4847C94A3DCCC3A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f3eeafb2-4c4b-4bbd-b0ab-c5503a0b6de0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1600&$top=856&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=806&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=756&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 110bd57d-ae27-4428-b378-7ef5bf5d3efe + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:09 GMT + etag: '"1FC247584761A44F6061757D80B23637ABDB49D273D67C83E7A33DDABF76885C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 110bd57d-ae27-4428-b378-7ef5bf5d3efe + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1650&$top=806&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=756&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=706&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 9d87cc1b-6f15-454c-9fb8-c2117177e1d8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:09 GMT + etag: '"8F44521FA707113B9F60D156681ECB39D933C13E052F246D881D526372B29AF7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9d87cc1b-6f15-454c-9fb8-c2117177e1d8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1700&$top=756&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=706&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=656&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: aebbf292-aa42-45f3-8903-ae1f43cc3b01 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:10 GMT + etag: '"29E58F851260CD7BAD25F0DD1AAC77B527F07C0CCED73BA516E3BE7D14ADDA24"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: aebbf292-aa42-45f3-8903-ae1f43cc3b01 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1750&$top=706&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=656&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=606&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: dbbfeeb5-58a6-49b9-b84d-a34d83dc6cc5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:10 GMT + etag: '"DA2E2915DE6D563B9608AB70C2AD2ADB125C64C342E6EB50E8A8BEF7E804F77F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dbbfeeb5-58a6-49b9-b84d-a34d83dc6cc5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1800&$top=656&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=606&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=556&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 72faac0c-9abd-427f-a450-7966bdbfe6cf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:10 GMT + etag: '"42FC282D6FE4EE265794624AEE34B2E49D88CFD2C34BC4E5285FDE4A079A25DB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 72faac0c-9abd-427f-a450-7966bdbfe6cf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1850&$top=606&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=556&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=506&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: ce628c7e-7bd5-4810-b18e-bfcb86203139 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:11 GMT + etag: '"B81130B577C91F56CF8E5DCA67BFE09537BBA01DD2769AD922919EFB18DA2740"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ce628c7e-7bd5-4810-b18e-bfcb86203139 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1900&$top=556&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=506&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=456&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: f6c08e99-c161-4c41-a177-7a1c5b9fd23b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:11 GMT + etag: '"E93B9292C362C6EE84CC971F12528B3492C233308465C8ADF626E76F9413F039"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f6c08e99-c161-4c41-a177-7a1c5b9fd23b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1950&$top=506&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=456&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=406&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: b2f8bdaf-4c7a-4614-b023-498ed52d6b68 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:11 GMT + etag: '"A9DB3220BF7CA1DE602D1C0147EDA2969AC8D016C0DA3432D71DC532911F29C4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b2f8bdaf-4c7a-4614-b023-498ed52d6b68 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2000&$top=456&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=406&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=356&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 7d7f1409-d276-4bbd-97b2-d282bcf87900 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:11 GMT + etag: '"3A10DED5C8F4AE91CF89B69DB032281A9500542178A8A111C3FD95B2A9DB1FF8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7d7f1409-d276-4bbd-97b2-d282bcf87900 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2050&$top=406&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=356&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=306&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: f7a27324-756a-44c2-a0cd-c0487fdb1288 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:12 GMT + etag: '"5C4E8EBB96F2B26D451475B5579D043422FD57EB8B9C6FBFFAC240C3C9639ED3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f7a27324-756a-44c2-a0cd-c0487fdb1288 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2100&$top=356&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=306&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=256&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: e1fb9129-b057-4a1b-9622-3dfc857f39cb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:12 GMT + etag: '"FA781442CA6BD407935623452EDBCAEA32BBA93D48AE468E70DE0AAD74E6103B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e1fb9129-b057-4a1b-9622-3dfc857f39cb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2150&$top=306&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=256&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=206&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 2b5b1c25-1d40-445d-90ef-830da2025492 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:12 GMT + etag: '"61425E47E1E55F8789D8F2E77051C33884B4013D9313C0E4588F18229EF4232D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2b5b1c25-1d40-445d-90ef-830da2025492 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2200&$top=256&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=206&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=156&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 9737dcb6-a6d9-41f5-adfb-8abca2023ab7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:12 GMT + etag: '"72F7310C489BE63970C1430B5EAD301DD79F22DE572F3EF4E17705F9F55DBA18"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9737dcb6-a6d9-41f5-adfb-8abca2023ab7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2250&$top=206&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=156&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=106&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: d2a1c8b3-d319-474e-8935-e8fe1138929f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:13 GMT + etag: '"BDE56194BD9CB5D0B4AFEB0C063DB5950DA624A75B831174858BB51AEB4ABBB0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d2a1c8b3-d319-474e-8935-e8fe1138929f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2300&$top=156&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=106&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=56&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 72928702-453e-4f59-8d26-d351f4be050e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:13 GMT + etag: '"5DA406F68C638A8CB99CF7DA36A55C6B375A817A6A8039B5D477BF565EA8C966"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 72928702-453e-4f59-8d26-d351f4be050e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2350&$top=106&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=56&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2450&$top=6&$maxpagesize=50&$orderBy=createdDateTimeUtc + desc"}' + headers: + apim-request-id: 5236fe5c-d331-43e5-8bca-80682b2bd796 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:13 GMT + etag: '"FF9E5EA682E4C6849A09C4585B3B2468FDF372F788421A9EFFA8D60C4AB40DB1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5236fe5c-d331-43e5-8bca-80682b2bd796 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2400&$top=56&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2450&$top=6&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc + response: + body: + string: '{"value":[{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: ff59c95e-a14e-481c-ad75-8ccf03453fa5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:13 GMT + etag: '"08E1E0866425C9C9460C9972945F85683DCC3BB142D679D674309E75EA3BAFE7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ff59c95e-a14e-481c-ad75-8ccf03453fa5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2450&$top=6&$maxpagesize=50&$orderBy=createdDateTimeUtc+desc +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_with_pagination.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_with_pagination.yaml new file mode 100644 index 000000000000..bad3f744898f --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_with_pagination.yaml @@ -0,0 +1,38188 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:59:14 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5f59e6a0-f961-4232-a847-a6d00d5725db?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:15 GMT + etag: + - '"0x8D910D1CEEFEB1B"' + last-modified: + - Thu, 06 May 2021 20:59:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:59:15 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5f59e6a0-f961-4232-a847-a6d00d5725db/f381db3e-cf55-4c74-80e7-8c00dc560fb0.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:59:15 GMT + etag: + - '"0x8D910D1CF146824"' + last-modified: + - Thu, 06 May 2021 20:59:15 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:59:15 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5f59e6a0-f961-4232-a847-a6d00d5725db/165c7692-7619-4b05-b584-8808f6307031.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:59:15 GMT + etag: + - '"0x8D910D1CF39D12B"' + last-modified: + - Thu, 06 May 2021 20:59:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:59:16 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target21d0eaff-913a-4afb-95c1-91331ea109b0?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:16 GMT + etag: + - '"0x8D910D1CFC8D11F"' + last-modified: + - Thu, 06 May 2021 20:59:16 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5f59e6a0-f961-4232-a847-a6d00d5725db?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target21d0eaff-913a-4afb-95c1-91331ea109b0?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 57a7f176-8b4d-45ad-afac-1f8afd9e1005 + content-length: '0' + date: Thu, 06 May 2021 20:59:16 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ce338428-7949-4c70-8822-f3bb311a1038 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 57a7f176-8b4d-45ad-afac-1f8afd9e1005 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ce338428-7949-4c70-8822-f3bb311a1038 + response: + body: + string: '{"id":"ce338428-7949-4c70-8822-f3bb311a1038","createdDateTimeUtc":"2021-05-06T20:59:17.5841951Z","lastActionDateTimeUtc":"2021-05-06T20:59:17.5841954Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 32c1fb8b-cfcc-4831-9523-15ffb5542979 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:16 GMT + etag: '"294420FF202E4A72DC86DFDD6A850A14473BD52DFDF55DFA26905565402B69B8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 32c1fb8b-cfcc-4831-9523-15ffb5542979 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ce338428-7949-4c70-8822-f3bb311a1038 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:59:17 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src35f6cea5-ce1b-4458-b1c0-b8fe01bcaf26?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:18 GMT + etag: + - '"0x8D910D1D0C3B999"' + last-modified: + - Thu, 06 May 2021 20:59:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:59:18 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src35f6cea5-ce1b-4458-b1c0-b8fe01bcaf26/85527c65-43f6-4a5f-95a9-3f9568f3504d.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:59:18 GMT + etag: + - '"0x8D910D1D0EB525E"' + last-modified: + - Thu, 06 May 2021 20:59:18 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:59:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src35f6cea5-ce1b-4458-b1c0-b8fe01bcaf26/be4c5574-e2c7-4aa5-8af0-fb641c1bef9b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:59:18 GMT + etag: + - '"0x8D910D1D11157DD"' + last-modified: + - Thu, 06 May 2021 20:59:19 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:59:19 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target5f0878fd-8ca8-40c7-875b-492b1765a143?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:19 GMT + etag: + - '"0x8D910D1D1A50FED"' + last-modified: + - Thu, 06 May 2021 20:59:20 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src35f6cea5-ce1b-4458-b1c0-b8fe01bcaf26?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5f0878fd-8ca8-40c7-875b-492b1765a143?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '490' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 19eefa05-0d20-4ef6-9410-93e232054069 + content-length: '0' + date: Thu, 06 May 2021 20:59:19 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/968914e8-2d0d-4c9b-833b-403f2b07f6dd + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 19eefa05-0d20-4ef6-9410-93e232054069 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/968914e8-2d0d-4c9b-833b-403f2b07f6dd + response: + body: + string: '{"id":"968914e8-2d0d-4c9b-833b-403f2b07f6dd","createdDateTimeUtc":"2021-05-06T20:59:20.2920313Z","lastActionDateTimeUtc":"2021-05-06T20:59:20.2920318Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 51e08228-a0dc-4602-ba22-9632c2ac24af + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:19 GMT + etag: '"796748D4FB57A3736FF3650E1194B3874BB200AF6BC945677001ACB03DAB9735"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 51e08228-a0dc-4602-ba22-9632c2ac24af + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/968914e8-2d0d-4c9b-833b-403f2b07f6dd +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:59:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src72b2e569-3587-427a-8edf-3505acc5f7f3?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:20 GMT + etag: + - '"0x8D910D1D25E08AA"' + last-modified: + - Thu, 06 May 2021 20:59:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:59:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src72b2e569-3587-427a-8edf-3505acc5f7f3/02d53e3f-e2b8-41d1-aa71-f25d68ddbcc3.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:59:21 GMT + etag: + - '"0x8D910D1D282B764"' + last-modified: + - Thu, 06 May 2021 20:59:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:59:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src72b2e569-3587-427a-8edf-3505acc5f7f3/2c41a2a9-cfc9-45d3-89ab-f015a610b34b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:59:21 GMT + etag: + - '"0x8D910D1D2A9F597"' + last-modified: + - Thu, 06 May 2021 20:59:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:59:21 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target23fe62eb-ada2-45e4-8c5f-95a2ee368620?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:22 GMT + etag: + - '"0x8D910D1D33BA00F"' + last-modified: + - Thu, 06 May 2021 20:59:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src72b2e569-3587-427a-8edf-3505acc5f7f3?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target23fe62eb-ada2-45e4-8c5f-95a2ee368620?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: baf4e6ec-609c-471d-ad7c-34b166395ad9 + content-length: '0' + date: Thu, 06 May 2021 20:59:22 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6bca7f36-f3fd-4c26-bbce-a279d5610c42 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: baf4e6ec-609c-471d-ad7c-34b166395ad9 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6bca7f36-f3fd-4c26-bbce-a279d5610c42 + response: + body: + string: '{"id":"6bca7f36-f3fd-4c26-bbce-a279d5610c42","createdDateTimeUtc":"2021-05-06T20:59:22.9690782Z","lastActionDateTimeUtc":"2021-05-06T20:59:22.9690786Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 0438f89b-c838-4821-864b-e74b0f89d247 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:22 GMT + etag: '"7477771D98F63177AFEEBC855AE277782F2DB7CE734ACBC2812C83FCF2B4379E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0438f89b-c838-4821-864b-e74b0f89d247 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6bca7f36-f3fd-4c26-bbce-a279d5610c42 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:59:23 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src10ee2483-e87f-4820-860d-6616f9701731?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:23 GMT + etag: + - '"0x8D910D1D3F9A5E9"' + last-modified: + - Thu, 06 May 2021 20:59:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:59:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src10ee2483-e87f-4820-860d-6616f9701731/3ce66451-d7e1-446a-87b6-9d6c5e95057b.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:59:23 GMT + etag: + - '"0x8D910D1D41DED66"' + last-modified: + - Thu, 06 May 2021 20:59:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:59:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src10ee2483-e87f-4820-860d-6616f9701731/e4498e53-402c-4de1-b062-0185e1051805.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:59:23 GMT + etag: + - '"0x8D910D1D444681E"' + last-modified: + - Thu, 06 May 2021 20:59:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:59:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targeta0dc5f08-79cd-4040-bf9a-b6773eef9234?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:25 GMT + etag: + - '"0x8D910D1D4D8EFD0"' + last-modified: + - Thu, 06 May 2021 20:59:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src10ee2483-e87f-4820-860d-6616f9701731?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta0dc5f08-79cd-4040-bf9a-b6773eef9234?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 70f539b4-d4d1-4773-b18f-9cc46516e6ea + content-length: '0' + date: Thu, 06 May 2021 20:59:24 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6c019799-b8d8-4cfd-8bce-eca46b238d68 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 70f539b4-d4d1-4773-b18f-9cc46516e6ea + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/6c019799-b8d8-4cfd-8bce-eca46b238d68 + response: + body: + string: '{"id":"6c019799-b8d8-4cfd-8bce-eca46b238d68","createdDateTimeUtc":"2021-05-06T20:59:25.6789126Z","lastActionDateTimeUtc":"2021-05-06T20:59:25.678913Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: cf16953a-d5cf-450f-b9f2-e75e62cbc517 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:24 GMT + etag: '"2DFC4120FD9F50C03E2BC9F2AA5F9B6FC7AB0E00147040ADF58AC2A05C5D02E2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cf16953a-d5cf-450f-b9f2-e75e62cbc517 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/6c019799-b8d8-4cfd-8bce-eca46b238d68 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:59:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcdf7963bb-32ef-41b7-b776-c6b15f9b463e?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:26 GMT + etag: + - '"0x8D910D1D59AC70B"' + last-modified: + - Thu, 06 May 2021 20:59:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:59:26 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcdf7963bb-32ef-41b7-b776-c6b15f9b463e/595d68f8-f398-4d80-93f8-33295a67ce43.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:59:26 GMT + etag: + - '"0x8D910D1D5C16278"' + last-modified: + - Thu, 06 May 2021 20:59:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 20:59:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcdf7963bb-32ef-41b7-b776-c6b15f9b463e/464a469e-be66-4d44-bc84-45df09580104.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 20:59:26 GMT + etag: + - '"0x8D910D1D5E60820"' + last-modified: + - Thu, 06 May 2021 20:59:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 20:59:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target73b33589-68e9-4b64-a76a-5fef016a58c5?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 20:59:27 GMT + etag: + - '"0x8D910D1D67981D5"' + last-modified: + - Thu, 06 May 2021 20:59:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdf7963bb-32ef-41b7-b776-c6b15f9b463e?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target73b33589-68e9-4b64-a76a-5fef016a58c5?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '490' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 2f9a4c20-c7a2-4c19-95c2-f831fab5c563 + content-length: '0' + date: Thu, 06 May 2021 20:59:28 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/75ecb4fe-5de4-47a8-8b50-90e53ce440f0 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2f9a4c20-c7a2-4c19-95c2-f831fab5c563 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/75ecb4fe-5de4-47a8-8b50-90e53ce440f0 + response: + body: + string: '{"id":"75ecb4fe-5de4-47a8-8b50-90e53ce440f0","createdDateTimeUtc":"2021-05-06T20:59:28.4047813Z","lastActionDateTimeUtc":"2021-05-06T20:59:28.4047816Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 4a014cb8-db25-4ae3-8967-4a2214914063 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:28 GMT + etag: '"84CD32C777B333A41BACC49CA9307F929440DD9F7F0FEAD7F0FD23D3E49B4142"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4a014cb8-db25-4ae3-8967-4a2214914063 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/75ecb4fe-5de4-47a8-8b50-90e53ce440f0 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"75ecb4fe-5de4-47a8-8b50-90e53ce440f0","createdDateTimeUtc":"2021-05-06T20:59:28.4047813Z","lastActionDateTimeUtc":"2021-05-06T20:59:28.4047816Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c019799-b8d8-4cfd-8bce-eca46b238d68","createdDateTimeUtc":"2021-05-06T20:59:25.6789126Z","lastActionDateTimeUtc":"2021-05-06T20:59:27.9455469Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2&$top=2459&$maxpagesize=2"}' + headers: + apim-request-id: 74dc3d4c-22bf-45fa-8307-99796c8ce9b3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:28 GMT + etag: '"624ACC40AA0A36DA9B634CB67FB88A5F64FEA7D7D934CD0F2F0ED84E0CCFFFDB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 74dc3d4c-22bf-45fa-8307-99796c8ce9b3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=0&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2&$top=2459&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6bca7f36-f3fd-4c26-bbce-a279d5610c42","createdDateTimeUtc":"2021-05-06T20:59:22.9690782Z","lastActionDateTimeUtc":"2021-05-06T20:59:26.8725757Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"968914e8-2d0d-4c9b-833b-403f2b07f6dd","createdDateTimeUtc":"2021-05-06T20:59:20.2920313Z","lastActionDateTimeUtc":"2021-05-06T20:59:27.0663636Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=4&$top=2457&$maxpagesize=2"}' + headers: + apim-request-id: 48c5b698-a0a4-4110-b606-2f38df4506f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:28 GMT + etag: '"64A419C4AEA1B6338ED1518F3340C60BDA5FE783E99BCE0A6F08D36E68CD591F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 48c5b698-a0a4-4110-b606-2f38df4506f4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2&$top=2459&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=4&$top=2457&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ce338428-7949-4c70-8822-f3bb311a1038","createdDateTimeUtc":"2021-05-06T20:59:17.5841951Z","lastActionDateTimeUtc":"2021-05-06T20:59:27.0533447Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a4f5555-35fb-474c-8922-0008ffcd494b","createdDateTimeUtc":"2021-05-06T20:59:00.7075172Z","lastActionDateTimeUtc":"2021-05-06T20:59:03.1154272Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=6&$top=2455&$maxpagesize=2"}' + headers: + apim-request-id: 92cefe60-7772-42e9-baaf-8eaa5b71065e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:28 GMT + etag: '"704EC99134C5C5A3627E2081BE1BD603EAF07EB3D2A8625004FF00E06A4B209D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 92cefe60-7772-42e9-baaf-8eaa5b71065e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=4&$top=2457&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=6&$top=2455&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e87a8292-4ddf-4cac-8202-e5730c6ac695","createdDateTimeUtc":"2021-05-06T20:58:58.1025028Z","lastActionDateTimeUtc":"2021-05-06T20:59:01.5470346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82ef605d-508b-4a19-9110-fe42b96821bf","createdDateTimeUtc":"2021-05-06T20:58:55.4656903Z","lastActionDateTimeUtc":"2021-05-06T20:59:01.6275304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=8&$top=2453&$maxpagesize=2"}' + headers: + apim-request-id: 727cf840-03df-4155-8916-d7c7bad46f86 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:29 GMT + etag: '"E2BCE6F35E5AAD65253BD99996CB84DB8162E068794C05CF0077FBB603694BD8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 727cf840-03df-4155-8916-d7c7bad46f86 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=6&$top=2455&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=8&$top=2453&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"13b69fe6-9f91-423d-9512-643db7332a70","createdDateTimeUtc":"2021-05-06T20:58:38.9863162Z","lastActionDateTimeUtc":"2021-05-06T20:58:41.5510814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"894f7cd0-05c2-4094-9d24-a1a70a731125","createdDateTimeUtc":"2021-05-06T20:58:36.2463614Z","lastActionDateTimeUtc":"2021-05-06T20:58:38.4372218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=10&$top=2451&$maxpagesize=2"}' + headers: + apim-request-id: a0f96a29-3729-4091-8169-e431a2c567d3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:29 GMT + etag: '"2B2B624EB9ADD3B0955727CBA3F34DE96044CAB9E1D0DAD124C9747C575A482D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a0f96a29-3729-4091-8169-e431a2c567d3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=8&$top=2453&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=10&$top=2451&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf4b572f-7707-4c4d-943c-cf18f40a39ab","createdDateTimeUtc":"2021-05-06T20:58:33.5701587Z","lastActionDateTimeUtc":"2021-05-06T20:58:36.5001712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b2fca25-8bf1-4431-8bc1-1a7babddc9a2","createdDateTimeUtc":"2021-05-06T20:58:19.0337516Z","lastActionDateTimeUtc":"2021-05-06T20:58:21.8144695Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=12&$top=2449&$maxpagesize=2"}' + headers: + apim-request-id: f525036c-86da-4100-852a-dce38083fde8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:29 GMT + etag: '"8C46E095B6CAD0EA0B831023138B4185F363BB4851056F6F3E2CECBF1B733060"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f525036c-86da-4100-852a-dce38083fde8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=10&$top=2451&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=12&$top=2449&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7e4cd5d1-e661-48af-a391-ad95d730b900","createdDateTimeUtc":"2021-05-06T20:58:16.5051919Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.7950799Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2746f514-19d1-4536-9945-77fe255d40d2","createdDateTimeUtc":"2021-05-06T20:58:14.0274925Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.6398519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=14&$top=2447&$maxpagesize=2"}' + headers: + apim-request-id: a394f8d6-34c8-4172-8727-9bc508d20a03 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:29 GMT + etag: '"112DB1E5F1F3ABD2C3606730058B7D5F5C69A34BAA2D3370B6AB9DF930DC125A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a394f8d6-34c8-4172-8727-9bc508d20a03 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=12&$top=2449&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=14&$top=2447&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ec30fae6-fba2-4a8e-828b-916d756e2e58","createdDateTimeUtc":"2021-05-06T20:58:11.4798699Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.4816552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"807faa20-00cb-4fd5-b544-c2dc39400ff8","createdDateTimeUtc":"2021-05-06T20:58:09.0174165Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.3253271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=16&$top=2445&$maxpagesize=2"}' + headers: + apim-request-id: 681f2b86-455e-4221-bd69-ee2d28c5ef38 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:29 GMT + etag: '"86F34B133786EEE023A9C3DDB77FE02D2E23D9C484508EE20911285F313FCD80"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 681f2b86-455e-4221-bd69-ee2d28c5ef38 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=14&$top=2447&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=16&$top=2445&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:58:01.2382957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:51.4943893Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=18&$top=2443&$maxpagesize=2"}' + headers: + apim-request-id: e24b775c-470a-4935-b3f9-da3c7e635a27 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:29 GMT + etag: '"73735A00B1493C50F6E769233F8A7407DB511423A12B709CEAD6F97EB943E325"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e24b775c-470a-4935-b3f9-da3c7e635a27 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=16&$top=2445&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=18&$top=2443&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:44.4905271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:37.4676643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=20&$top=2441&$maxpagesize=2"}' + headers: + apim-request-id: 7d77c61b-83c9-407c-afbe-d18b3dc10633 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:30 GMT + etag: '"6B96922F8A57AB0DCB2BF26B01277103EF4E86DC793828982B8C421BACDA5968"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7d77c61b-83c9-407c-afbe-d18b3dc10633 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=18&$top=2443&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=20&$top=2441&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1109c823-471e-4942-9d7f-f257db54611c","createdDateTimeUtc":"2021-05-06T20:57:29.4018947Z","lastActionDateTimeUtc":"2021-05-06T20:57:31.729452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee05021f-bce7-4c0e-b00f-7eb1cb54225b","createdDateTimeUtc":"2021-05-06T20:57:26.3856659Z","lastActionDateTimeUtc":"2021-05-06T20:57:28.692327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=22&$top=2439&$maxpagesize=2"}' + headers: + apim-request-id: 6d2367fa-13a6-42e7-8202-d641196a5ff1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:30 GMT + etag: '"BEBF7A42F560C3BE54F89838DB7BCE443E01A651BDAE82047561421A15B2B7A4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6d2367fa-13a6-42e7-8202-d641196a5ff1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=20&$top=2441&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=22&$top=2439&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"994ae2f8-f8a2-402b-836e-6b4ae5f219b7","createdDateTimeUtc":"2021-05-06T20:57:23.6823591Z","lastActionDateTimeUtc":"2021-05-06T20:57:26.203164Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d73f47d7-8a61-467a-8d35-951391ec7429","createdDateTimeUtc":"2021-05-06T20:57:20.9908459Z","lastActionDateTimeUtc":"2021-05-06T20:57:25.6382834Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=24&$top=2437&$maxpagesize=2"}' + headers: + apim-request-id: 2d28b813-0319-443c-9211-a3ad06768b77 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:30 GMT + etag: '"EAA09816E48C0B5580A2393851F3A18330A1400CB65C8A564CE7F2AF2C7631D5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2d28b813-0319-443c-9211-a3ad06768b77 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=22&$top=2439&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=24&$top=2437&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:57:01.1209204Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:54.0787865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=26&$top=2435&$maxpagesize=2"}' + headers: + apim-request-id: c895ac60-650b-4f8e-9e2d-248c63da608c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:30 GMT + etag: '"3880413465FA7C167AAEC7E8D8F136F07BE517D8E875F7CF88DC8CCF1CED8650"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c895ac60-650b-4f8e-9e2d-248c63da608c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=24&$top=2437&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=26&$top=2435&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"15dd871e-9bac-4f5c-85b1-0cd334b4d2bb","createdDateTimeUtc":"2021-05-06T20:56:45.5040606Z","lastActionDateTimeUtc":"2021-05-06T20:56:47.1540091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:40.0552132Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=28&$top=2433&$maxpagesize=2"}' + headers: + apim-request-id: 5ffc7fb7-c4ff-4b6e-b3bb-1ccb56a4df00 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:30 GMT + etag: '"2789CA94424C46A9B7D70AD7975081737BBC839E3D1A8A4245CD59A1CEDB24FA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5ffc7fb7-c4ff-4b6e-b3bb-1ccb56a4df00 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=26&$top=2435&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=28&$top=2433&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:32.3788307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:25.6398593Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=30&$top=2431&$maxpagesize=2"}' + headers: + apim-request-id: d7c646d9-72c9-4581-812b-dece49d02842 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:30 GMT + etag: '"39FCD8558EC588CA09CDED39685BCDEA069636D86F45B45B687193D46CD75D2B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d7c646d9-72c9-4581-812b-dece49d02842 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=28&$top=2433&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=30&$top=2431&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:14.9686929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:07.9680961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=32&$top=2429&$maxpagesize=2"}' + headers: + apim-request-id: 84ceee76-9a21-4cbe-999f-7a2c2503b93f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:31 GMT + etag: '"4A45D8DD0C20FDFCF674EAB5ED1A7635BED554B2E6D7BD117A5AFFBEC10ACFEB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 84ceee76-9a21-4cbe-999f-7a2c2503b93f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=30&$top=2431&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=32&$top=2429&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:56:00.883148Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:53.9401603Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=34&$top=2427&$maxpagesize=2"}' + headers: + apim-request-id: 2584f323-d4da-4743-a6b5-e44846bc95c8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:31 GMT + etag: '"B80F25D96754DA2A684CCCC5312DFA981D201C85BD371305B587B70391EA9060"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2584f323-d4da-4743-a6b5-e44846bc95c8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=32&$top=2429&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=34&$top=2427&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25f69e11-fcc6-4bf5-b617-b029d533cd2c","createdDateTimeUtc":"2021-05-06T20:55:47.9352446Z","lastActionDateTimeUtc":"2021-05-06T20:55:51.2881259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05748afd-3609-4e61-ba24-79defa5516b1","createdDateTimeUtc":"2021-05-06T20:55:45.1927224Z","lastActionDateTimeUtc":"2021-05-06T20:55:48.1845579Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=36&$top=2425&$maxpagesize=2"}' + headers: + apim-request-id: 2bea88fe-bd84-4ea8-8d16-2f39a8773e43 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:31 GMT + etag: '"E07B8DF81C131F48C8D2B9001EA26EE116EBDD999E97B62615FB9EBFD969AED3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2bea88fe-bd84-4ea8-8d16-2f39a8773e43 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=34&$top=2427&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=36&$top=2425&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"49eaa9cb-96e9-4b06-a36e-7c12685cd1d8","createdDateTimeUtc":"2021-05-06T20:55:42.3561935Z","lastActionDateTimeUtc":"2021-05-06T20:55:45.2155183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3491bd7b-faee-4cbf-988c-9e9dff6b5214","createdDateTimeUtc":"2021-05-06T20:55:25.5887053Z","lastActionDateTimeUtc":"2021-05-06T20:55:30.2964062Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=38&$top=2423&$maxpagesize=2"}' + headers: + apim-request-id: 87e95b52-9e8e-418a-bd9a-13dd44c03ea8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:31 GMT + etag: '"626B0F0D1D7A48DC32F28A7A9D091E41682D8AB572DA0B6DCA3737A1C00EA86C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 87e95b52-9e8e-418a-bd9a-13dd44c03ea8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=36&$top=2425&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=38&$top=2423&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a71f70b-97ab-4af6-858d-c7fb29a04365","createdDateTimeUtc":"2021-05-06T20:55:22.1332246Z","lastActionDateTimeUtc":"2021-05-06T20:55:26.8061623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e317b832-94ee-49aa-9bd0-93fbff05be0c","createdDateTimeUtc":"2021-05-06T20:55:18.586865Z","lastActionDateTimeUtc":"2021-05-06T20:55:23.2186936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=40&$top=2421&$maxpagesize=2"}' + headers: + apim-request-id: 8ed8ebd4-8d6f-43e0-adf1-00c88b8887ee + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:31 GMT + etag: '"C49D84DCCC7E5AF028FE24EC0B81F03E9855696F8ACEE0E44D34A52131CA3DF8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8ed8ebd4-8d6f-43e0-adf1-00c88b8887ee + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=38&$top=2423&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=40&$top=2421&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6bd767a7-bb87-49cb-b588-18ed193a8c85","createdDateTimeUtc":"2021-05-06T20:55:15.1851317Z","lastActionDateTimeUtc":"2021-05-06T20:55:19.8840932Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8792cce1-19ea-4d45-9232-6739e9930a20","createdDateTimeUtc":"2021-05-06T20:55:11.6049885Z","lastActionDateTimeUtc":"2021-05-06T20:55:18.6714173Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=42&$top=2419&$maxpagesize=2"}' + headers: + apim-request-id: afe52d64-12b8-4547-85b0-163ec043bce1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:31 GMT + etag: '"F54A5AE9375D2FF14D4B54FD753F193DE72927119789F73899008AAF58575D90"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: afe52d64-12b8-4547-85b0-163ec043bce1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=40&$top=2421&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=42&$top=2419&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"61dcde6e-cc80-4dd5-966d-837ba83e0ecb","createdDateTimeUtc":"2021-05-06T20:54:39.714637Z","lastActionDateTimeUtc":"2021-05-06T20:54:43.1491955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a078c47e-81d5-48a2-9bd0-2bb06781ed31","createdDateTimeUtc":"2021-05-06T20:54:37.0750245Z","lastActionDateTimeUtc":"2021-05-06T20:54:40.170261Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=44&$top=2417&$maxpagesize=2"}' + headers: + apim-request-id: 7759c477-e84e-4688-a4b4-14b5ae262ce4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:31 GMT + etag: '"F2CC28B13D17D3CCA3EA8983DC0130621A0E9411BB5369F99ACB1F3521D2D12C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7759c477-e84e-4688-a4b4-14b5ae262ce4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=42&$top=2419&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=44&$top=2417&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3d0ea5b8-4028-4368-9055-1909b1a48879","createdDateTimeUtc":"2021-05-06T20:54:34.4125052Z","lastActionDateTimeUtc":"2021-05-06T20:54:37.4692205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"984488d1-d483-4e43-a3bd-03c0ee927395","createdDateTimeUtc":"2021-05-06T20:54:31.7380529Z","lastActionDateTimeUtc":"2021-05-06T20:54:34.3520813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=46&$top=2415&$maxpagesize=2"}' + headers: + apim-request-id: 06df50ea-04d1-4187-926c-71f60bf4cc4d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:32 GMT + etag: '"F1F0E4F0FF59C490000C9CA0E38CE3DC87D44517C738F89138741FB3D1484554"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 06df50ea-04d1-4187-926c-71f60bf4cc4d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=44&$top=2417&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=46&$top=2415&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1fa48f36-547c-4994-8457-59fb9e8409f7","createdDateTimeUtc":"2021-05-06T20:54:29.0375092Z","lastActionDateTimeUtc":"2021-05-06T20:54:32.4424323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bc07d0-942c-4273-992e-53ed54f806ed","createdDateTimeUtc":"2021-05-06T20:54:26.3866081Z","lastActionDateTimeUtc":"2021-05-06T20:54:29.33425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=48&$top=2413&$maxpagesize=2"}' + headers: + apim-request-id: 39b6735b-ba9a-42f9-9ad7-24930769fcc2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:32 GMT + etag: '"E758E8F05CD73F66D4F8FB0DC7A7327A1373371A1C590D979976B1761B95732F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 39b6735b-ba9a-42f9-9ad7-24930769fcc2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=46&$top=2415&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=48&$top=2413&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"45f5e5e7-ae1e-44b3-adc4-6913cd5c8413","createdDateTimeUtc":"2021-05-06T20:54:23.7599762Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9593749d-938a-421f-a569-22abf0a93dad","createdDateTimeUtc":"2021-05-06T20:54:21.060224Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.115287Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2411&$maxpagesize=2"}' + headers: + apim-request-id: 47c7a51c-5224-49d6-a81d-c0e87fdf7cd1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:32 GMT + etag: '"8F5A2660AD5CC0690A1B1901B46B7A9AE4F11ABDE5DD211CF2D6ABCDF1ACE932"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 47c7a51c-5224-49d6-a81d-c0e87fdf7cd1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=48&$top=2413&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2411&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3a679740-861b-4230-a782-30c632a0f98a","createdDateTimeUtc":"2021-05-06T20:54:18.389999Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"704284cb-eef3-4719-a645-34bb5d3570ec","createdDateTimeUtc":"2021-05-06T20:54:15.7426458Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.5490811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=52&$top=2409&$maxpagesize=2"}' + headers: + apim-request-id: 36cd9c9f-04a7-4631-96ad-27a08fef4e7b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:32 GMT + etag: '"661508ED9AA2F0A25743110D6CF34DABFC035FBC64257585633278FBCD0B2C83"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 36cd9c9f-04a7-4631-96ad-27a08fef4e7b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=50&$top=2411&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=52&$top=2409&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:31.7799976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:28.6916857Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=54&$top=2407&$maxpagesize=2"}' + headers: + apim-request-id: 802d61df-452b-47d5-8dc8-c1d9dbaa613e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:32 GMT + etag: '"7109E56ADF20E90ED26760086D1914FC949C83E2922729739AD7394EB6A7789B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 802d61df-452b-47d5-8dc8-c1d9dbaa613e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=52&$top=2409&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=54&$top=2407&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:27.2981028Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7455463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=56&$top=2405&$maxpagesize=2"}' + headers: + apim-request-id: 791fe071-436d-41e1-973f-15619c0e93a1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:32 GMT + etag: '"7EA796D350B32C8DF9363E9710A97D62699E2DA339E26AC42040860516042B4A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 791fe071-436d-41e1-973f-15619c0e93a1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=54&$top=2407&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=56&$top=2405&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7237955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.6065399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=58&$top=2403&$maxpagesize=2"}' + headers: + apim-request-id: 886d23d6-b231-46d8-ad37-349d456d63b6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:33 GMT + etag: '"27055F575EA4D9C7D682A8387B5B7C930E97E7DB766EF5E637C574C4AEF27105"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 886d23d6-b231-46d8-ad37-349d456d63b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=56&$top=2405&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=58&$top=2403&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.5123621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.0499248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=60&$top=2401&$maxpagesize=2"}' + headers: + apim-request-id: ba63afdf-7a46-4141-853f-cdccccb3e0fd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:33 GMT + etag: '"1298EEAB0BA10BB2169DC2AF2964D8F2A997989FF751DEFB6F2CD414F998E750"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ba63afdf-7a46-4141-853f-cdccccb3e0fd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=58&$top=2403&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=60&$top=2401&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=62&$top=2399&$maxpagesize=2"}' + headers: + apim-request-id: 494d74c9-334c-4672-bd53-69885ba50bcc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:33 GMT + etag: '"6A47CB9D4BEA6907E2EEDCB179BAD348E252B3BA4D01AF122D49E32D3188A6B8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 494d74c9-334c-4672-bd53-69885ba50bcc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=60&$top=2401&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=62&$top=2399&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=64&$top=2397&$maxpagesize=2"}' + headers: + apim-request-id: de2a6066-bbcd-4896-a664-0663941b42e8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:33 GMT + etag: '"1D1B0CBA7A77697A8FA25A39274DF48086163E9589168569AE0333EF8F5888EF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: de2a6066-bbcd-4896-a664-0663941b42e8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=62&$top=2399&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=64&$top=2397&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=66&$top=2395&$maxpagesize=2"}' + headers: + apim-request-id: 846936df-93e7-403c-98f4-d229b0d1939b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:33 GMT + etag: '"5632F8259CF8FDE8D299CDCB49B5FE829B79273179257E5AB7366FCB6BF55D63"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 846936df-93e7-403c-98f4-d229b0d1939b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=64&$top=2397&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=66&$top=2395&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=68&$top=2393&$maxpagesize=2"}' + headers: + apim-request-id: d25a3252-0bf8-43f3-a703-f1e8ecf49fd6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:33 GMT + etag: '"B6F516D31D96517829F29C659E06271AEE3D6A4FE2BAF9C70A684230DA7D03BD"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d25a3252-0bf8-43f3-a703-f1e8ecf49fd6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=66&$top=2395&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=68&$top=2393&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=70&$top=2391&$maxpagesize=2"}' + headers: + apim-request-id: 1a674dac-7b68-49d2-b85f-d3f1feb6827c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:34 GMT + etag: '"299CC552EF86BF3CCFCBE09D3148CF644DF6C8904406E813E1E20D48535CF17E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1a674dac-7b68-49d2-b85f-d3f1feb6827c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=68&$top=2393&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=70&$top=2391&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=72&$top=2389&$maxpagesize=2"}' + headers: + apim-request-id: 2703ee39-06f1-480b-a863-bf3c57ecda56 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:34 GMT + etag: '"AFF0DC2C5DD9E63BAA034958AF7CEACCD04B2FAB984B3B8C7EB9C6FD53CE9364"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2703ee39-06f1-480b-a863-bf3c57ecda56 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=70&$top=2391&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=72&$top=2389&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=74&$top=2387&$maxpagesize=2"}' + headers: + apim-request-id: 9b6124e8-59d1-4037-bb07-9948b1b87134 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:34 GMT + etag: '"0D69BD5F31B85E135F1F703A9C1AE559B0DD528489DED042DCAB97F0F90FB1C4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9b6124e8-59d1-4037-bb07-9948b1b87134 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=72&$top=2389&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=74&$top=2387&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=76&$top=2385&$maxpagesize=2"}' + headers: + apim-request-id: 64b6c7c9-c602-4655-a79f-e8b385c5e508 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:34 GMT + etag: '"F24F7F747C1F453FECD312DA114C87B8D94AD0E06767520D5C0683CF0EBA7680"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 64b6c7c9-c602-4655-a79f-e8b385c5e508 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=74&$top=2387&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=76&$top=2385&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=78&$top=2383&$maxpagesize=2"}' + headers: + apim-request-id: 19b83a5c-706b-41fa-bdc3-c2201a0a11a3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:34 GMT + etag: '"20A29FA3C69D6422B84F960CBD5B88B268864F7FA47DC5EBB167F0126EDD637D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 19b83a5c-706b-41fa-bdc3-c2201a0a11a3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=76&$top=2385&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=78&$top=2383&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=80&$top=2381&$maxpagesize=2"}' + headers: + apim-request-id: fa79d9b9-5715-447b-924c-bfb3ac4647db + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:34 GMT + etag: '"F2BB5F558CED3947165623E6366D1EFF36BD6C76FAD09D2CD5E4A5C6AA948469"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fa79d9b9-5715-447b-924c-bfb3ac4647db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=78&$top=2383&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=80&$top=2381&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=82&$top=2379&$maxpagesize=2"}' + headers: + apim-request-id: a23cf730-88ee-44e4-bd14-718efd97ed5b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:34 GMT + etag: '"18D4C0BC57029F32542ED53287B5E3ACCA07D0D9F19301DCF8925F7C67FDC222"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a23cf730-88ee-44e4-bd14-718efd97ed5b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=80&$top=2381&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=82&$top=2379&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=84&$top=2377&$maxpagesize=2"}' + headers: + apim-request-id: 666617bd-b223-4f5e-a3f3-534bf50f4af0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:35 GMT + etag: '"0661ACF30757243A5DA7EAE91F1C66852A63D0A2ACD9D9BBE07AAD15AAE35472"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 666617bd-b223-4f5e-a3f3-534bf50f4af0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=82&$top=2379&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=84&$top=2377&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=86&$top=2375&$maxpagesize=2"}' + headers: + apim-request-id: 4370041a-e13d-4794-8816-2f92eb9b05fe + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:35 GMT + etag: '"DECE9400BB4A9AF8DA9DFC45A66F475BE78ACD945C97EFD3F6A5C04D9B0BD5BA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4370041a-e13d-4794-8816-2f92eb9b05fe + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=84&$top=2377&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=86&$top=2375&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=88&$top=2373&$maxpagesize=2"}' + headers: + apim-request-id: d2f7d49b-0b9e-42df-8d29-0837d31fcbec + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:35 GMT + etag: '"2E599EC7B5A9C8E14C9E1EF12E5F8058BAABCA5AB061AE44FF5ABBD62B1E4A29"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d2f7d49b-0b9e-42df-8d29-0837d31fcbec + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=86&$top=2375&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=88&$top=2373&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=90&$top=2371&$maxpagesize=2"}' + headers: + apim-request-id: 43ee1b70-bb0e-4c7e-9d71-b84a480e2745 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:35 GMT + etag: '"776FF5E24810B127B771D1C366E5EF42C44F8CFF90EE5B5DEDBE0A92060A078C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 43ee1b70-bb0e-4c7e-9d71-b84a480e2745 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=88&$top=2373&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=90&$top=2371&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=92&$top=2369&$maxpagesize=2"}' + headers: + apim-request-id: 9505feef-5de3-40b3-b4c2-42d4daf9e9fd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:35 GMT + etag: '"5BA489EEDB368019C3AE79ACA903D180CB30C2D040C2F4ACF1741C12A19314F9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9505feef-5de3-40b3-b4c2-42d4daf9e9fd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=90&$top=2371&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=92&$top=2369&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=94&$top=2367&$maxpagesize=2"}' + headers: + apim-request-id: 387a7afe-12a3-45ba-93a3-7a142f76b3d2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:35 GMT + etag: '"5D035D047C44385FD8972C9A98C556AA4A6B499037A15541F7F6296D9D9B1A89"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 387a7afe-12a3-45ba-93a3-7a142f76b3d2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=92&$top=2369&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=94&$top=2367&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=96&$top=2365&$maxpagesize=2"}' + headers: + apim-request-id: 40480671-46e7-4871-8ffd-219bea6321f8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:36 GMT + etag: '"C4919E0206A09FEAAC9C45EF24459239BF35092A63C9ED7B23972A2F253BC5D6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 40480671-46e7-4871-8ffd-219bea6321f8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=94&$top=2367&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=96&$top=2365&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=98&$top=2363&$maxpagesize=2"}' + headers: + apim-request-id: e920d464-23cc-4d0f-b95f-99b660e9cf91 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:36 GMT + etag: '"96E2993EB86DDCFE7EB45142B1117A9FD58277B1A50962521CC9B8514F777952"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e920d464-23cc-4d0f-b95f-99b660e9cf91 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=96&$top=2365&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=98&$top=2363&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2361&$maxpagesize=2"}' + headers: + apim-request-id: cfb1ed89-62cc-4dbb-9586-041976dd14e2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:36 GMT + etag: '"FF0EDA7006EF896B1531CC14FB3EA1F6FF6445EA1C97A575D324D1326842B4F5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cfb1ed89-62cc-4dbb-9586-041976dd14e2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=98&$top=2363&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2361&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=102&$top=2359&$maxpagesize=2"}' + headers: + apim-request-id: 5b583f70-9225-4c20-8347-be559afe75fe + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:36 GMT + etag: '"6DB8A93E2005C4A3E9D4C1E3E1B50C98B82AC4C226DD6D643DC255AE2121C999"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5b583f70-9225-4c20-8347-be559afe75fe + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=100&$top=2361&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=102&$top=2359&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=104&$top=2357&$maxpagesize=2"}' + headers: + apim-request-id: 3e192441-eeee-4c83-b37e-b91f0745715e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:36 GMT + etag: '"7366E358241F3B8ADC68C91DBC40B8DA62282792C2E6BEA526645C7E2E097685"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3e192441-eeee-4c83-b37e-b91f0745715e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=102&$top=2359&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=104&$top=2357&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=106&$top=2355&$maxpagesize=2"}' + headers: + apim-request-id: c35ddaa8-139b-4ea0-a175-4ed424305c7c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:36 GMT + etag: '"9D7F8E0415BA55B8577418430156DDBA694872BABF7622E41EECE013FDACAEEA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c35ddaa8-139b-4ea0-a175-4ed424305c7c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=104&$top=2357&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=106&$top=2355&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=108&$top=2353&$maxpagesize=2"}' + headers: + apim-request-id: 769ac050-a60a-4620-98f9-970546ff6ab7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:37 GMT + etag: '"8CA6C9DC76DFA9F5A15DE7EF2783F87F3FDF849A54C0F56C59FAE915F47C4527"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 769ac050-a60a-4620-98f9-970546ff6ab7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=106&$top=2355&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=108&$top=2353&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=110&$top=2351&$maxpagesize=2"}' + headers: + apim-request-id: 5bf00576-a7dd-46ae-823c-d09157ef9160 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:37 GMT + etag: '"F6978694E435A8C5942F2277598B78D054FBEC6E1AF72F62BE206BDB91698C5E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5bf00576-a7dd-46ae-823c-d09157ef9160 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=108&$top=2353&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=110&$top=2351&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=112&$top=2349&$maxpagesize=2"}' + headers: + apim-request-id: 5c920aa4-77fb-4f7b-9c60-d61aac9ff7d9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:37 GMT + etag: '"FDB4EEAD102F6C5D99C827B249428552AE762AE088F6DED5DA9E8EB84DE007DF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5c920aa4-77fb-4f7b-9c60-d61aac9ff7d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=110&$top=2351&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=112&$top=2349&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=114&$top=2347&$maxpagesize=2"}' + headers: + apim-request-id: 7e018ccd-33ec-4d5a-a11a-a5df8520cce2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:37 GMT + etag: '"66D34FEF2090953930D3482292952EA53001665DFFC21E8A467CB63341483865"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7e018ccd-33ec-4d5a-a11a-a5df8520cce2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=112&$top=2349&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=114&$top=2347&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=116&$top=2345&$maxpagesize=2"}' + headers: + apim-request-id: 5a68a96b-48aa-4fdb-97a2-7d991c2190ed + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:37 GMT + etag: '"AFF9089A25D6339AF919A5070CEC6B3404602DCCAF36735E3EE41C39798FBA7E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5a68a96b-48aa-4fdb-97a2-7d991c2190ed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=114&$top=2347&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=116&$top=2345&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=118&$top=2343&$maxpagesize=2"}' + headers: + apim-request-id: 1f2d768f-bd69-4d47-9189-cccb9ae33f15 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:37 GMT + etag: '"440095E81D17C43859BEAAD9639C3A20B8100F4CDDBAEEFA0756AE01797FA901"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1f2d768f-bd69-4d47-9189-cccb9ae33f15 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=116&$top=2345&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=118&$top=2343&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=120&$top=2341&$maxpagesize=2"}' + headers: + apim-request-id: 754b8756-16b3-411d-a469-5515e137a8dc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:38 GMT + etag: '"C7E1809F643155A3B0CBEAC56DC45EEF96CCB432659C5DD220406CBDF33CF138"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 754b8756-16b3-411d-a469-5515e137a8dc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=118&$top=2343&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=120&$top=2341&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=122&$top=2339&$maxpagesize=2"}' + headers: + apim-request-id: 67413d2f-466e-4f8a-a3e4-13b306b332bb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:38 GMT + etag: '"BC75EE0F62EBE7EE5B69673D4C22D6DF4E970BA41FF30ADB516DF383915B71E1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 67413d2f-466e-4f8a-a3e4-13b306b332bb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=120&$top=2341&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=122&$top=2339&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=124&$top=2337&$maxpagesize=2"}' + headers: + apim-request-id: 151b1e0d-6909-43e3-806c-0dcc1e9975bd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:38 GMT + etag: '"5BAE38581CC3362B18BBFEF322A7442D4EB9616733826F7AC98F986811BD779F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 151b1e0d-6909-43e3-806c-0dcc1e9975bd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=122&$top=2339&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=124&$top=2337&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=126&$top=2335&$maxpagesize=2"}' + headers: + apim-request-id: f3ebec3b-c96d-46fd-81b5-f93ae9fbbb87 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:38 GMT + etag: '"966CE4EE6A1FD33E3BAF81154EBB5BD719582E2E7504C445C72471BC096CD476"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f3ebec3b-c96d-46fd-81b5-f93ae9fbbb87 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=124&$top=2337&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=126&$top=2335&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=128&$top=2333&$maxpagesize=2"}' + headers: + apim-request-id: e31f6ae1-f888-429c-9af6-ce19e52fdff9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:38 GMT + etag: '"B66653AEF35B578DB943E6D319A3064B881A862D04BEADBDF5FBFA6BBC7336BC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e31f6ae1-f888-429c-9af6-ce19e52fdff9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=126&$top=2335&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=128&$top=2333&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=130&$top=2331&$maxpagesize=2"}' + headers: + apim-request-id: bfa8fb87-bcea-4509-96e8-7b18340e92fe + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:38 GMT + etag: '"AC138A9DA1D1BB5608333F69C41027CE24D5DE9E126231E862FA24502AF508ED"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bfa8fb87-bcea-4509-96e8-7b18340e92fe + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=128&$top=2333&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=130&$top=2331&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=132&$top=2329&$maxpagesize=2"}' + headers: + apim-request-id: ae20ad3d-1f80-4704-8625-8c19651e15bd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:38 GMT + etag: '"E3601CB65A345E242CCB60897327814A6DFD903FB71738AC7BE3492ED947A464"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ae20ad3d-1f80-4704-8625-8c19651e15bd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=130&$top=2331&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=132&$top=2329&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=134&$top=2327&$maxpagesize=2"}' + headers: + apim-request-id: 661b92de-c742-4fc3-921f-3bc7f38fbc02 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:39 GMT + etag: '"D7E410A7B999FB14E696AFEF8810F0E287EB915F9F2E4084B61CA60298C7DB87"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 661b92de-c742-4fc3-921f-3bc7f38fbc02 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=132&$top=2329&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=134&$top=2327&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=136&$top=2325&$maxpagesize=2"}' + headers: + apim-request-id: baebba0c-2ab5-4196-8777-935b8597ee75 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:39 GMT + etag: '"323228CE408615A35C532F334F4E43AEA99571607927394A8F4EDF888801F1EC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: baebba0c-2ab5-4196-8777-935b8597ee75 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=134&$top=2327&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=136&$top=2325&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=138&$top=2323&$maxpagesize=2"}' + headers: + apim-request-id: 3f635641-da2c-4dfc-acd0-108ed4658343 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:39 GMT + etag: '"437CDE0E07A812DE551D80949681D8B7CA5C0CA13FE1755C157DB41C415AABF2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3f635641-da2c-4dfc-acd0-108ed4658343 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=136&$top=2325&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=138&$top=2323&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=140&$top=2321&$maxpagesize=2"}' + headers: + apim-request-id: b96973cf-5aa8-430d-866d-df06f292895d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:39 GMT + etag: '"9598C17B13E433BD714E472767E0A385DEBDFB85E58B0E802DEEAB10E4586BC2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b96973cf-5aa8-430d-866d-df06f292895d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=138&$top=2323&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=140&$top=2321&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=142&$top=2319&$maxpagesize=2"}' + headers: + apim-request-id: 518214a3-9371-422d-bfd1-3026b7c12980 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:39 GMT + etag: '"F671761AC63FAA99AB619560331777BD605202FB8D477E9B827EA9ECC7FF3092"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 518214a3-9371-422d-bfd1-3026b7c12980 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=140&$top=2321&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=142&$top=2319&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=144&$top=2317&$maxpagesize=2"}' + headers: + apim-request-id: 3183e239-68cd-40b5-9d8d-045cd75e0e14 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:39 GMT + etag: '"47BA478EA46BB1AE5A303CD0D1261A2A2DB1A4DBF966022A4724DDDA4302C681"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3183e239-68cd-40b5-9d8d-045cd75e0e14 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=142&$top=2319&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=144&$top=2317&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=146&$top=2315&$maxpagesize=2"}' + headers: + apim-request-id: 7e932604-a629-4609-88ab-fd2db6896261 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:39 GMT + etag: '"4ACC54B7A66023A7F0F9BABC3D6861DAC1BDF29C1A05880E220C23AB81179A30"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7e932604-a629-4609-88ab-fd2db6896261 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=144&$top=2317&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=146&$top=2315&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=148&$top=2313&$maxpagesize=2"}' + headers: + apim-request-id: 0c8a99fa-df0e-4588-8d65-9d981de209a6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:40 GMT + etag: '"65E97302ED4CC68DE154C0C01D1691832E975776EC8F1779FE88FBCEB12572AC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0c8a99fa-df0e-4588-8d65-9d981de209a6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=146&$top=2315&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=148&$top=2313&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2311&$maxpagesize=2"}' + headers: + apim-request-id: 3c17538a-31f5-49cb-92c3-dafb82e3b672 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:40 GMT + etag: '"9C50F15215F03645A65270525CF629470D5A43ABA6C4EF9786FA4B73F944B345"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3c17538a-31f5-49cb-92c3-dafb82e3b672 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=148&$top=2313&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2311&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=152&$top=2309&$maxpagesize=2"}' + headers: + apim-request-id: d0e4f19a-6a83-4756-87cd-5b436c0a5235 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:40 GMT + etag: '"9C8E7BF1172BD16AFDF536EF403CDF6C7B4267CB44CB296306817E3A0FD0E71E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d0e4f19a-6a83-4756-87cd-5b436c0a5235 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=150&$top=2311&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=152&$top=2309&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=154&$top=2307&$maxpagesize=2"}' + headers: + apim-request-id: fd9da2ab-77c3-4b2a-acca-42248e024309 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:40 GMT + etag: '"0F313DEBEB1DD9A05A566202DAB5A97668392D2D099A858CB0450DCEC16A1893"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fd9da2ab-77c3-4b2a-acca-42248e024309 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=152&$top=2309&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=154&$top=2307&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=156&$top=2305&$maxpagesize=2"}' + headers: + apim-request-id: bb071cba-5b56-4e7d-9aa2-bb3480690de7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:40 GMT + etag: '"3766B4608AE0068769C56D4E223BEE19927B38701BBDC4D59FDBAFC5E6518AFC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bb071cba-5b56-4e7d-9aa2-bb3480690de7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=154&$top=2307&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=156&$top=2305&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=158&$top=2303&$maxpagesize=2"}' + headers: + apim-request-id: 650d6bc5-489e-4528-a8d3-7bd451d52473 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:40 GMT + etag: '"2E483C7F3111B83463E956A2F8BBF53C26CBFD35E9DCE65FD8FE7904F892C6ED"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 650d6bc5-489e-4528-a8d3-7bd451d52473 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=156&$top=2305&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=158&$top=2303&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=160&$top=2301&$maxpagesize=2"}' + headers: + apim-request-id: 95d6c07e-4a5a-438d-a4e9-5b4d841ab76c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:41 GMT + etag: '"2EF13EBC00C941E2F3D7601BA326792D23B8BB9566BDE8551FA32253B1CA06C0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 95d6c07e-4a5a-438d-a4e9-5b4d841ab76c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=158&$top=2303&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=160&$top=2301&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=162&$top=2299&$maxpagesize=2"}' + headers: + apim-request-id: 3a0b48b2-0122-4618-9922-d3cd2bf1cf3b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:41 GMT + etag: '"19E7074B443AB259B825B033487DB2ED55587D3CFD6C9895027D4B7771427F9B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3a0b48b2-0122-4618-9922-d3cd2bf1cf3b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=160&$top=2301&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=162&$top=2299&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=164&$top=2297&$maxpagesize=2"}' + headers: + apim-request-id: 8a0bb657-aeef-4a63-86c6-d5540ab9a95e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:41 GMT + etag: '"EBC4933CA82749CF88CF1DB90ED249A113651EEE9FA9DFF70CFF5C7A114E5EE7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8a0bb657-aeef-4a63-86c6-d5540ab9a95e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=162&$top=2299&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=164&$top=2297&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=166&$top=2295&$maxpagesize=2"}' + headers: + apim-request-id: 8578d2f0-43fe-4b53-a18b-72803b3ca527 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:41 GMT + etag: '"863C16F2CC5EB0664FC71AFDD2915836F2B6F5E99D1249830F4571E0802AFB7B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8578d2f0-43fe-4b53-a18b-72803b3ca527 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=164&$top=2297&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=166&$top=2295&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=168&$top=2293&$maxpagesize=2"}' + headers: + apim-request-id: 2b966dfd-ff84-4a6e-9fc7-6c63c9606b61 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:41 GMT + etag: '"13D0B06E69C126B070B002F6F14FF961DFB573D6067FD5899B19D9C447F86CBE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2b966dfd-ff84-4a6e-9fc7-6c63c9606b61 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=166&$top=2295&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=168&$top=2293&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=170&$top=2291&$maxpagesize=2"}' + headers: + apim-request-id: 700873f8-122d-4385-b012-6b85d2e3964f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:41 GMT + etag: '"E269EC2233570F914238B16A96F4DEB271B99F1ACC1B899102B2740B4A2C477C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 700873f8-122d-4385-b012-6b85d2e3964f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=168&$top=2293&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=170&$top=2291&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=172&$top=2289&$maxpagesize=2"}' + headers: + apim-request-id: c07e1f7f-a5e7-4bd1-92ff-7ff5b638245b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:41 GMT + etag: '"440C30B816B9281470D91F689FD04E94C80CE9350EB55780F7D330239309B320"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c07e1f7f-a5e7-4bd1-92ff-7ff5b638245b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=170&$top=2291&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=172&$top=2289&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=174&$top=2287&$maxpagesize=2"}' + headers: + apim-request-id: e0a21e62-4d4f-42df-9c84-53720206a0aa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:42 GMT + etag: '"F4BD089CE8A9643B543E3BBE34122F5932912CE19E839D2DA86D904DED36F496"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e0a21e62-4d4f-42df-9c84-53720206a0aa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=172&$top=2289&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=174&$top=2287&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=176&$top=2285&$maxpagesize=2"}' + headers: + apim-request-id: 63030914-7128-46e2-8a93-e5575a0c7f30 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:42 GMT + etag: '"0DDB75368384E96494CFCC15231BFF7162DCC6D035D2F1D008BC820C28236094"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 63030914-7128-46e2-8a93-e5575a0c7f30 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=174&$top=2287&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=176&$top=2285&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=178&$top=2283&$maxpagesize=2"}' + headers: + apim-request-id: 8e6c13c3-9ed5-4cc6-8200-867265683ee0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:42 GMT + etag: '"55618D7E20291E431A35E02CBD9F49EADF226A8CB2B1CBEE6D5CF0E1862E4ECE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8e6c13c3-9ed5-4cc6-8200-867265683ee0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=176&$top=2285&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=178&$top=2283&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=180&$top=2281&$maxpagesize=2"}' + headers: + apim-request-id: 9ebcc6af-7ab9-4ab6-8839-87a4b558cc78 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:42 GMT + etag: '"6A71A2492C7B61641FE5FC01AEE44F899E7430F39B83FD4BF3FB237A2B2B9CF0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9ebcc6af-7ab9-4ab6-8839-87a4b558cc78 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=178&$top=2283&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=180&$top=2281&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=182&$top=2279&$maxpagesize=2"}' + headers: + apim-request-id: 314e2475-b486-4784-ba66-c47ad19067aa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:42 GMT + etag: '"2A7275052FF8368EB8F781F3F2C6B09ED1211B9AD20C01CFA670DC0F5DDF6A76"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 314e2475-b486-4784-ba66-c47ad19067aa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=180&$top=2281&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=182&$top=2279&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=184&$top=2277&$maxpagesize=2"}' + headers: + apim-request-id: 739c7140-acfd-46ec-89d0-850e991a632e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:42 GMT + etag: '"C73F28F72417D9D06893D768BB9683450407C35984C74A181AE03795EC556B2E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 739c7140-acfd-46ec-89d0-850e991a632e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=182&$top=2279&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=184&$top=2277&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=186&$top=2275&$maxpagesize=2"}' + headers: + apim-request-id: 3cdada93-41c5-4e59-baf0-b133cc6c3844 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:43 GMT + etag: '"1DDA914C9B26710C284D7DE82488163C2635140595795DECFFA937CA17717145"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3cdada93-41c5-4e59-baf0-b133cc6c3844 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=184&$top=2277&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=186&$top=2275&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=188&$top=2273&$maxpagesize=2"}' + headers: + apim-request-id: 5d9350b9-0804-4751-bff2-71cd9b7d351e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:43 GMT + etag: '"9A07FFD80372BB39020925D8A5E8CC558C9BF42DDB9CB21CC349E6ECBEF2EA73"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5d9350b9-0804-4751-bff2-71cd9b7d351e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=186&$top=2275&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=188&$top=2273&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=190&$top=2271&$maxpagesize=2"}' + headers: + apim-request-id: b6a38821-d5fa-4b43-96c6-9e5343fbd590 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:43 GMT + etag: '"03CE58F8EF32747FBBE69CCB6F5194ABB266082AF8D7CECCC09451A63D79C823"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b6a38821-d5fa-4b43-96c6-9e5343fbd590 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=188&$top=2273&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=190&$top=2271&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=192&$top=2269&$maxpagesize=2"}' + headers: + apim-request-id: b0626db0-3747-4126-b149-be82dfbc9605 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:43 GMT + etag: '"E6CADFD814177C86B80C2E07A84891398759019EA97F3A477E85A7D77B2BC039"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b0626db0-3747-4126-b149-be82dfbc9605 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=190&$top=2271&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=192&$top=2269&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=194&$top=2267&$maxpagesize=2"}' + headers: + apim-request-id: e167b9c8-a111-41c7-acf9-7bfc079a48c6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:43 GMT + etag: '"2E3CF1E2431EAC73D8E4B8E19FA4C2277B4B48CB3377E523DD8D49214397E3AA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e167b9c8-a111-41c7-acf9-7bfc079a48c6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=192&$top=2269&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=194&$top=2267&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=196&$top=2265&$maxpagesize=2"}' + headers: + apim-request-id: 58c49911-ed94-4e26-bace-0284856edaf5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:43 GMT + etag: '"7183D67BB80A3A4507399D96A55D9940AAF2866D7D93D86704CD0B40D2A6A61C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 58c49911-ed94-4e26-bace-0284856edaf5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=194&$top=2267&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=196&$top=2265&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=198&$top=2263&$maxpagesize=2"}' + headers: + apim-request-id: dfa897d3-8b6f-46ef-b4df-c2c9c1fa45ad + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:43 GMT + etag: '"7B3643AFE602A9435A80D1E4608DC0915F5173E6B9EFFC502F636253C2FDE467"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dfa897d3-8b6f-46ef-b4df-c2c9c1fa45ad + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=196&$top=2265&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=198&$top=2263&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2261&$maxpagesize=2"}' + headers: + apim-request-id: 74f2d224-f114-499a-a9d3-7963448ad16f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:44 GMT + etag: '"58762E4FF4B60A63CE847173DA103D39093FD93CDE5CC374BD668B8CFF00BEBD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 74f2d224-f114-499a-a9d3-7963448ad16f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=198&$top=2263&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2261&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=202&$top=2259&$maxpagesize=2"}' + headers: + apim-request-id: a11bfee4-81be-4f9b-a41a-6fb72ad7a86d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:44 GMT + etag: '"8B5968A6ED0EAD0BD2B9B9B2F55337A7F9F60A2298D626EC2B2551BC1FBE854C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a11bfee4-81be-4f9b-a41a-6fb72ad7a86d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=200&$top=2261&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=202&$top=2259&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=204&$top=2257&$maxpagesize=2"}' + headers: + apim-request-id: 504ce0f2-e9af-472a-a079-3917d3efab50 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:44 GMT + etag: '"380266F27288DBF044E5F9C7B0EFE9BFCB1776211EEB0981E044E82ED80B59B3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 504ce0f2-e9af-472a-a079-3917d3efab50 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=202&$top=2259&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=204&$top=2257&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=206&$top=2255&$maxpagesize=2"}' + headers: + apim-request-id: 76bb3d87-efef-4372-95a7-8ea00bf253e5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:44 GMT + etag: '"CD71C7371185CBCAE7870E2A7DCC282B62E750D16B9459BA82348E889689A0EC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 76bb3d87-efef-4372-95a7-8ea00bf253e5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=204&$top=2257&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=206&$top=2255&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=208&$top=2253&$maxpagesize=2"}' + headers: + apim-request-id: 37744b38-7a3c-434a-8f7c-23b172fc7af7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:44 GMT + etag: '"526FEC62C4237E7528D40EAC1B7EEEE2A5EADA2BC4D333A94B5093A4DC92665C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 37744b38-7a3c-434a-8f7c-23b172fc7af7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=206&$top=2255&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=208&$top=2253&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=210&$top=2251&$maxpagesize=2"}' + headers: + apim-request-id: 361e9379-4cde-4625-abf6-474b752573f8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:45 GMT + etag: '"64DF4A0665C08E9BBD5F67BFEDE92321B7A83C533E330F9F30381F1E5208D2F3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 361e9379-4cde-4625-abf6-474b752573f8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=208&$top=2253&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=210&$top=2251&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=212&$top=2249&$maxpagesize=2"}' + headers: + apim-request-id: 0bef1f15-dfe0-4ae4-90ce-a1a90861bf90 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:45 GMT + etag: '"420168DEEA5E6E059ADB530E7AE8DC1C276B305DE0CBF9691CB77893FD9DD54E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0bef1f15-dfe0-4ae4-90ce-a1a90861bf90 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=210&$top=2251&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=212&$top=2249&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=214&$top=2247&$maxpagesize=2"}' + headers: + apim-request-id: 85fbd7f3-57a3-43d1-a6c7-04d484858b57 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:45 GMT + etag: '"6B638C1C1CD53829DDE3BDA227C38A51CA5DCA721CEB88ACF1BD2248551F7206"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 85fbd7f3-57a3-43d1-a6c7-04d484858b57 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=212&$top=2249&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=214&$top=2247&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=216&$top=2245&$maxpagesize=2"}' + headers: + apim-request-id: 11ff5f8f-594c-4fc5-9bdc-e66140402ba3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:45 GMT + etag: '"EDB336975E7A4713FCFE9A2C69944C52E6590CB58F062EEE8D8FD798A035D3AF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 11ff5f8f-594c-4fc5-9bdc-e66140402ba3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=214&$top=2247&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=216&$top=2245&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=218&$top=2243&$maxpagesize=2"}' + headers: + apim-request-id: b3c2be3c-1c1a-4e66-ba46-813171844fde + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:45 GMT + etag: '"5B630453F45737B8CFA9EC095E1F144D9A134FE3DDE1FD6ABCA83BE6F868C59C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b3c2be3c-1c1a-4e66-ba46-813171844fde + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=216&$top=2245&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=218&$top=2243&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=220&$top=2241&$maxpagesize=2"}' + headers: + apim-request-id: f3dac9e8-dc2f-4dcc-94f6-7ec0b6cef527 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:45 GMT + etag: '"A8B26098B956D7AAE6B999EA55976BD1AA97B96290BD3AA54A79856740873B8F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f3dac9e8-dc2f-4dcc-94f6-7ec0b6cef527 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=218&$top=2243&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=220&$top=2241&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=222&$top=2239&$maxpagesize=2"}' + headers: + apim-request-id: 64eac280-18a4-49db-b207-a9706c660340 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:46 GMT + etag: '"F1FFE988EC05DF55645A72AC0B9386B29B2167B0C8DC148280A5A0CA5BB42F5A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 64eac280-18a4-49db-b207-a9706c660340 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=220&$top=2241&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=222&$top=2239&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=224&$top=2237&$maxpagesize=2"}' + headers: + apim-request-id: 9f92f6e7-7b2a-4aa6-80ff-9c8d4b6e0791 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:46 GMT + etag: '"538E6D7A55A2962264AE1D758E8B8098ECA8E7A32CCE5AD2C1B8FF1CC807685D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9f92f6e7-7b2a-4aa6-80ff-9c8d4b6e0791 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=222&$top=2239&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=224&$top=2237&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=226&$top=2235&$maxpagesize=2"}' + headers: + apim-request-id: 221b5661-03e9-41ed-8db1-bda6a03b47e2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:46 GMT + etag: '"0481BAFF220166B088A78AACD6D41753FA97F6FC2BEF00A0D9490F5535867597"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 221b5661-03e9-41ed-8db1-bda6a03b47e2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=224&$top=2237&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=226&$top=2235&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=228&$top=2233&$maxpagesize=2"}' + headers: + apim-request-id: 273ff092-fd2f-4557-af68-baece8982337 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:47 GMT + etag: '"FF75ACB962EE0684D2BA2C3C31DA874FFECB9FE3A90E66CC141EEE90FDDB4A7E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 273ff092-fd2f-4557-af68-baece8982337 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=226&$top=2235&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=228&$top=2233&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=230&$top=2231&$maxpagesize=2"}' + headers: + apim-request-id: 3ea3cb44-5a44-4b9d-bb33-2d2221e1f0b4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:47 GMT + etag: '"19D6CB6D55B042599F3A3459EC051B47536E6B0B461B13F3976247135F5EB613"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3ea3cb44-5a44-4b9d-bb33-2d2221e1f0b4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=228&$top=2233&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=230&$top=2231&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=232&$top=2229&$maxpagesize=2"}' + headers: + apim-request-id: 0a583c46-5260-4523-82f7-c1754d5e1141 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:47 GMT + etag: '"341DDED176CEDABB77847014E633ABC5FA35F3DFEB59B774BA044FE537D6C7A0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0a583c46-5260-4523-82f7-c1754d5e1141 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=230&$top=2231&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=232&$top=2229&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=234&$top=2227&$maxpagesize=2"}' + headers: + apim-request-id: 01aa90f8-8d74-4b2b-b68e-37a14ca65947 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:47 GMT + etag: '"E106D9A3450A75C2834E89BFF7FF61B09830FF177644FF539E9DE1DABE9FA78A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 01aa90f8-8d74-4b2b-b68e-37a14ca65947 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=232&$top=2229&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=234&$top=2227&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=236&$top=2225&$maxpagesize=2"}' + headers: + apim-request-id: e7cb4d65-a807-4b7f-91f1-2ab2d420f9f7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:47 GMT + etag: '"CAB4F1FEEB535ACC3F50C6D6343AB8B835ACE3149DEECEB5D98EBFDC2E2AFEAF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e7cb4d65-a807-4b7f-91f1-2ab2d420f9f7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=234&$top=2227&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=236&$top=2225&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=238&$top=2223&$maxpagesize=2"}' + headers: + apim-request-id: fa9e641a-a77e-40c6-9258-9b89712135ac + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:47 GMT + etag: '"81259ACEB7ADB18D27DBB3012D3DDF23DC245DACB2663BDC7C3F5BDEACFD1A85"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fa9e641a-a77e-40c6-9258-9b89712135ac + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=236&$top=2225&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=238&$top=2223&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=240&$top=2221&$maxpagesize=2"}' + headers: + apim-request-id: 13d4f572-fde1-4027-a237-bf8f82248d56 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:48 GMT + etag: '"66ACCC37B6E827F6C9785D70B9175BA54F4D65E2EF76A6C45055044B2803DC6D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 13d4f572-fde1-4027-a237-bf8f82248d56 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=238&$top=2223&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=240&$top=2221&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=242&$top=2219&$maxpagesize=2"}' + headers: + apim-request-id: f4da5be5-d6b1-48a2-94dd-b9fc89c96eb4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:48 GMT + etag: '"02E2098A0E5020798080EA84EFC91F2B1EEE6CBDF3CF8D491110EBCC80A3966C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f4da5be5-d6b1-48a2-94dd-b9fc89c96eb4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=240&$top=2221&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=242&$top=2219&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=244&$top=2217&$maxpagesize=2"}' + headers: + apim-request-id: 8d8d5f68-b303-4800-98b9-73e424d7ed1b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:48 GMT + etag: '"91B341DABD5F950BD5A6B2C466F5C32DD235B407010B44C943333BFE1B9A62A4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8d8d5f68-b303-4800-98b9-73e424d7ed1b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=242&$top=2219&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=244&$top=2217&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=246&$top=2215&$maxpagesize=2"}' + headers: + apim-request-id: 2184afa1-d38b-4b9f-b544-8f6752a840e4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:48 GMT + etag: '"984C47C02747890045E7E732A069BEB363BEC90FC08E6F2CBD854D56D3B5A52D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2184afa1-d38b-4b9f-b544-8f6752a840e4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=244&$top=2217&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=246&$top=2215&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=248&$top=2213&$maxpagesize=2"}' + headers: + apim-request-id: a6999b63-05b6-4059-938a-8f974f946d3d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:48 GMT + etag: '"492666DD5689273E803A8256D5ACBEE9B2DA08F73DDF817412AAD5074DEA2294"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a6999b63-05b6-4059-938a-8f974f946d3d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=246&$top=2215&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=248&$top=2213&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2211&$maxpagesize=2"}' + headers: + apim-request-id: 020400c5-8361-474b-8da6-69b93db036c5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:48 GMT + etag: '"93BD0536CAB28AC29E291B7D4D8108B08055BF941A8262BED01867CAE9089410"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 020400c5-8361-474b-8da6-69b93db036c5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=248&$top=2213&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2211&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=252&$top=2209&$maxpagesize=2"}' + headers: + apim-request-id: 641670be-32fe-4e5a-bd1e-4a0524c171b6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:49 GMT + etag: '"ED84F433C9B71B806EB5D42C61ED2DE5AB22B014B727A5BA8A812C5CC2D630BD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 641670be-32fe-4e5a-bd1e-4a0524c171b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=250&$top=2211&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=252&$top=2209&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=254&$top=2207&$maxpagesize=2"}' + headers: + apim-request-id: b56ca014-8b9e-4cfe-8649-63f15ccbbc51 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:49 GMT + etag: '"22DB15D2EA4E2076689E536307D8BD03E0054A7F477FF0609614A357D2208E5F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b56ca014-8b9e-4cfe-8649-63f15ccbbc51 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=252&$top=2209&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=254&$top=2207&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=256&$top=2205&$maxpagesize=2"}' + headers: + apim-request-id: 38a54859-a419-4bf7-bf0a-f0fe11228f0e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:49 GMT + etag: '"184A94B2D5CDC23D82161EC3CA7504D5267683283DB805EA27AF90743C4AD4B7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 38a54859-a419-4bf7-bf0a-f0fe11228f0e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=254&$top=2207&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=256&$top=2205&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=258&$top=2203&$maxpagesize=2"}' + headers: + apim-request-id: 4c0e441e-a6db-4c02-9294-eb4308581eed + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:49 GMT + etag: '"7F14FC47BB8710DD3C241EB78C0B3B416D414ABC6B405171CD6D1B04163F1F6D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4c0e441e-a6db-4c02-9294-eb4308581eed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=256&$top=2205&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=258&$top=2203&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=260&$top=2201&$maxpagesize=2"}' + headers: + apim-request-id: 4ad8496e-34b7-43c8-bedc-bf8110d23395 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:49 GMT + etag: '"6F0B1C1009F264E12A98E64EB4A2F0A1DCA8798EEB188B994A4073BEF8D512DE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4ad8496e-34b7-43c8-bedc-bf8110d23395 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=258&$top=2203&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=260&$top=2201&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=262&$top=2199&$maxpagesize=2"}' + headers: + apim-request-id: c4db99f1-4f29-4d1f-94cd-44a03a7427a3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:49 GMT + etag: '"9C8C56C804B4CCEFFEAB77AC2413E718CA6C074CB3DC6D23B0FF9F229D03133D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c4db99f1-4f29-4d1f-94cd-44a03a7427a3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=260&$top=2201&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=262&$top=2199&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=264&$top=2197&$maxpagesize=2"}' + headers: + apim-request-id: 77dbcd27-2b94-4f2f-b8ab-3179e7b9fb4c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:50 GMT + etag: '"C217950F380ACC4EA8BE5397EE40BC0A6C5C129942D61286158CEF4EF7F386C0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 77dbcd27-2b94-4f2f-b8ab-3179e7b9fb4c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=262&$top=2199&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=264&$top=2197&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=266&$top=2195&$maxpagesize=2"}' + headers: + apim-request-id: aceda0bc-4c8f-4fb2-bc80-4ea0e2c74288 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:50 GMT + etag: '"718295195F141D47202039941AE74384AA612C28BAEF8C01263B157750C84AB7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: aceda0bc-4c8f-4fb2-bc80-4ea0e2c74288 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=264&$top=2197&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=266&$top=2195&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=268&$top=2193&$maxpagesize=2"}' + headers: + apim-request-id: f3b0b3ba-32d4-4009-9b2d-86288d799053 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:50 GMT + etag: '"27329143DCF00FC01CFB046F19687B23CFBA24F717A83ABC18AD8B9D108B06A1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f3b0b3ba-32d4-4009-9b2d-86288d799053 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=266&$top=2195&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=268&$top=2193&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=270&$top=2191&$maxpagesize=2"}' + headers: + apim-request-id: c39a9e47-e347-4768-a037-8bb112f02c27 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:50 GMT + etag: '"651320291807CB198B572ACF5298FFA7A70E97FBBDA8BEB72E13CFEDF8B8938A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c39a9e47-e347-4768-a037-8bb112f02c27 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=268&$top=2193&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=270&$top=2191&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=272&$top=2189&$maxpagesize=2"}' + headers: + apim-request-id: c17fe4b1-f0b4-4157-a333-3e7227ccd962 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:50 GMT + etag: '"0F6DF8341BB29E2885FE684FA6C38A9B0237BE306D3EA65CD0C69C5ABA1C4983"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c17fe4b1-f0b4-4157-a333-3e7227ccd962 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=270&$top=2191&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=272&$top=2189&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=274&$top=2187&$maxpagesize=2"}' + headers: + apim-request-id: eefe5e50-d953-4865-8b25-fdfc13a24615 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:50 GMT + etag: '"5D44B1993405FEFEE56A9DBAC353AC52C9F4E46589C871819FAC0C0F188B065C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eefe5e50-d953-4865-8b25-fdfc13a24615 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=272&$top=2189&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=274&$top=2187&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=276&$top=2185&$maxpagesize=2"}' + headers: + apim-request-id: 5e2771cc-4cf9-4f72-9fdf-db3f76b0385f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:51 GMT + etag: '"EF2F8D68DFEB463826112F725FE93EB7DC1B3FB76E550D97145FAB517D70F4D3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5e2771cc-4cf9-4f72-9fdf-db3f76b0385f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=274&$top=2187&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=276&$top=2185&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=278&$top=2183&$maxpagesize=2"}' + headers: + apim-request-id: 56b3a292-4913-4cf9-9f69-4489ced22029 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:51 GMT + etag: '"707B35088D978CD3F76949B83C2D055BFFAE409DB6CE261EFA0F9F068EDE664D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 56b3a292-4913-4cf9-9f69-4489ced22029 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=276&$top=2185&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=278&$top=2183&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=280&$top=2181&$maxpagesize=2"}' + headers: + apim-request-id: ae0b9cff-894f-4b48-876b-5cb8e1e0a0d8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:51 GMT + etag: '"28123EDC4ACB320325CE16F65131BFFF53E9BDA902DD38C1E56FC3BCC8F97781"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ae0b9cff-894f-4b48-876b-5cb8e1e0a0d8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=278&$top=2183&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=280&$top=2181&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=282&$top=2179&$maxpagesize=2"}' + headers: + apim-request-id: 6aa589cc-925b-4b51-9689-71e18a2156a9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:51 GMT + etag: '"FC4B63B1744AF25C03174656C4C8B087F93D837B42538DA10D7BF4FD842690D6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6aa589cc-925b-4b51-9689-71e18a2156a9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=280&$top=2181&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=282&$top=2179&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=284&$top=2177&$maxpagesize=2"}' + headers: + apim-request-id: 64656650-c7f3-4e68-b245-337f9476f15a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:51 GMT + etag: '"E9B9DC812A713D2726121CB52FF30E29EF3F45FCADC0CB849F0A3740D5762B7C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 64656650-c7f3-4e68-b245-337f9476f15a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=282&$top=2179&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=284&$top=2177&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=286&$top=2175&$maxpagesize=2"}' + headers: + apim-request-id: f2dce143-a566-4c17-91bd-9e209b7fbe5f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:51 GMT + etag: '"1E77CA88EFE674CE36276A4B76451F81C2CA4E0C48AA3B45CC22F92A64D2518D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f2dce143-a566-4c17-91bd-9e209b7fbe5f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=284&$top=2177&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=286&$top=2175&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=288&$top=2173&$maxpagesize=2"}' + headers: + apim-request-id: 16132504-cec8-4e12-a691-3bd6ebc0fd85 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:51 GMT + etag: '"119316464A3E8D530C96C30CE306E381C285E9726133A4351DBF94F86F02ACEB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 16132504-cec8-4e12-a691-3bd6ebc0fd85 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=286&$top=2175&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=288&$top=2173&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=290&$top=2171&$maxpagesize=2"}' + headers: + apim-request-id: 9592e7a9-b0ad-45bc-944b-71c4f4bd6156 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:52 GMT + etag: '"77B44DA93FCB4AD107FE33F4BFF96810A1B281770ED755C476F6971AF46E686D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9592e7a9-b0ad-45bc-944b-71c4f4bd6156 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=288&$top=2173&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=290&$top=2171&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=292&$top=2169&$maxpagesize=2"}' + headers: + apim-request-id: e8891f0e-5f12-4c58-9258-54c4856016bf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:52 GMT + etag: '"A0E893CEA0192AC8CF9DBDD06089AB8B6E84C0C69CD2EBA268504F665D4C1FEB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e8891f0e-5f12-4c58-9258-54c4856016bf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=290&$top=2171&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=292&$top=2169&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=294&$top=2167&$maxpagesize=2"}' + headers: + apim-request-id: 9dda061b-f209-4991-9143-e9cd776d48a3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:52 GMT + etag: '"7A612CF85E3B62696F94BCFD3288CFCBEE0D950FCC223F866C808C36F7AB2840"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9dda061b-f209-4991-9143-e9cd776d48a3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=292&$top=2169&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=294&$top=2167&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=296&$top=2165&$maxpagesize=2"}' + headers: + apim-request-id: 13ec77bc-1fae-48b8-8a0d-314155835b16 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:52 GMT + etag: '"6B9E9DF7A7314AE8ED698F1FB5099556697D00ECB980288B0232EB4D279E6434"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 13ec77bc-1fae-48b8-8a0d-314155835b16 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=294&$top=2167&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=296&$top=2165&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=298&$top=2163&$maxpagesize=2"}' + headers: + apim-request-id: 420c2172-f719-4717-b178-91d32ce75365 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:52 GMT + etag: '"81D2A4330CD675507167C6A62C1166CB976766CFE4BF59638C4866D36052DDB0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 420c2172-f719-4717-b178-91d32ce75365 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=296&$top=2165&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=298&$top=2163&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2161&$maxpagesize=2"}' + headers: + apim-request-id: d82cb930-de44-44b0-b1a8-e0ee72198d58 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:52 GMT + etag: '"0F3AC88A4CCF6D92EDFFB115F4484DD27CFDFB3ED76A1E82C5F0873E7F1573DD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d82cb930-de44-44b0-b1a8-e0ee72198d58 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=298&$top=2163&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2161&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=302&$top=2159&$maxpagesize=2"}' + headers: + apim-request-id: 59fba359-f548-4d48-a120-507ec05f1ee0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:53 GMT + etag: '"0B1F522ED2540FF28C163BDD6ACE32754B2B0427C4E029899CD829F5166A2049"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 59fba359-f548-4d48-a120-507ec05f1ee0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=300&$top=2161&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=302&$top=2159&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=304&$top=2157&$maxpagesize=2"}' + headers: + apim-request-id: d331a5cf-05c2-4f9e-939f-b54956ffbb74 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:53 GMT + etag: '"D558185E3979548CC1C62A07E2068D922F09D1295CB8E826041CB8BAD33761CC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d331a5cf-05c2-4f9e-939f-b54956ffbb74 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=302&$top=2159&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=304&$top=2157&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=306&$top=2155&$maxpagesize=2"}' + headers: + apim-request-id: 27a4770f-e1f6-43a5-8fb6-ddeb6e3b0ec4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:53 GMT + etag: '"3F9DD371FDF5E3B28BADFF711205452BD35E71F9465A891B78E5ABA6164CD042"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 27a4770f-e1f6-43a5-8fb6-ddeb6e3b0ec4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=304&$top=2157&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=306&$top=2155&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=308&$top=2153&$maxpagesize=2"}' + headers: + apim-request-id: 0c57de63-491c-461d-adf6-909debaac7d2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:53 GMT + etag: '"1CE8387BFFE69090851AE9C13D36DFDAA2EAEB3DEBAEE241C3EC60E65B543398"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0c57de63-491c-461d-adf6-909debaac7d2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=306&$top=2155&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=308&$top=2153&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=310&$top=2151&$maxpagesize=2"}' + headers: + apim-request-id: 38ad486c-c43c-4925-bd89-651099e6d45c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:53 GMT + etag: '"535C23EFF84DAACF4767549C66458136DE35BC7FD08A7E3BC202321D83678F40"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 38ad486c-c43c-4925-bd89-651099e6d45c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=308&$top=2153&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=310&$top=2151&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=312&$top=2149&$maxpagesize=2"}' + headers: + apim-request-id: 3d6ede38-04c0-472d-95ef-56b98c0b8227 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:53 GMT + etag: '"F8AEA6CF4381795E778C88AFF0497105799F4B5467C041D33402068298B98D22"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3d6ede38-04c0-472d-95ef-56b98c0b8227 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=310&$top=2151&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=312&$top=2149&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=314&$top=2147&$maxpagesize=2"}' + headers: + apim-request-id: 5d2c9500-ecfc-4013-a9e4-de1c0b82625a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:54 GMT + etag: '"B7C919431C2CC469E44F29017221A5266798EBE443DF7C9237D82F957C985F29"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5d2c9500-ecfc-4013-a9e4-de1c0b82625a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=312&$top=2149&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=314&$top=2147&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=316&$top=2145&$maxpagesize=2"}' + headers: + apim-request-id: 9aef7494-b6a6-4baa-8381-8cad22a1e794 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:54 GMT + etag: '"439A95F9DE6C0557438AEE23298DFC650214AA94F436DFB5F51D9C17969C1E47"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9aef7494-b6a6-4baa-8381-8cad22a1e794 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=314&$top=2147&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=316&$top=2145&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=318&$top=2143&$maxpagesize=2"}' + headers: + apim-request-id: 9d7b20b4-6e04-43e7-bf23-c20f77b6041d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:54 GMT + etag: '"B7E83A560895ABA0EF2308FE3C9477F7C34E0D46DCFF2EF7E9640791AF382F58"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9d7b20b4-6e04-43e7-bf23-c20f77b6041d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=316&$top=2145&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=318&$top=2143&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=320&$top=2141&$maxpagesize=2"}' + headers: + apim-request-id: 3f6ca08d-accd-4fff-841b-06db65251c2f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:54 GMT + etag: '"1A9710E90F6B09DD1C05B63ED6D8F4353EDDFE363AD5AD0BFDE69B06A4FDCA3D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3f6ca08d-accd-4fff-841b-06db65251c2f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=318&$top=2143&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=320&$top=2141&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=322&$top=2139&$maxpagesize=2"}' + headers: + apim-request-id: 845d5b62-7d55-47cb-9e2e-718f7300808c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:54 GMT + etag: '"C657374B7A74E48E13699829676424FED0E550F7DEB5144FD2E2D5D43438194A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 845d5b62-7d55-47cb-9e2e-718f7300808c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=320&$top=2141&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=322&$top=2139&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=324&$top=2137&$maxpagesize=2"}' + headers: + apim-request-id: 8a181f77-5d0c-4312-a3a0-bdc38812731d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:54 GMT + etag: '"50C20AF895926BBB56B730769955FD736752E7A4F4A155BA22514420122C8B04"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8a181f77-5d0c-4312-a3a0-bdc38812731d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=322&$top=2139&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=324&$top=2137&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=326&$top=2135&$maxpagesize=2"}' + headers: + apim-request-id: 05541421-ab8a-46eb-8840-96de068d1b63 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:54 GMT + etag: '"F129DE58A8ECCF8CCEAAF964A44F15A5F2C61B398D1CA9BB0B78FF82B8328A83"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 05541421-ab8a-46eb-8840-96de068d1b63 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=324&$top=2137&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=326&$top=2135&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=328&$top=2133&$maxpagesize=2"}' + headers: + apim-request-id: d51d85b8-5f4a-4340-8abb-d0d5fafd0de4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:55 GMT + etag: '"4FD9E92576F493C7AFC67914583D358470521060C1B2B89DFA763239419D2AAA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d51d85b8-5f4a-4340-8abb-d0d5fafd0de4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=326&$top=2135&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=328&$top=2133&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=330&$top=2131&$maxpagesize=2"}' + headers: + apim-request-id: 8e992a78-149e-4e96-b436-36e04eb351b6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:55 GMT + etag: '"AD311D02EE7B4A6FD7F57F8756DDB5E6CE0D471485FD3175BD7DA2A4C3485719"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8e992a78-149e-4e96-b436-36e04eb351b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=328&$top=2133&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=330&$top=2131&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=332&$top=2129&$maxpagesize=2"}' + headers: + apim-request-id: 51120b11-55ea-4638-879e-50722ecc44a7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:55 GMT + etag: '"05FBA7F6866DD682C8253CB576F33409B592002B7206285392221A4F4C4BF9BB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 51120b11-55ea-4638-879e-50722ecc44a7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=330&$top=2131&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=332&$top=2129&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=334&$top=2127&$maxpagesize=2"}' + headers: + apim-request-id: 3f87e4a8-706d-4953-9643-a29b97640dd1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:55 GMT + etag: '"935B1B20318AD41C7A43C892B2AC0F3503482A1C143FBA13D63BEA5727149809"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3f87e4a8-706d-4953-9643-a29b97640dd1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=332&$top=2129&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=334&$top=2127&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=336&$top=2125&$maxpagesize=2"}' + headers: + apim-request-id: d61262c6-5d21-4578-bd08-9678b1880edc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:55 GMT + etag: '"222302A499C47703A427DB53DCF2CAA4C28FEF0BD6F4DAC42214CB70E2ED285D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d61262c6-5d21-4578-bd08-9678b1880edc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=334&$top=2127&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=336&$top=2125&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=338&$top=2123&$maxpagesize=2"}' + headers: + apim-request-id: 7913cdbf-1a64-4810-85f4-f1883391cc3f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:55 GMT + etag: '"37C24E1942EB6D6C9B83676C65C0C0F9A0E34AE353EA9970E0CD2FC2C11D78EB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7913cdbf-1a64-4810-85f4-f1883391cc3f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=336&$top=2125&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=338&$top=2123&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=340&$top=2121&$maxpagesize=2"}' + headers: + apim-request-id: 583f816d-1945-4163-b748-1248bab60790 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:56 GMT + etag: '"869F1E41062947086953D90C75A25868F18E1BB8BB23668B90FB02BCAB5B5F6A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 583f816d-1945-4163-b748-1248bab60790 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=338&$top=2123&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=340&$top=2121&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=342&$top=2119&$maxpagesize=2"}' + headers: + apim-request-id: 39fd8ed5-afab-4c36-834b-1fb92d1dd43a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:56 GMT + etag: '"4E58027A1EB7248203E5F1503D3568DFB7FA5F2FAA79D2F98ECFE8F28471BE57"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 39fd8ed5-afab-4c36-834b-1fb92d1dd43a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=340&$top=2121&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=342&$top=2119&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=344&$top=2117&$maxpagesize=2"}' + headers: + apim-request-id: 3f32b8fa-fcc6-430e-afe7-69a9d67f6501 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:56 GMT + etag: '"BEC9C7DD412D2E2EDBBCDC16FC4AEDDB587EA647C8444CA39DBE4149E8EAE6EB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3f32b8fa-fcc6-430e-afe7-69a9d67f6501 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=342&$top=2119&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=344&$top=2117&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=346&$top=2115&$maxpagesize=2"}' + headers: + apim-request-id: bbdd1a93-8124-40ea-a9a3-6b14d922d920 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:56 GMT + etag: '"E6294B25B0310F9516E1732215E4901A450BD6B5A6B401A32BD05830E763F955"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bbdd1a93-8124-40ea-a9a3-6b14d922d920 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=344&$top=2117&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=346&$top=2115&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=348&$top=2113&$maxpagesize=2"}' + headers: + apim-request-id: 199ab417-8c44-45cb-a1f9-4b4669053a43 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:56 GMT + etag: '"342B68EC54EC8AF43C59B53E770B516848321BB3CEB9ACBD7E8BE4A77DA6EA75"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 199ab417-8c44-45cb-a1f9-4b4669053a43 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=346&$top=2115&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=348&$top=2113&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2111&$maxpagesize=2"}' + headers: + apim-request-id: 6b3533af-80e5-4f0a-b1dc-a808cb77703d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:56 GMT + etag: '"A1254305D4347A977E89005649FF22036062860EBF2A0DA89BFE3BDAB68431BF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6b3533af-80e5-4f0a-b1dc-a808cb77703d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=348&$top=2113&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2111&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=352&$top=2109&$maxpagesize=2"}' + headers: + apim-request-id: 1a0d93a6-1503-4d74-b210-1148b9dac9c2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:57 GMT + etag: '"8143862927C02CABD10BCC3D4465B2B3ECF5C9DF71ED2A744DE6C53D445D53C9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1a0d93a6-1503-4d74-b210-1148b9dac9c2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=350&$top=2111&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=352&$top=2109&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=354&$top=2107&$maxpagesize=2"}' + headers: + apim-request-id: a2d429c6-1283-4b8a-83c8-e6c2a50117e2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:57 GMT + etag: '"C3CC87C550386718763102435CBF6AFB4A7B4E6B4363E7A06EC45FDCC15239D4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a2d429c6-1283-4b8a-83c8-e6c2a50117e2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=352&$top=2109&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=354&$top=2107&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=356&$top=2105&$maxpagesize=2"}' + headers: + apim-request-id: 6967c7f2-a698-4f89-8211-81e27edf42be + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:57 GMT + etag: '"702B18A2DB7485F3E1A4BE42D7414D43329D2EEA3027F201BE9D1EE50043616C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6967c7f2-a698-4f89-8211-81e27edf42be + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=354&$top=2107&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=356&$top=2105&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=358&$top=2103&$maxpagesize=2"}' + headers: + apim-request-id: b5d6db05-18d5-46fa-913b-aabee1762853 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:57 GMT + etag: '"2AFFB01D8E6A128AA798867FB3A95C1D0B1D52D9675AD17EC7F44698F55FDB12"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b5d6db05-18d5-46fa-913b-aabee1762853 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=356&$top=2105&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=358&$top=2103&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=360&$top=2101&$maxpagesize=2"}' + headers: + apim-request-id: dd908dd3-2f9e-4d12-8f6d-8f28a64457f7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:57 GMT + etag: '"21CFA8FB058D3EE33C3F674E8C48537073E7DB48FBBEEBACE21C0792A0E8EC4B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dd908dd3-2f9e-4d12-8f6d-8f28a64457f7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=358&$top=2103&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=360&$top=2101&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=362&$top=2099&$maxpagesize=2"}' + headers: + apim-request-id: 31a8e365-7e90-4796-a866-1812c69c2fcb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:57 GMT + etag: '"D3C2A481195C2B43F5461445B5928ED116EEBA578F8B0A04CB1936CD4048DAA5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 31a8e365-7e90-4796-a866-1812c69c2fcb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=360&$top=2101&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=362&$top=2099&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=364&$top=2097&$maxpagesize=2"}' + headers: + apim-request-id: 9007fb9c-2e81-4451-8bc5-38136e35c1ec + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:58 GMT + etag: '"038BF542048603E7FB7FBE67421544FAAF7702EBE40E257A0F81C1C27CDB7994"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9007fb9c-2e81-4451-8bc5-38136e35c1ec + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=362&$top=2099&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=364&$top=2097&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=366&$top=2095&$maxpagesize=2"}' + headers: + apim-request-id: 8fdeac8c-771f-4ff0-80b1-afda089a36e0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:58 GMT + etag: '"8904C27B3CFCAEB30D0AB4C549FB2507CE3747B57D096736CFABB95CA770718F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8fdeac8c-771f-4ff0-80b1-afda089a36e0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=364&$top=2097&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=366&$top=2095&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=368&$top=2093&$maxpagesize=2"}' + headers: + apim-request-id: d94565ee-6bbd-4fb8-97b5-74f405de9d95 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:58 GMT + etag: '"2507A9D3C287CAF0DD07EFA24EE95DAA22918C317784E52C5031F74D132A5247"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d94565ee-6bbd-4fb8-97b5-74f405de9d95 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=366&$top=2095&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=368&$top=2093&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=370&$top=2091&$maxpagesize=2"}' + headers: + apim-request-id: a5c2c2ac-43e9-4735-b0eb-d854515c7f90 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:58 GMT + etag: '"071FC731B89B9966DA15FDEF9DEFB657A9D05EF2E020C04785976742B9F12C7F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a5c2c2ac-43e9-4735-b0eb-d854515c7f90 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=368&$top=2093&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=370&$top=2091&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=372&$top=2089&$maxpagesize=2"}' + headers: + apim-request-id: 0ccda75a-89ca-49bc-b55c-2ca8b56d310d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:58 GMT + etag: '"80D0011DC137FECF079D7322EFDEE3A24A0AF24A264981DFB61044264CDF05AE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0ccda75a-89ca-49bc-b55c-2ca8b56d310d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=370&$top=2091&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=372&$top=2089&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=374&$top=2087&$maxpagesize=2"}' + headers: + apim-request-id: 31d4508b-0a4d-4d3c-9d7e-4d168063ef88 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:58 GMT + etag: '"579BBE5995A19EF5D4081D5FB3A7D952DE5BB0239ED0CA2F4DF97A45AB5EF5C5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 31d4508b-0a4d-4d3c-9d7e-4d168063ef88 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=372&$top=2089&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=374&$top=2087&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=376&$top=2085&$maxpagesize=2"}' + headers: + apim-request-id: 6eb49c41-5963-4dbf-a9f4-1e9b098cf9b0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:59 GMT + etag: '"70D8E414DAD206E49F26D47C6D9D5A838EFAD94AAE1A354FA0E7F20454DA48C9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6eb49c41-5963-4dbf-a9f4-1e9b098cf9b0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=374&$top=2087&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=376&$top=2085&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=378&$top=2083&$maxpagesize=2"}' + headers: + apim-request-id: a5b1330e-99e2-4550-b667-6b447ac359db + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:59 GMT + etag: '"9572EF50A793A2856D8FD57C131AEFC74679F61A2C3026405E605EDBF78370E0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a5b1330e-99e2-4550-b667-6b447ac359db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=376&$top=2085&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=378&$top=2083&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=380&$top=2081&$maxpagesize=2"}' + headers: + apim-request-id: f25a8b83-61ae-4d96-b642-a79ce1c88492 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:59 GMT + etag: '"20C5383BA4969A8E5485A643941C86B4E3C7AB8208DBDC2B342FC1EAF1EEFEE2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f25a8b83-61ae-4d96-b642-a79ce1c88492 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=378&$top=2083&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=380&$top=2081&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=382&$top=2079&$maxpagesize=2"}' + headers: + apim-request-id: 10864a7f-9c47-4b2d-9734-b0256ecbf11f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:59 GMT + etag: '"1CD5F6C02417855C35B0BB2EA73E9087FBF3C4D98BB04846CA720C98269D32EB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 10864a7f-9c47-4b2d-9734-b0256ecbf11f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=380&$top=2081&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=382&$top=2079&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=384&$top=2077&$maxpagesize=2"}' + headers: + apim-request-id: f2ccf1c9-1968-431c-97e6-25dc4ed44c6c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:59 GMT + etag: '"DCBB5C8B321B1C1F4831BA140F953C3F205335787901E3B57B9BBDBC50B9974F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f2ccf1c9-1968-431c-97e6-25dc4ed44c6c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=382&$top=2079&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=384&$top=2077&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=386&$top=2075&$maxpagesize=2"}' + headers: + apim-request-id: 0bea7da1-721a-4834-9833-1b7ce339db3c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 20:59:59 GMT + etag: '"A331DEDC957956A81F4ACB48289DF8EB8EA0F1D7AA6B818352B3493A20A19FEE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0bea7da1-721a-4834-9833-1b7ce339db3c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=384&$top=2077&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=386&$top=2075&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=388&$top=2073&$maxpagesize=2"}' + headers: + apim-request-id: 11519d36-291b-4ce9-afb7-d292185f6740 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:00 GMT + etag: '"602BEA0A7BAF2531901B836A771CB63807FFAB198F48B9CEF51623915C77C321"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 11519d36-291b-4ce9-afb7-d292185f6740 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=386&$top=2075&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=388&$top=2073&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=390&$top=2071&$maxpagesize=2"}' + headers: + apim-request-id: f9126e1b-65b5-49b7-a8df-a1e1c895b9b1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:00 GMT + etag: '"C9165131333C6A9DB977595114D04698C0F828A30C489B866BE268D099A7402F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f9126e1b-65b5-49b7-a8df-a1e1c895b9b1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=388&$top=2073&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=390&$top=2071&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=392&$top=2069&$maxpagesize=2"}' + headers: + apim-request-id: 7b7fe17b-0eed-445b-97e2-ebec2ed5baa2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:00 GMT + etag: '"4FB32B1CBA766C35D3AF8398948DAB723B80F5353D29519C765674DF2840911B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7b7fe17b-0eed-445b-97e2-ebec2ed5baa2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=390&$top=2071&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=392&$top=2069&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=394&$top=2067&$maxpagesize=2"}' + headers: + apim-request-id: de45f16e-5e8b-43f0-9b15-39844e4dc2cd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:00 GMT + etag: '"FFB2AC88AD7F31179B9C28A649D452C481EFB19924286C198262B948049FCD8F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: de45f16e-5e8b-43f0-9b15-39844e4dc2cd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=392&$top=2069&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=394&$top=2067&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=396&$top=2065&$maxpagesize=2"}' + headers: + apim-request-id: 48a3300c-9a51-4a43-b6f0-27846f306c51 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:00 GMT + etag: '"A0DA13FB206043151BFB7C4FE052A2F5C8E4BEA68DB720CC7B702DFDCD0B064F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 48a3300c-9a51-4a43-b6f0-27846f306c51 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=394&$top=2067&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=396&$top=2065&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=398&$top=2063&$maxpagesize=2"}' + headers: + apim-request-id: 1c4aac85-c252-4e6c-a90b-94087efae8b0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:00 GMT + etag: '"F90575E3FB03A1D764A26806DB8155EB6B4671F3723F8199E77608B5B23C093D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1c4aac85-c252-4e6c-a90b-94087efae8b0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=396&$top=2065&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=398&$top=2063&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2061&$maxpagesize=2"}' + headers: + apim-request-id: 90327fd3-7692-4d24-921c-3af90c9419f3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:01 GMT + etag: '"2A543EB15AF9893F98E1CDA86456F3E44742EF446E46F6A2F34168F00809BE38"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 90327fd3-7692-4d24-921c-3af90c9419f3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=398&$top=2063&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2061&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=402&$top=2059&$maxpagesize=2"}' + headers: + apim-request-id: 17738139-0336-41e1-b9b4-a1d5ba6d113a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:01 GMT + etag: '"77BF0E818ABCC1D7939C6CEEF1E5B2DDA9915C2DDFF68BE2248960BD5C13D125"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 17738139-0336-41e1-b9b4-a1d5ba6d113a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=400&$top=2061&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=402&$top=2059&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=404&$top=2057&$maxpagesize=2"}' + headers: + apim-request-id: 38be1857-2108-473e-ba48-0f5c9f360e54 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:01 GMT + etag: '"6E32B7822D5BA53D0216C1AC1EB0F3C61F70C0A4436188D089C12A97F2B2E71E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 38be1857-2108-473e-ba48-0f5c9f360e54 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=402&$top=2059&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=404&$top=2057&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=406&$top=2055&$maxpagesize=2"}' + headers: + apim-request-id: 9c9db1bc-7384-461b-9c45-4a57aab477a2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:01 GMT + etag: '"5C499335400918E3BFA0525E392AAF6CBF219CCC8FC03FF19FAC63B650F8D442"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9c9db1bc-7384-461b-9c45-4a57aab477a2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=404&$top=2057&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=406&$top=2055&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=408&$top=2053&$maxpagesize=2"}' + headers: + apim-request-id: bfde5517-1fd0-4e22-a822-0b741f568ded + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:01 GMT + etag: '"A008A97E7C3ECA3DC6C02FA49B2EA361EBD38A340886524F0D35FD1B3E32E091"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bfde5517-1fd0-4e22-a822-0b741f568ded + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=406&$top=2055&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=408&$top=2053&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=410&$top=2051&$maxpagesize=2"}' + headers: + apim-request-id: 4d35b94f-eb87-4800-a5eb-ebcdc51f9e74 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:01 GMT + etag: '"400C085B81FC6C745B1F62F363EE0EB740C307F4267E7D138381E9C4EDBCBEFB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4d35b94f-eb87-4800-a5eb-ebcdc51f9e74 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=408&$top=2053&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=410&$top=2051&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=412&$top=2049&$maxpagesize=2"}' + headers: + apim-request-id: 0928e644-b703-45e8-aee5-f801f734958a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:02 GMT + etag: '"306793D827CC9054379A515549EB4BDDF54204151E26B4260B7C6A865E842420"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0928e644-b703-45e8-aee5-f801f734958a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=410&$top=2051&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=412&$top=2049&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=414&$top=2047&$maxpagesize=2"}' + headers: + apim-request-id: 1acf1f08-c9be-4eb4-b30b-6a9bfb2370cd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:02 GMT + etag: '"0BCF62CAED0ABF8DBAA60C73BAC387C9036EC3D5A7167B9AB5779F6579FA69D6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1acf1f08-c9be-4eb4-b30b-6a9bfb2370cd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=412&$top=2049&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=414&$top=2047&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=416&$top=2045&$maxpagesize=2"}' + headers: + apim-request-id: 226b4a05-b858-48b4-aeb4-264f9486bdb1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:02 GMT + etag: '"37DB636808F15289CB7C518E969C2E9A96BBA141660ACF5496366576234E9955"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 226b4a05-b858-48b4-aeb4-264f9486bdb1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=414&$top=2047&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=416&$top=2045&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=418&$top=2043&$maxpagesize=2"}' + headers: + apim-request-id: 027df295-f521-4d14-8d38-df5b612cd77a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:02 GMT + etag: '"B61AC99E11AF89144D6ABCA9E33EB01B8CCE42D321363744B2F56E7DB805B6CF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 027df295-f521-4d14-8d38-df5b612cd77a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=416&$top=2045&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=418&$top=2043&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=420&$top=2041&$maxpagesize=2"}' + headers: + apim-request-id: 9a022184-e109-456a-96a5-429501e667b1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:02 GMT + etag: '"D581825AECD51AF4818E5D0FDEF6205C4893CB638A1AEDD4E7D92F5DED03BE82"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9a022184-e109-456a-96a5-429501e667b1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=418&$top=2043&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=420&$top=2041&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=422&$top=2039&$maxpagesize=2"}' + headers: + apim-request-id: 8eed460a-b648-4250-a7ed-a07cd1dd12d9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:02 GMT + etag: '"FFCB6EB4B20C31D1E263718C3CAE40D8F4AB2124AB78DF15A7834A018666B907"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8eed460a-b648-4250-a7ed-a07cd1dd12d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=420&$top=2041&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=422&$top=2039&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=424&$top=2037&$maxpagesize=2"}' + headers: + apim-request-id: c054e0a4-c855-4479-b327-1d27e416d420 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:03 GMT + etag: '"063B7282E804BABDA21EC9DAA5D515D7A27F8BBF954854C6152C8E06117AEBDA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c054e0a4-c855-4479-b327-1d27e416d420 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=422&$top=2039&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=424&$top=2037&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=426&$top=2035&$maxpagesize=2"}' + headers: + apim-request-id: 91ed3dca-583b-4b42-8304-33fda0337f1f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:03 GMT + etag: '"F94B226D51C5F0E3C4CE379A22C94C06FA9A43D9ECFD3F5BFF28D78A39D97F82"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 91ed3dca-583b-4b42-8304-33fda0337f1f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=424&$top=2037&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=426&$top=2035&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=428&$top=2033&$maxpagesize=2"}' + headers: + apim-request-id: b3b3f97e-fb43-480e-8fb6-4691c150610a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:03 GMT + etag: '"C7A9C21FE265F7806696E879DA4B0CDBEE5D93190AA724D167082E0B9375266D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b3b3f97e-fb43-480e-8fb6-4691c150610a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=426&$top=2035&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=428&$top=2033&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=430&$top=2031&$maxpagesize=2"}' + headers: + apim-request-id: 5e8ea12b-f919-4224-9cfd-def1f458a831 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:03 GMT + etag: '"E22CC23E5F3D42FE316145BA673D1B0EDBC765FFEA55568F60324C70F5DCA384"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5e8ea12b-f919-4224-9cfd-def1f458a831 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=428&$top=2033&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=430&$top=2031&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=432&$top=2029&$maxpagesize=2"}' + headers: + apim-request-id: f896dea9-bd22-49f4-ac63-67951bdc4b0f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:03 GMT + etag: '"8D0E5F3FDDEADEB496899B2BFD60EF2CDE4A2A2128B53FA92D207E6DEBBCF01E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f896dea9-bd22-49f4-ac63-67951bdc4b0f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=430&$top=2031&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=432&$top=2029&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=434&$top=2027&$maxpagesize=2"}' + headers: + apim-request-id: 80a10a9c-3e92-425f-ae76-f10c792f8c53 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:03 GMT + etag: '"25014F3B11A08C3A194A3D584AC5080B452BD2E246AA0E1E97C102B0EDE59898"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 80a10a9c-3e92-425f-ae76-f10c792f8c53 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=432&$top=2029&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=434&$top=2027&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=436&$top=2025&$maxpagesize=2"}' + headers: + apim-request-id: c9791710-e813-43c5-93f7-5250e6333c29 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:03 GMT + etag: '"39FCCA6BD106044EF58924EE133DD14DE26F5606DDE5D4E79B1865B16759BB5B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c9791710-e813-43c5-93f7-5250e6333c29 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=434&$top=2027&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=436&$top=2025&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=438&$top=2023&$maxpagesize=2"}' + headers: + apim-request-id: 475dead4-e0f5-4ddd-b004-43837eda5995 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:04 GMT + etag: '"B879A1C328E6F3B096F98F1F8C22DE5F950A9236E971D3EE43053BC3BADD155F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 475dead4-e0f5-4ddd-b004-43837eda5995 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=436&$top=2025&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=438&$top=2023&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=440&$top=2021&$maxpagesize=2"}' + headers: + apim-request-id: be47b454-f2da-404a-b104-3f6efe57e1ca + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:04 GMT + etag: '"627B75B706EEE365B32D161420CD5D5B91202CA0D0AFFE2EDEB8C8FFE390A6B5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: be47b454-f2da-404a-b104-3f6efe57e1ca + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=438&$top=2023&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=440&$top=2021&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=442&$top=2019&$maxpagesize=2"}' + headers: + apim-request-id: 5df37a95-6ccf-4f80-8ed1-b5c46d9fb4b2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:04 GMT + etag: '"848EC8032A7AF08F910BC84FF38AF759053FC3F681529D3F4CC9F2868ED61CD6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5df37a95-6ccf-4f80-8ed1-b5c46d9fb4b2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=440&$top=2021&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=442&$top=2019&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=444&$top=2017&$maxpagesize=2"}' + headers: + apim-request-id: e780b483-07fc-4c26-965f-36c6330d8983 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:04 GMT + etag: '"44E55E68669429E4C1800B583B49D2CD553EA34881A0790CDBD9718AF9AE22BF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e780b483-07fc-4c26-965f-36c6330d8983 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=442&$top=2019&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=444&$top=2017&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=446&$top=2015&$maxpagesize=2"}' + headers: + apim-request-id: 26374328-9f69-4407-91c2-bc4c67f9b51c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:04 GMT + etag: '"84E0B33A9B867755D52A0D0D3385B93A0696595672DC6127FD519F41B42C3277"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 26374328-9f69-4407-91c2-bc4c67f9b51c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=444&$top=2017&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=446&$top=2015&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=448&$top=2013&$maxpagesize=2"}' + headers: + apim-request-id: d0a5b7b5-e82a-45e6-baf9-a6f996bbddb2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:04 GMT + etag: '"8BD5F23A3A25F7B0DCA063BBDA788998814B62D701BCDE8CAD58229F02FD2714"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d0a5b7b5-e82a-45e6-baf9-a6f996bbddb2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=446&$top=2015&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=448&$top=2013&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=2011&$maxpagesize=2"}' + headers: + apim-request-id: 17e4f999-a146-4ab3-bc78-4613a3bf15e7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:05 GMT + etag: '"08321F6C40E3536AAB46A23A5EAE7C5439A7657B1C1F927BCDF10C3280D85974"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 17e4f999-a146-4ab3-bc78-4613a3bf15e7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=448&$top=2013&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=2011&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=452&$top=2009&$maxpagesize=2"}' + headers: + apim-request-id: 20599cd2-4abc-4ffc-bede-b47d7fa3eb94 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:05 GMT + etag: '"10995B0D667B7B6C004AB48EC7F41C217332DC166447A823F9DFDFEB9DA7067A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 20599cd2-4abc-4ffc-bede-b47d7fa3eb94 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=450&$top=2011&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=452&$top=2009&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=454&$top=2007&$maxpagesize=2"}' + headers: + apim-request-id: 7cbe27f9-18ad-4ae0-a4c4-ba7d1bf3a89c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:05 GMT + etag: '"1E5355C299E28ED5250B7E98BF60DD044CC69A54A9C33D54DC966ECB7C27E312"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7cbe27f9-18ad-4ae0-a4c4-ba7d1bf3a89c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=452&$top=2009&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=454&$top=2007&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=456&$top=2005&$maxpagesize=2"}' + headers: + apim-request-id: 55c04302-ddcb-4508-8073-edbe7ca428c4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:05 GMT + etag: '"3C45B1C404825CE836D7A2D4A5CAE312F484430D915FC71A906712289E1DE054"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 55c04302-ddcb-4508-8073-edbe7ca428c4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=454&$top=2007&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=456&$top=2005&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=458&$top=2003&$maxpagesize=2"}' + headers: + apim-request-id: 32a3e09f-976c-4df7-a6fa-9a0679e51fe7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:05 GMT + etag: '"4E2B9C491E49773B754F2388570F8CCAD35E9C6B69B43FF693E6B59A2CF0BF6B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 32a3e09f-976c-4df7-a6fa-9a0679e51fe7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=456&$top=2005&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=458&$top=2003&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=460&$top=2001&$maxpagesize=2"}' + headers: + apim-request-id: c86c9c8a-562a-403f-a2b9-d13ebd78dc11 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:05 GMT + etag: '"C5618062A76DD1925497F7A248781F6FA2A810FEC4BFC15521436032B2B90920"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c86c9c8a-562a-403f-a2b9-d13ebd78dc11 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=458&$top=2003&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=460&$top=2001&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=462&$top=1999&$maxpagesize=2"}' + headers: + apim-request-id: e3fa07fe-6e77-4d95-a014-1faa922273fa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:06 GMT + etag: '"D1BFA6EB0EFE6FF14EFD6296BF45707021F86098E85BD18EAFC94E299E9BC9AA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e3fa07fe-6e77-4d95-a014-1faa922273fa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=460&$top=2001&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=462&$top=1999&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=464&$top=1997&$maxpagesize=2"}' + headers: + apim-request-id: 2dcf3e90-def1-4786-81f7-10f5bf7aebc6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:06 GMT + etag: '"E4E543233879AC9CA348BF8CCFD8B0D0CB85BD7EDBED1394F2EFDF2D927D989C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2dcf3e90-def1-4786-81f7-10f5bf7aebc6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=462&$top=1999&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=464&$top=1997&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=466&$top=1995&$maxpagesize=2"}' + headers: + apim-request-id: 07dc5cc5-ff0c-4f18-9e4f-c8a8dcc06919 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:06 GMT + etag: '"6AFABE7264F49DA99C4172FF11218DB3D5103452D400F5FB47735E82562E4527"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 07dc5cc5-ff0c-4f18-9e4f-c8a8dcc06919 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=464&$top=1997&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=466&$top=1995&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=468&$top=1993&$maxpagesize=2"}' + headers: + apim-request-id: 3c2f3801-81ec-48cf-acb2-446238b0dac7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:06 GMT + etag: '"5DFE9E29AD1BC63D597D007FC574BDAA47E52C51D13425BF0CE88C58567F3EBA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3c2f3801-81ec-48cf-acb2-446238b0dac7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=466&$top=1995&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=468&$top=1993&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=470&$top=1991&$maxpagesize=2"}' + headers: + apim-request-id: de673298-c075-4f74-8612-bc0c9547e1bd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:06 GMT + etag: '"2C14F4C11C36B47F832C277561703B55CA8D739EBBEAFC27DBCAD88B52B70915"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: de673298-c075-4f74-8612-bc0c9547e1bd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=468&$top=1993&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=470&$top=1991&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=472&$top=1989&$maxpagesize=2"}' + headers: + apim-request-id: 295962e9-67ab-4074-bedf-a2f1ebac6b2e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:06 GMT + etag: '"66BC47FE614096B02A276BA90306E10DD612E2E4FD150E5DCBDF792E9F14D103"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 295962e9-67ab-4074-bedf-a2f1ebac6b2e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=470&$top=1991&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=472&$top=1989&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=474&$top=1987&$maxpagesize=2"}' + headers: + apim-request-id: 3a4d5158-e105-4a8c-837c-e0b208e83385 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:07 GMT + etag: '"F3300174104CD494D7DC47F5655BB8C218D962A46F820C00E5EABA33EFF98547"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3a4d5158-e105-4a8c-837c-e0b208e83385 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=472&$top=1989&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=474&$top=1987&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=476&$top=1985&$maxpagesize=2"}' + headers: + apim-request-id: 8e648de6-db94-41d5-afc4-384fa348b09c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:07 GMT + etag: '"2D19429C22155480A657095290A21A353A4538EE37EBA9F06DB56B6C6ECB37D8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8e648de6-db94-41d5-afc4-384fa348b09c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=474&$top=1987&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=476&$top=1985&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=478&$top=1983&$maxpagesize=2"}' + headers: + apim-request-id: 7f2d269d-ffd6-43f4-a45a-49bc9c7fe798 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:07 GMT + etag: '"3236117DBE16E1058799C545D726C1D75E7579510617C59919BA46B9BD299686"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7f2d269d-ffd6-43f4-a45a-49bc9c7fe798 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=476&$top=1985&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=478&$top=1983&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=480&$top=1981&$maxpagesize=2"}' + headers: + apim-request-id: 80387eec-4165-4db8-8086-d8e1584508b9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:07 GMT + etag: '"E446584EBD8C3180D6754AECB0999458ECDC0B5C0CF4CFEA8F21394E8D003B05"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 80387eec-4165-4db8-8086-d8e1584508b9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=478&$top=1983&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=480&$top=1981&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=482&$top=1979&$maxpagesize=2"}' + headers: + apim-request-id: 63ab9cc1-8c75-495a-88d0-f5d4a5ab7eb0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:07 GMT + etag: '"F56B342EB22C8CF57582013C6999B802F532012A88F26CAD2FAC602F5C4EA7AE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 63ab9cc1-8c75-495a-88d0-f5d4a5ab7eb0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=480&$top=1981&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=482&$top=1979&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=484&$top=1977&$maxpagesize=2"}' + headers: + apim-request-id: 3890c9bd-df0a-47a0-abd9-c54940c9ffc8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:07 GMT + etag: '"F8D4DFA80164C1CF96A578B2F082485075DD60391B97AAA510B9A94D4595CA6C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3890c9bd-df0a-47a0-abd9-c54940c9ffc8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=482&$top=1979&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=484&$top=1977&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=486&$top=1975&$maxpagesize=2"}' + headers: + apim-request-id: 61df0a79-15eb-4c17-9e74-a277e125f13a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:08 GMT + etag: '"B2D6226F3F8BCFA3ACFD56ABEE7926303BE380B0632D2B130CD342440BDC5132"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 61df0a79-15eb-4c17-9e74-a277e125f13a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=484&$top=1977&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=486&$top=1975&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=488&$top=1973&$maxpagesize=2"}' + headers: + apim-request-id: ae8849e5-2fa8-48e6-b409-5908f5b673be + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:08 GMT + etag: '"AD6F5E7D6BB6C18365970A9E9394C900AA2FEB647B6D1EA2E8F1D5486777183E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ae8849e5-2fa8-48e6-b409-5908f5b673be + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=486&$top=1975&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=488&$top=1973&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=490&$top=1971&$maxpagesize=2"}' + headers: + apim-request-id: a49c1b5f-d0ff-4a47-b3c3-e8296659ed1b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:08 GMT + etag: '"F869EE77958664853B6A99719875ECD3D2E86D2A0B10BB36B3A45E798C0A7C06"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a49c1b5f-d0ff-4a47-b3c3-e8296659ed1b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=488&$top=1973&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=490&$top=1971&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=492&$top=1969&$maxpagesize=2"}' + headers: + apim-request-id: 446b9635-78e5-44d1-979f-8df75fa3b613 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:08 GMT + etag: '"1D92A31143495595C3C35FD7B89DCE406592D6080710EC5B9D1AFD531E101540"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 446b9635-78e5-44d1-979f-8df75fa3b613 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=490&$top=1971&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=492&$top=1969&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=494&$top=1967&$maxpagesize=2"}' + headers: + apim-request-id: 328d9471-cce4-42bf-a14d-c1e9a2c9b0b5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:08 GMT + etag: '"D72DEEB3D2D5389633EF3A8263528E579C200DA5A6DEE7CF2120611D61B773F6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 328d9471-cce4-42bf-a14d-c1e9a2c9b0b5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=492&$top=1969&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=494&$top=1967&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=496&$top=1965&$maxpagesize=2"}' + headers: + apim-request-id: 28ee6807-bbb8-462f-b717-495c3d58032c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:08 GMT + etag: '"4170ED8371CA5BCB56C68D71CE7B079E9A32A2A4CDCE7339141D247DED378DED"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 28ee6807-bbb8-462f-b717-495c3d58032c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=494&$top=1967&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=496&$top=1965&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=498&$top=1963&$maxpagesize=2"}' + headers: + apim-request-id: 0ac99ee5-fdcb-4239-9271-707f04bd4086 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:09 GMT + etag: '"7BD594B4340409946782D36A4DCC2F3294EF98C6BBD97712A92C14140C9B3A1E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0ac99ee5-fdcb-4239-9271-707f04bd4086 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=496&$top=1965&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=498&$top=1963&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1961&$maxpagesize=2"}' + headers: + apim-request-id: e38c8734-ff31-49ec-8973-42ab10eab430 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:09 GMT + etag: '"2D26BF552DE338111DCC0168A4EE63C53C645A6F24195F1313DA9BE806ED24AD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e38c8734-ff31-49ec-8973-42ab10eab430 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=498&$top=1963&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1961&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=502&$top=1959&$maxpagesize=2"}' + headers: + apim-request-id: 8f9211b5-fc33-4930-ba2d-f8afbc0bdd67 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:09 GMT + etag: '"3661DFD3F46E4A17603094EFF222AF340B170D1566BA933192CF853CF22916BD"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8f9211b5-fc33-4930-ba2d-f8afbc0bdd67 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=500&$top=1961&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=502&$top=1959&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=504&$top=1957&$maxpagesize=2"}' + headers: + apim-request-id: eda03e36-7140-4dc3-a133-518dcfd15c7a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:09 GMT + etag: '"DFBE4D842A9F55A12D9BB1D762133F50E147DF0C4F7DB18390D5AD84EB15C2DC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eda03e36-7140-4dc3-a133-518dcfd15c7a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=502&$top=1959&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=504&$top=1957&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=506&$top=1955&$maxpagesize=2"}' + headers: + apim-request-id: e32f9a49-8dc6-4246-b3e0-9478d24baa55 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:09 GMT + etag: '"E6E1DDED0ED171C2A3FA0FC76B56D67AFED548C9D85D57D9C2DB92BF121EC17B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e32f9a49-8dc6-4246-b3e0-9478d24baa55 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=504&$top=1957&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=506&$top=1955&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=508&$top=1953&$maxpagesize=2"}' + headers: + apim-request-id: fe4735ac-6858-4dd2-ad86-5c2e9c59b180 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:09 GMT + etag: '"DFC4282E78B4C85931CE5DBB4845AC74DAA728CDC41A364A57011644F0AF1E17"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fe4735ac-6858-4dd2-ad86-5c2e9c59b180 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=506&$top=1955&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=508&$top=1953&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=510&$top=1951&$maxpagesize=2"}' + headers: + apim-request-id: 8cd0b72f-ad07-43c2-a422-fc6a78dec792 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:10 GMT + etag: '"568CB37D2E1004968F6F7661D91879BA78B371EB368161943E8AD7CBDE7C9447"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8cd0b72f-ad07-43c2-a422-fc6a78dec792 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=508&$top=1953&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=510&$top=1951&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=512&$top=1949&$maxpagesize=2"}' + headers: + apim-request-id: e1f7b141-275f-4c99-96b5-241f3f5217ef + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:10 GMT + etag: '"4D98BF1759EC0A883329B17DE6C1E26DB31FBF923EC4FF2D9D9D140BB52FB843"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e1f7b141-275f-4c99-96b5-241f3f5217ef + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=510&$top=1951&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=512&$top=1949&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=514&$top=1947&$maxpagesize=2"}' + headers: + apim-request-id: c69ff479-aa3c-45d6-9616-7c50f3e20094 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:10 GMT + etag: '"DEED20019A6FF6BDFE150825271531612CB42DE1B9784165112D6B369F2EAE01"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c69ff479-aa3c-45d6-9616-7c50f3e20094 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=512&$top=1949&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=514&$top=1947&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=516&$top=1945&$maxpagesize=2"}' + headers: + apim-request-id: bfa02535-a308-4cd5-a3c3-960fd8a31ce6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:10 GMT + etag: '"FA2C88EB8103DF2B623712706344CB1977650D312D891F53E1B71A5AE96D441E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bfa02535-a308-4cd5-a3c3-960fd8a31ce6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=514&$top=1947&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=516&$top=1945&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=518&$top=1943&$maxpagesize=2"}' + headers: + apim-request-id: e870d4c2-1e3e-421f-afcb-0e8a670d6b84 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:10 GMT + etag: '"E3E65C9C2B7CCAF79FEB3899B64BBA7152FF9F82CBEBD8D0DC65532C5DFCF00B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e870d4c2-1e3e-421f-afcb-0e8a670d6b84 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=516&$top=1945&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=518&$top=1943&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=520&$top=1941&$maxpagesize=2"}' + headers: + apim-request-id: cfd69a5b-a9c3-401c-a86e-7bf1f57fe206 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:10 GMT + etag: '"B0942BE2083C19A5621697BE100DF6B74F3F7203E6F7A555C938601F384CD278"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cfd69a5b-a9c3-401c-a86e-7bf1f57fe206 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=518&$top=1943&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=520&$top=1941&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=522&$top=1939&$maxpagesize=2"}' + headers: + apim-request-id: fcee7f4e-6f5c-4e7a-930b-44e60bc018f9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:11 GMT + etag: '"8633E4924C911FA487D22885003522F6430E7D0A76CEA1F13943DD3DF12D8574"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fcee7f4e-6f5c-4e7a-930b-44e60bc018f9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=520&$top=1941&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=522&$top=1939&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=524&$top=1937&$maxpagesize=2"}' + headers: + apim-request-id: 6e5572a4-6551-4c79-b189-1328909fd9e9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:11 GMT + etag: '"8D0381F1CC8EC67975449798F3524F395F9CE104022EA8291F29A3435B61A8EA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6e5572a4-6551-4c79-b189-1328909fd9e9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=522&$top=1939&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=524&$top=1937&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=526&$top=1935&$maxpagesize=2"}' + headers: + apim-request-id: 17088c04-5b2f-4469-8a7f-834395f98855 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:11 GMT + etag: '"8AB35743272D133FA33365CFACA6880912F712D8C266A26A511FD41C243CDDB2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 17088c04-5b2f-4469-8a7f-834395f98855 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=524&$top=1937&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=526&$top=1935&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=528&$top=1933&$maxpagesize=2"}' + headers: + apim-request-id: 9ee8e6cf-7cb0-49db-85b5-dad656e702d1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:11 GMT + etag: '"E679FA6FF11D91CEBA82CE6D91B07A57F65EA65DDCCB5BC47A451147CEC49C55"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9ee8e6cf-7cb0-49db-85b5-dad656e702d1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=526&$top=1935&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=528&$top=1933&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=530&$top=1931&$maxpagesize=2"}' + headers: + apim-request-id: b9c3e549-2085-46a8-91a0-736de5314fb8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:11 GMT + etag: '"8AEE0D861B1B06AEF3D8B0ED755CD207940514365EE02460A80BF2E3206B9470"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b9c3e549-2085-46a8-91a0-736de5314fb8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=528&$top=1933&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=530&$top=1931&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=532&$top=1929&$maxpagesize=2"}' + headers: + apim-request-id: 82f20a58-bbb8-41a8-9845-d6c6a11db0bc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:11 GMT + etag: '"F481001FF1745B559DD35E48E318C24783F90DD2B6DAE8655D3594BB2A322385"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 82f20a58-bbb8-41a8-9845-d6c6a11db0bc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=530&$top=1931&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=532&$top=1929&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=534&$top=1927&$maxpagesize=2"}' + headers: + apim-request-id: 2147c0ff-96e7-4896-bafb-30d0abbafbdd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:12 GMT + etag: '"262BED983AFB791FD5A901715C82E1D80E6792B045D73BDE6E07F1D6D541F867"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2147c0ff-96e7-4896-bafb-30d0abbafbdd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=532&$top=1929&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=534&$top=1927&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=536&$top=1925&$maxpagesize=2"}' + headers: + apim-request-id: 277ed9e7-d2e6-47e6-8c65-51e206b71e61 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:12 GMT + etag: '"CBDF54AFA5CFF27C1987870714B618DD9499B89DED06AD4903D58623AD06565A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 277ed9e7-d2e6-47e6-8c65-51e206b71e61 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=534&$top=1927&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=536&$top=1925&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=538&$top=1923&$maxpagesize=2"}' + headers: + apim-request-id: 2f6f1761-836d-4435-8c88-979c6aac3926 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:12 GMT + etag: '"73591A0DEF8BF4C23549C4277A1C63D76F0EFE7795C1A238FEE1C5E87B0C1AE6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2f6f1761-836d-4435-8c88-979c6aac3926 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=536&$top=1925&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=538&$top=1923&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=540&$top=1921&$maxpagesize=2"}' + headers: + apim-request-id: 373fdd73-b448-45db-b945-7bb413fd2aac + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:12 GMT + etag: '"0EEE385251778130665DFD49B0D71A4866E27EB25A1B9819E091913AEBCF1EA3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 373fdd73-b448-45db-b945-7bb413fd2aac + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=538&$top=1923&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=540&$top=1921&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=542&$top=1919&$maxpagesize=2"}' + headers: + apim-request-id: b81388b1-7f4d-439a-80fc-0799bcf0f9c6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:12 GMT + etag: '"4DB6101F903CDE556CEF0BCE9BCD5D9EE0EB09DAB6AEC9D38CD13BCF06149785"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b81388b1-7f4d-439a-80fc-0799bcf0f9c6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=540&$top=1921&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=542&$top=1919&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=544&$top=1917&$maxpagesize=2"}' + headers: + apim-request-id: 008fca41-e237-4f02-8101-3580c9b88e16 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:12 GMT + etag: '"AB07978F0B926BE3328922823835659E383BAFB9DED3D626CD13E42B1D3950B1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 008fca41-e237-4f02-8101-3580c9b88e16 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=542&$top=1919&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=544&$top=1917&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=546&$top=1915&$maxpagesize=2"}' + headers: + apim-request-id: b47e55ad-172e-48f4-82fd-be0f4afee429 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:13 GMT + etag: '"85B6681DCEC72688211488601060E844F1264F9C84A1DC4AB77E7461087A6DD3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b47e55ad-172e-48f4-82fd-be0f4afee429 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=544&$top=1917&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=546&$top=1915&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=548&$top=1913&$maxpagesize=2"}' + headers: + apim-request-id: 65fb8c5b-934e-427a-9125-01f52118aade + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:13 GMT + etag: '"8354F03C7FC19FA74341C29BDD1EC3B00AFE49A5434CEBA6D158001BC55440A0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 65fb8c5b-934e-427a-9125-01f52118aade + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=546&$top=1915&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=548&$top=1913&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1911&$maxpagesize=2"}' + headers: + apim-request-id: e3ea37a5-3273-4647-9399-c2f2de34ca04 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:13 GMT + etag: '"3214CF277B919E2B4F438BFDDB4AD62634A3514267FFB87B95DCFA6F39CDEF8D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e3ea37a5-3273-4647-9399-c2f2de34ca04 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=548&$top=1913&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1911&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=552&$top=1909&$maxpagesize=2"}' + headers: + apim-request-id: 05e93d7f-6e96-4f6e-9226-366f7e04d8aa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:13 GMT + etag: '"6E4E8B252235D4F2B5E2212F66F23B2524F5B739BC5B630D2835201BE9BDD9BD"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 05e93d7f-6e96-4f6e-9226-366f7e04d8aa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=550&$top=1911&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=552&$top=1909&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=554&$top=1907&$maxpagesize=2"}' + headers: + apim-request-id: d0a266be-6174-4507-af62-2f7f21b2a61c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:13 GMT + etag: '"8D5B39AD10DD036A25056D4A1F840349809878442DEBACBC2BB28EE742842D5A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d0a266be-6174-4507-af62-2f7f21b2a61c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=552&$top=1909&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=554&$top=1907&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=556&$top=1905&$maxpagesize=2"}' + headers: + apim-request-id: c45522cb-861a-4541-9038-28e52aa55042 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:13 GMT + etag: '"66F065D4BA95740A0B6ACF0C0BD04AE0BDC2B1BDE6A0CE2F9F612B81E93A1E4B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c45522cb-861a-4541-9038-28e52aa55042 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=554&$top=1907&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=556&$top=1905&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=558&$top=1903&$maxpagesize=2"}' + headers: + apim-request-id: e546b79f-508b-4785-b9b9-5ce245f43e68 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:14 GMT + etag: '"B005CD7858947B16D9BBADDDFE77B1E80A9D0FDB3C60FBC5D6E2A55DA0E1C10E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e546b79f-508b-4785-b9b9-5ce245f43e68 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=556&$top=1905&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=558&$top=1903&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=560&$top=1901&$maxpagesize=2"}' + headers: + apim-request-id: f954930a-1ed2-44e0-af47-107dee2bcb2d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:14 GMT + etag: '"D95131270C74DA75D857007C6CC66B13BD1F268F09F9959CA2B3EBD60B5D88C5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f954930a-1ed2-44e0-af47-107dee2bcb2d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=558&$top=1903&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=560&$top=1901&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=562&$top=1899&$maxpagesize=2"}' + headers: + apim-request-id: 8b09cd6c-238b-44af-8004-13aa2ceaf0f6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:14 GMT + etag: '"F10B5A1A51D1E4A7C127DD11289D1B2E7BD93C2385F928E5C358C33E729A2FBA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8b09cd6c-238b-44af-8004-13aa2ceaf0f6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=560&$top=1901&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=562&$top=1899&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=564&$top=1897&$maxpagesize=2"}' + headers: + apim-request-id: 1594a9f0-489c-41ff-b5a0-401a00be8662 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:14 GMT + etag: '"3BFD345015EA00CB0A78203364AA1A459079601EB2E3E03822219954A59A89CB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1594a9f0-489c-41ff-b5a0-401a00be8662 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=562&$top=1899&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=564&$top=1897&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=566&$top=1895&$maxpagesize=2"}' + headers: + apim-request-id: e8847d18-1457-4c16-bd16-9f5721ac619a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:14 GMT + etag: '"91013AA3CCA95D5792F3344CA1A8AA5D12E46044096A14995CC88575717A519D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e8847d18-1457-4c16-bd16-9f5721ac619a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=564&$top=1897&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=566&$top=1895&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=568&$top=1893&$maxpagesize=2"}' + headers: + apim-request-id: 90b8ca91-a52f-4a53-8ecf-3b28d6a6eefb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:14 GMT + etag: '"B9C7C2340B585C194C96EE68CBD7286FAE1299F167796A2CD0FCD9DC85835685"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 90b8ca91-a52f-4a53-8ecf-3b28d6a6eefb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=566&$top=1895&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=568&$top=1893&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=570&$top=1891&$maxpagesize=2"}' + headers: + apim-request-id: b99c765b-1549-49ac-a31f-4a1530bf7d6c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:15 GMT + etag: '"4FE6B28013727F240E5AC4A8DE51405A2D995F063EA4BB3E24341562FA30D052"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b99c765b-1549-49ac-a31f-4a1530bf7d6c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=568&$top=1893&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=570&$top=1891&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=572&$top=1889&$maxpagesize=2"}' + headers: + apim-request-id: d21d270f-432a-4dd9-a6c6-b1f04eed8ff7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:15 GMT + etag: '"AD67F12841CB79564A728817577D2C919EC4EF0FF5F2F2F29C9C816C21B266B3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d21d270f-432a-4dd9-a6c6-b1f04eed8ff7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=570&$top=1891&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=572&$top=1889&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=574&$top=1887&$maxpagesize=2"}' + headers: + apim-request-id: 70855cab-2512-40fd-bc5b-968c7a95530e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:15 GMT + etag: '"5FED4C2D259FEF518EEFFBC8835392ADA54423CF17BE2BB38B2E701E0E1FE72A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 70855cab-2512-40fd-bc5b-968c7a95530e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=572&$top=1889&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=574&$top=1887&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=576&$top=1885&$maxpagesize=2"}' + headers: + apim-request-id: 8a52934f-fcca-41a4-b51d-02b40db1b7aa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:15 GMT + etag: '"CDBBB7F05BEB608A780ABE2EF0A08664910B29BB3C9E0D2857DF33E8AF405CF5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8a52934f-fcca-41a4-b51d-02b40db1b7aa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=574&$top=1887&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=576&$top=1885&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=578&$top=1883&$maxpagesize=2"}' + headers: + apim-request-id: ba438887-6a90-497e-a63e-7c926a790d59 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:15 GMT + etag: '"3D094B4218A43DE2650A8F60525E38BE5785C145E9F660A8B9FDE3AC1A5623CA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ba438887-6a90-497e-a63e-7c926a790d59 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=576&$top=1885&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=578&$top=1883&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=580&$top=1881&$maxpagesize=2"}' + headers: + apim-request-id: d404c921-3b03-46d5-9bff-0d1234fbe420 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:15 GMT + etag: '"E5750333B694138C38BA06FCC261C7D5A18ABCDD8274A58BBEE8878674D1403C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d404c921-3b03-46d5-9bff-0d1234fbe420 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=578&$top=1883&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=580&$top=1881&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=582&$top=1879&$maxpagesize=2"}' + headers: + apim-request-id: 492ecaad-475f-4ef9-b32e-728680922cda + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:16 GMT + etag: '"6A5F64E55BBAAA9A39C72E54ACB7765180290698D339D2DA5902891BF883989A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 492ecaad-475f-4ef9-b32e-728680922cda + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=580&$top=1881&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=582&$top=1879&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=584&$top=1877&$maxpagesize=2"}' + headers: + apim-request-id: f5c0959a-e0b0-47ab-88a2-20cf82678da9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:16 GMT + etag: '"CB7B85DA6C41FD12CA41BA11CE78FC08DE240553E66E429EE849B1E0B017620B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f5c0959a-e0b0-47ab-88a2-20cf82678da9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=582&$top=1879&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=584&$top=1877&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=586&$top=1875&$maxpagesize=2"}' + headers: + apim-request-id: 2662a0b8-fa3e-48fc-b3ce-4383e9a2578d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:16 GMT + etag: '"B84A47A40FA52CDA0FC18E6A18E8125358D7AE43448EB8EE163072748BA63BC2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2662a0b8-fa3e-48fc-b3ce-4383e9a2578d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=584&$top=1877&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=586&$top=1875&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=588&$top=1873&$maxpagesize=2"}' + headers: + apim-request-id: a6b5d614-973e-4512-aaf5-5697514c8a13 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:16 GMT + etag: '"9DEE087D34AC2E9C3C8FACFBAC58B005F2D5EB3643B439D656BA70D16559A44C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a6b5d614-973e-4512-aaf5-5697514c8a13 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=586&$top=1875&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=588&$top=1873&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=590&$top=1871&$maxpagesize=2"}' + headers: + apim-request-id: 60e37e4f-1662-4850-b2d4-498e609a7a6e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:16 GMT + etag: '"BD90D8373E10A3E4F03D8392F67F9F0C88C4DD0F36A2769D51195528E4FFF496"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 60e37e4f-1662-4850-b2d4-498e609a7a6e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=588&$top=1873&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=590&$top=1871&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=592&$top=1869&$maxpagesize=2"}' + headers: + apim-request-id: 20cd48ce-b0fa-4ffd-a3e6-b5aec4bb97aa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:16 GMT + etag: '"925D6211E986DA7370AEDC673DC3B73262E7162810C7F21411B108EA2C30E5A5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 20cd48ce-b0fa-4ffd-a3e6-b5aec4bb97aa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=590&$top=1871&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=592&$top=1869&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=594&$top=1867&$maxpagesize=2"}' + headers: + apim-request-id: 39083c24-fbd7-4372-adc8-08df67f51f51 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:17 GMT + etag: '"7F42FDA20E43541B0B206E3092C153165EA9E2D8EA07C47A02A91E440296A470"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 39083c24-fbd7-4372-adc8-08df67f51f51 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=592&$top=1869&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=594&$top=1867&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=596&$top=1865&$maxpagesize=2"}' + headers: + apim-request-id: ee49303b-abfb-4bfa-993b-126e99b21362 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:17 GMT + etag: '"477D9FFAD7A1976BC0EF39DA4FC1024F092260D14C04C32BB88D5A9128DDDDBE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ee49303b-abfb-4bfa-993b-126e99b21362 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=594&$top=1867&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=596&$top=1865&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=598&$top=1863&$maxpagesize=2"}' + headers: + apim-request-id: 68b73565-a1f1-4980-b80f-79bdb4b364e7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:17 GMT + etag: '"7E70BF96212FA5AD52414A7DBC3D8CF4F97703BA9C447B8D5ADD616E4BC9EA3E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 68b73565-a1f1-4980-b80f-79bdb4b364e7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=596&$top=1865&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=598&$top=1863&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1861&$maxpagesize=2"}' + headers: + apim-request-id: d3669628-6fa5-44c1-afc6-0231d31b3aa3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:17 GMT + etag: '"2E894CE510BFA20AC1AF566554E7DD1E176025F0F6F2105F37133ADB5DDC28DD"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d3669628-6fa5-44c1-afc6-0231d31b3aa3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=598&$top=1863&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1861&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=602&$top=1859&$maxpagesize=2"}' + headers: + apim-request-id: ec8b2412-214b-4bf3-ad18-37bb3c56e9a2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:17 GMT + etag: '"F08952F5A9213E50B1B757B613EC7447011A1E21502EC05D0A1AFEA736ABA1BE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ec8b2412-214b-4bf3-ad18-37bb3c56e9a2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=600&$top=1861&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=602&$top=1859&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=604&$top=1857&$maxpagesize=2"}' + headers: + apim-request-id: d1be6fe0-b836-42de-bf1a-79e2acbcbe77 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:17 GMT + etag: '"1495218A6C93E87069421902B86CEB5CD6A8F7FC79CEB1A7EE170E18B1B57974"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d1be6fe0-b836-42de-bf1a-79e2acbcbe77 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=602&$top=1859&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=604&$top=1857&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=606&$top=1855&$maxpagesize=2"}' + headers: + apim-request-id: 60e2c224-c05b-4b09-adcd-e05120fe79e8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:18 GMT + etag: '"3231D4733E80D07346CD92519ABF455544FAE1992A484C9F72C1DC1D66E8529C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 60e2c224-c05b-4b09-adcd-e05120fe79e8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=604&$top=1857&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=606&$top=1855&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=608&$top=1853&$maxpagesize=2"}' + headers: + apim-request-id: ffa48161-ded1-4281-b8e5-0a0fb2a61878 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:18 GMT + etag: '"ED157B18F2369AE952E056C777739510C1AC3EFA645165DF57148AFFF8AA35F4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ffa48161-ded1-4281-b8e5-0a0fb2a61878 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=606&$top=1855&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=608&$top=1853&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=610&$top=1851&$maxpagesize=2"}' + headers: + apim-request-id: 16395b3f-df06-4e74-8053-c144a3487f9b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:18 GMT + etag: '"97858AECE83632295593ABFF99FC39429034E2F4B8A8DF95BC41AF77EEF37DDF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 16395b3f-df06-4e74-8053-c144a3487f9b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=608&$top=1853&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=610&$top=1851&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=612&$top=1849&$maxpagesize=2"}' + headers: + apim-request-id: 93b12943-ae86-4d43-8610-1ac5031953b6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:18 GMT + etag: '"73734D43EF9864AE775151BD4D6DC22F7AFF176B9B0A89C1B05BA9F6F2DBE93A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 93b12943-ae86-4d43-8610-1ac5031953b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=610&$top=1851&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=612&$top=1849&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=614&$top=1847&$maxpagesize=2"}' + headers: + apim-request-id: 90fdfa48-5b24-4f6b-b781-de97e39f2c6c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:18 GMT + etag: '"8D72FC93B8AA6B4F5387D595CAAC9D94F4D86756D61707EC854344A0D2A18C96"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 90fdfa48-5b24-4f6b-b781-de97e39f2c6c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=612&$top=1849&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=614&$top=1847&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=616&$top=1845&$maxpagesize=2"}' + headers: + apim-request-id: 2027c126-72a5-4849-a7f6-bf73646ac9f3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:18 GMT + etag: '"53F43DAC7A304427217CC69700E0E543FF54BB6EF601720327F8230393D52F6E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2027c126-72a5-4849-a7f6-bf73646ac9f3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=614&$top=1847&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=616&$top=1845&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=618&$top=1843&$maxpagesize=2"}' + headers: + apim-request-id: 22723670-b4b4-46ab-be7f-e68625e617bc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:19 GMT + etag: '"0E147AEB1640289977A1C78C66A3D10BB6BBB6D6C28F1D0931AD89C2580DEE45"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 22723670-b4b4-46ab-be7f-e68625e617bc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=616&$top=1845&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=618&$top=1843&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=620&$top=1841&$maxpagesize=2"}' + headers: + apim-request-id: 9ca66122-d661-4e5a-aba2-c87af139f267 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:19 GMT + etag: '"9F3F570661626B769A3795848BF9DCE656298ED9D15FF0D84F98648131710260"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9ca66122-d661-4e5a-aba2-c87af139f267 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=618&$top=1843&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=620&$top=1841&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=622&$top=1839&$maxpagesize=2"}' + headers: + apim-request-id: c1568c8a-d713-4ba9-8756-a4b902b3cebf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:19 GMT + etag: '"638A29837AC20C613BB0B87DEE75616099105C4C938A307E06709C337AC6B668"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c1568c8a-d713-4ba9-8756-a4b902b3cebf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=620&$top=1841&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=622&$top=1839&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=624&$top=1837&$maxpagesize=2"}' + headers: + apim-request-id: a30deb5c-6499-4b9e-93e1-bb0af054ab20 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:19 GMT + etag: '"F076DCF9DB947501202E8B208E97F324F026A44446A91984EB9512BC86CD62E8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a30deb5c-6499-4b9e-93e1-bb0af054ab20 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=622&$top=1839&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=624&$top=1837&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=626&$top=1835&$maxpagesize=2"}' + headers: + apim-request-id: ee5d9a86-8be8-426d-a1dc-bf2e9f5ff87f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:19 GMT + etag: '"85A6ED177490FFC94C42056A80DFEC75DF1C7FD5F6ACC5F8098AB47122C22C6E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ee5d9a86-8be8-426d-a1dc-bf2e9f5ff87f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=624&$top=1837&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=626&$top=1835&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=628&$top=1833&$maxpagesize=2"}' + headers: + apim-request-id: fd38561a-007c-40ac-a5cd-c2dbc21a04d2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:19 GMT + etag: '"3285C60C6C1D539E03E8290B8E8F9D60273721411DBF590562767186DBC2B815"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fd38561a-007c-40ac-a5cd-c2dbc21a04d2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=626&$top=1835&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=628&$top=1833&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=630&$top=1831&$maxpagesize=2"}' + headers: + apim-request-id: f4474a3c-d7cc-4987-8795-33b468ad1f91 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:20 GMT + etag: '"C2D63D29E732658714DC5B0BE18209B4396DE4A2714777E2109C22BC2AE90651"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f4474a3c-d7cc-4987-8795-33b468ad1f91 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=628&$top=1833&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=630&$top=1831&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=632&$top=1829&$maxpagesize=2"}' + headers: + apim-request-id: 258d8e62-2158-4ce9-b750-4f5cf68aaea5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:20 GMT + etag: '"9F251BFD25939F8E62983D581616EC8A83EA5194D665DCE7893405A05EC73FA2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 258d8e62-2158-4ce9-b750-4f5cf68aaea5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=630&$top=1831&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=632&$top=1829&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=634&$top=1827&$maxpagesize=2"}' + headers: + apim-request-id: 0679a12f-a15e-4586-820e-92fbab965c46 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:20 GMT + etag: '"01DD522B9843C1CA23061BA5A705ADCD7F26BD186F5095A7E349CABDBE832266"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0679a12f-a15e-4586-820e-92fbab965c46 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=632&$top=1829&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=634&$top=1827&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=636&$top=1825&$maxpagesize=2"}' + headers: + apim-request-id: dd7ef9c1-38de-4a33-a919-bd2a974841af + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:20 GMT + etag: '"6D8AA646A9FD1595463CA4435DF2F835869ADA477D39CD15133D4080AF5BF190"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dd7ef9c1-38de-4a33-a919-bd2a974841af + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=634&$top=1827&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=636&$top=1825&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=638&$top=1823&$maxpagesize=2"}' + headers: + apim-request-id: 7a4aadc0-74aa-41ec-87ea-2c2f9950bf5d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:20 GMT + etag: '"2CA53741305A70A82BED3138E632CB234A1549BEE5CFB4FE9C44A097068F70B7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7a4aadc0-74aa-41ec-87ea-2c2f9950bf5d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=636&$top=1825&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=638&$top=1823&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=640&$top=1821&$maxpagesize=2"}' + headers: + apim-request-id: 0c12b295-0ca7-4bc1-a9a7-495fa341c84f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:20 GMT + etag: '"9F8CB98E6B9D6D958D8141CAE19125463B37FBFA09A963F155185107B667914F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0c12b295-0ca7-4bc1-a9a7-495fa341c84f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=638&$top=1823&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=640&$top=1821&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=642&$top=1819&$maxpagesize=2"}' + headers: + apim-request-id: 350d62ca-fcec-48f1-a6f6-94e0abb6a3ef + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:21 GMT + etag: '"A4866D679B0891D4E9BED3BEB6BF5544CA432D2BD380CDEC51D56AA90018CBFE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 350d62ca-fcec-48f1-a6f6-94e0abb6a3ef + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=640&$top=1821&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=642&$top=1819&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=644&$top=1817&$maxpagesize=2"}' + headers: + apim-request-id: 0b91fbb1-dab2-45b8-9eda-91775a47f368 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:21 GMT + etag: '"70D455ACCFF02E011400240C191C4B0BE91593456AB029B5C42223F58A525E5B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0b91fbb1-dab2-45b8-9eda-91775a47f368 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=642&$top=1819&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=644&$top=1817&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=646&$top=1815&$maxpagesize=2"}' + headers: + apim-request-id: 6d3e4189-8d8f-479e-a566-7afa2199ff5f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:21 GMT + etag: '"2557CAC8869D578E0414589AC5D2670DAFB44099529A922D34A79BEC11E9C8FE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6d3e4189-8d8f-479e-a566-7afa2199ff5f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=644&$top=1817&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=646&$top=1815&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=648&$top=1813&$maxpagesize=2"}' + headers: + apim-request-id: 12fb01f5-9559-4e59-a3d0-dd7d9e2091be + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:21 GMT + etag: '"320C253713F325FC08BC3503AD09F7CFC23E21B328D92D5302937588C3E5981D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 12fb01f5-9559-4e59-a3d0-dd7d9e2091be + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=646&$top=1815&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=648&$top=1813&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1811&$maxpagesize=2"}' + headers: + apim-request-id: d8eb7ffe-5123-41eb-859d-d7865e81efcb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:21 GMT + etag: '"A71709B00CF47FDA68E6F5C156C4EDCF459C005213DB11C3BC0963BECF90DC7A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d8eb7ffe-5123-41eb-859d-d7865e81efcb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=648&$top=1813&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1811&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=652&$top=1809&$maxpagesize=2"}' + headers: + apim-request-id: 4bbbe698-7838-4ae9-8618-bd9cec3b663d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:22 GMT + etag: '"D80CB85061B3ED815487B1F097E87785C15ED14C4D62D53A2708DE73A6E2CE01"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4bbbe698-7838-4ae9-8618-bd9cec3b663d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=650&$top=1811&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=652&$top=1809&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=654&$top=1807&$maxpagesize=2"}' + headers: + apim-request-id: 661b447d-d979-49b8-b04e-9417683f2370 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:22 GMT + etag: '"3062A027252CF6ACD4A1CCF253177F48FD206385A27B71EFE1431567A3B78F75"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 661b447d-d979-49b8-b04e-9417683f2370 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=652&$top=1809&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=654&$top=1807&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=656&$top=1805&$maxpagesize=2"}' + headers: + apim-request-id: a5c63cb1-12dc-438a-bdb7-9fad74062c37 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:22 GMT + etag: '"446686EB5709CF51E349DBFD55BC72FEBFD1AF17B1797AFF0864136DD3A725DB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a5c63cb1-12dc-438a-bdb7-9fad74062c37 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=654&$top=1807&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=656&$top=1805&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=658&$top=1803&$maxpagesize=2"}' + headers: + apim-request-id: 963c7727-f586-4270-a9a4-266bc1a4bf38 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:22 GMT + etag: '"1F298E5E787AA1C95F9B50CFE4A23DD7A4E5965DAA603262B58C037154EAC9D5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 963c7727-f586-4270-a9a4-266bc1a4bf38 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=656&$top=1805&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=658&$top=1803&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=660&$top=1801&$maxpagesize=2"}' + headers: + apim-request-id: f99ba8ae-8efb-4b89-be95-531faad59fbb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:22 GMT + etag: '"31C66049676EF1CE79A7E4FD2701721584B811B13FF548FE28B3D4CE09082731"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f99ba8ae-8efb-4b89-be95-531faad59fbb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=658&$top=1803&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=660&$top=1801&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=662&$top=1799&$maxpagesize=2"}' + headers: + apim-request-id: da9198dc-477a-42a9-bf89-9af61903c558 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:22 GMT + etag: '"26FD4F70758436844B62F8ECBC1C42175C9194A0F5C6627998EEF67D7D8712D9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: da9198dc-477a-42a9-bf89-9af61903c558 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=660&$top=1801&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=662&$top=1799&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=664&$top=1797&$maxpagesize=2"}' + headers: + apim-request-id: 5af14f80-f603-451d-a03f-f493302e8622 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:23 GMT + etag: '"E1DD537AB3129972B943B95375C9DF65E3CDEAD8A8866CE81949F216FD398088"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5af14f80-f603-451d-a03f-f493302e8622 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=662&$top=1799&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=664&$top=1797&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=666&$top=1795&$maxpagesize=2"}' + headers: + apim-request-id: 3feefaa1-00ef-47c7-b548-e93b6dbe56bd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:23 GMT + etag: '"612AD20F061AD9181FF2758C48C11C95EC9F1BD261826B680C2BB4081AA92CF6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3feefaa1-00ef-47c7-b548-e93b6dbe56bd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=664&$top=1797&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=666&$top=1795&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=668&$top=1793&$maxpagesize=2"}' + headers: + apim-request-id: 6a2d7667-6903-44a1-898e-2f8c1d7379d7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:23 GMT + etag: '"781D807B01B13318F02EEDBF21777608E02ADFCA1E5C9FEFED8E4D2CDD544087"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6a2d7667-6903-44a1-898e-2f8c1d7379d7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=666&$top=1795&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=668&$top=1793&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=670&$top=1791&$maxpagesize=2"}' + headers: + apim-request-id: 97e29cf8-d2d0-4312-ac6f-3a1efd128b47 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:23 GMT + etag: '"A01D0A602A3C85B37731B92273D37414E5DECEFAC33B86657007CB70162B03A3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 97e29cf8-d2d0-4312-ac6f-3a1efd128b47 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=668&$top=1793&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=670&$top=1791&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=672&$top=1789&$maxpagesize=2"}' + headers: + apim-request-id: 2cc1dbcd-a80f-45a6-9dc5-97db69c460b3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:23 GMT + etag: '"BAC3719B99D668B741136DCC8F37B721F83A95FAF77DC8B4EBB182A20C1C8CA4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2cc1dbcd-a80f-45a6-9dc5-97db69c460b3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=670&$top=1791&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=672&$top=1789&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=674&$top=1787&$maxpagesize=2"}' + headers: + apim-request-id: 92929586-ae0e-4cd1-8613-6540c7dcc1a1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:23 GMT + etag: '"F27FAB9BEC3A5BE07DE20F56484676C78075047E9F9A9341B2CE71FB0F9C9198"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 92929586-ae0e-4cd1-8613-6540c7dcc1a1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=672&$top=1789&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=674&$top=1787&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=676&$top=1785&$maxpagesize=2"}' + headers: + apim-request-id: b80c67f2-a2b3-4ede-adeb-1396be7b4ad3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:24 GMT + etag: '"75BD59FEC093FF87BE67C8F656ADA0519FFAB8C395286962942D792CE6CCF460"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b80c67f2-a2b3-4ede-adeb-1396be7b4ad3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=674&$top=1787&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=676&$top=1785&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=678&$top=1783&$maxpagesize=2"}' + headers: + apim-request-id: 96c6f9c2-0588-4d4c-9809-b50f0cffbba7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:24 GMT + etag: '"E36ABDB22670803140C549AF9146217F4448C62C4261C1C92047D8BFB4C33C24"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 96c6f9c2-0588-4d4c-9809-b50f0cffbba7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=676&$top=1785&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=678&$top=1783&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=680&$top=1781&$maxpagesize=2"}' + headers: + apim-request-id: a4285484-9c73-4bc8-b2c7-9fcda78809e7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:24 GMT + etag: '"F0B7B98DC4C9F4BF8B6D88182497AC43F53728E57A7BEE54BF50944BE8D3C324"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a4285484-9c73-4bc8-b2c7-9fcda78809e7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=678&$top=1783&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=680&$top=1781&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=682&$top=1779&$maxpagesize=2"}' + headers: + apim-request-id: 03fefed1-34c2-44bd-b145-4df859a15e27 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:24 GMT + etag: '"B9556D7ED0B8A5C1FE4569EA658F8E0DD6BF62469E7B8963BFDC8FA44798986E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 03fefed1-34c2-44bd-b145-4df859a15e27 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=680&$top=1781&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=682&$top=1779&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=684&$top=1777&$maxpagesize=2"}' + headers: + apim-request-id: 688ef84f-c4b5-4a61-b6a2-2009e58ec34b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:24 GMT + etag: '"CBAE632D08BB644C7BCB933453C3DD4F63DF864B118CCB48BADF9BAEDE5CFC8B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 688ef84f-c4b5-4a61-b6a2-2009e58ec34b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=682&$top=1779&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=684&$top=1777&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=686&$top=1775&$maxpagesize=2"}' + headers: + apim-request-id: 7485cf54-1924-486a-9ed4-1f014eb42544 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:24 GMT + etag: '"B4F4C0D81BCFE838305DE7CC26CEDC87D12FD775A9669576B6EF000E1D68DC55"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7485cf54-1924-486a-9ed4-1f014eb42544 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=684&$top=1777&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=686&$top=1775&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=688&$top=1773&$maxpagesize=2"}' + headers: + apim-request-id: 7611df7a-09e6-49b5-ba4e-d30d3237bded + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:25 GMT + etag: '"07AE4FFF7941D58DA853C9CC32D035A11F8525F28D514D5068C18FC602D1F9EB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7611df7a-09e6-49b5-ba4e-d30d3237bded + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=686&$top=1775&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=688&$top=1773&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=690&$top=1771&$maxpagesize=2"}' + headers: + apim-request-id: c24fb0f6-6573-4f00-8553-9da5c3e47a8f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:25 GMT + etag: '"B919A2C4B49BD2AD4A393570FB57B7034B10309CF4298B42A7AAC286D5A9DAE3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c24fb0f6-6573-4f00-8553-9da5c3e47a8f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=688&$top=1773&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=690&$top=1771&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=692&$top=1769&$maxpagesize=2"}' + headers: + apim-request-id: 3cd8aa76-3ca9-4e2f-8a35-054f1b1e559d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:25 GMT + etag: '"22D9BCB19D26778B05C7D64D9727FCE6F809319C8874BDF510FCED6971C8B5B6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3cd8aa76-3ca9-4e2f-8a35-054f1b1e559d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=690&$top=1771&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=692&$top=1769&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=694&$top=1767&$maxpagesize=2"}' + headers: + apim-request-id: f2e9e61d-f375-4b74-9a8f-fadcc755a285 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:25 GMT + etag: '"CE4A94A772DDDAC6A5AED341593FE983F659CDB2B730353902E43F46AB7414CA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f2e9e61d-f375-4b74-9a8f-fadcc755a285 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=692&$top=1769&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=694&$top=1767&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=696&$top=1765&$maxpagesize=2"}' + headers: + apim-request-id: 51610b93-9e80-45df-8b66-0b511be25f66 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:25 GMT + etag: '"790F26B82130F1EADA43A09D5CD745101A6C61C91FE48A56C7CB02FBF07CD5AF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 51610b93-9e80-45df-8b66-0b511be25f66 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=694&$top=1767&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=696&$top=1765&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=698&$top=1763&$maxpagesize=2"}' + headers: + apim-request-id: 540b07fa-0b2a-4a42-b18d-a326c9dc8903 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:26 GMT + etag: '"0FFCC622C900A4B472BBF25D101C056EDC59D4B9B75D393C80CB1B56AA87237F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 540b07fa-0b2a-4a42-b18d-a326c9dc8903 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=696&$top=1765&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=698&$top=1763&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1761&$maxpagesize=2"}' + headers: + apim-request-id: 9347dd4a-b15b-4282-8913-815a9d366b4b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:26 GMT + etag: '"1B19F5ECD287EB6C4ACDDCA822E3534A853FFAFC84860BC7ED77EBA70889C3E6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9347dd4a-b15b-4282-8913-815a9d366b4b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=698&$top=1763&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1761&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=702&$top=1759&$maxpagesize=2"}' + headers: + apim-request-id: 5aa7c4d3-ea6b-4ac6-8372-d573042ea398 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:26 GMT + etag: '"467AACD28C546AD49B2C82FFC0778D47009B32C44B334EDD542C2A3AA8A04AC5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5aa7c4d3-ea6b-4ac6-8372-d573042ea398 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=700&$top=1761&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=702&$top=1759&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=704&$top=1757&$maxpagesize=2"}' + headers: + apim-request-id: 43bf5564-efa8-45d7-b8aa-348ecf9f1c89 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:26 GMT + etag: '"CC09DBC916D40695C562787EC01E72DDA92ACB4E6B847BDA305EE71F1BEABA5E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 43bf5564-efa8-45d7-b8aa-348ecf9f1c89 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=702&$top=1759&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=704&$top=1757&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=706&$top=1755&$maxpagesize=2"}' + headers: + apim-request-id: 22b19f8e-604b-411a-b72a-f55847e8c03b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:26 GMT + etag: '"E57984141AA399D880C294F143146D19FB0625B5B04E3ABFC94F474C60D3166E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 22b19f8e-604b-411a-b72a-f55847e8c03b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=704&$top=1757&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=706&$top=1755&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=708&$top=1753&$maxpagesize=2"}' + headers: + apim-request-id: 9cf84cb9-caa6-4567-9ed9-d8bf3de4b1cb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:26 GMT + etag: '"923C66A31B1A219933215702EAB992BEE6EC89D881205EF4204A28F91A2D4CB0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9cf84cb9-caa6-4567-9ed9-d8bf3de4b1cb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=706&$top=1755&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=708&$top=1753&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=710&$top=1751&$maxpagesize=2"}' + headers: + apim-request-id: 91236c4c-1405-43cf-a0f8-fa572908a3c8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:27 GMT + etag: '"AB570DBF30BFE3AD8F4D6B7D230ED936417C2046B4AC202D1F8AD077CF7542BF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 91236c4c-1405-43cf-a0f8-fa572908a3c8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=708&$top=1753&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=710&$top=1751&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=712&$top=1749&$maxpagesize=2"}' + headers: + apim-request-id: 3439748e-b52e-416d-a628-881566a2728b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:27 GMT + etag: '"B5B219648D9CFBF343DFD678A3BC67CDA7DAC1EFF653CEF82DE9FFF671DED9E6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3439748e-b52e-416d-a628-881566a2728b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=710&$top=1751&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=712&$top=1749&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=714&$top=1747&$maxpagesize=2"}' + headers: + apim-request-id: b345a38a-f5d3-4244-814c-14e17075f757 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:27 GMT + etag: '"282086590C9F4BA15DA4158628F66B336CC5BB575894581EDDC11033E5C371A0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b345a38a-f5d3-4244-814c-14e17075f757 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=712&$top=1749&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=714&$top=1747&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=716&$top=1745&$maxpagesize=2"}' + headers: + apim-request-id: c8b84196-f8f9-4edf-90f4-379fe22dfa02 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:27 GMT + etag: '"2E882E560EEC569707A261FEC10E79104CE566E67E13B90371E304A4CAE833D6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c8b84196-f8f9-4edf-90f4-379fe22dfa02 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=714&$top=1747&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=716&$top=1745&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=718&$top=1743&$maxpagesize=2"}' + headers: + apim-request-id: 2d37b88b-65d6-47dd-8f61-a0eaf2cd881d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:27 GMT + etag: '"90F7F76C2EBC57A1E1D89E7F402B28DA4FC9165DC11794606A88DBC3B83EE852"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2d37b88b-65d6-47dd-8f61-a0eaf2cd881d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=716&$top=1745&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=718&$top=1743&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=720&$top=1741&$maxpagesize=2"}' + headers: + apim-request-id: fe47f7ff-f687-4003-8d9e-f7c0881425c2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:27 GMT + etag: '"D100CF0FFC92C32B41B7B800AC1296CDD39AA179DE943BB26EEF0DAA954CCAAE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fe47f7ff-f687-4003-8d9e-f7c0881425c2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=718&$top=1743&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=720&$top=1741&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=722&$top=1739&$maxpagesize=2"}' + headers: + apim-request-id: 83530805-9397-4b76-a4a4-107a8b24601e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:28 GMT + etag: '"E42276B56D6BA9FF0D75E41767176E8620BDED104928BDCFE0C635BA97A75A4A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 83530805-9397-4b76-a4a4-107a8b24601e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=720&$top=1741&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=722&$top=1739&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=724&$top=1737&$maxpagesize=2"}' + headers: + apim-request-id: 880372e1-f18a-41e8-8a05-9b87398f03ba + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:28 GMT + etag: '"4A2F9FAD36268DA51A2A7A0F6997EDA49FB48C94455BE98EA5FC9D5D7E90F614"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 880372e1-f18a-41e8-8a05-9b87398f03ba + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=722&$top=1739&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=724&$top=1737&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=726&$top=1735&$maxpagesize=2"}' + headers: + apim-request-id: a7e4683f-9a6f-4335-be46-032dfae3b9af + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:28 GMT + etag: '"C280B29DE9119A390736FEC4F75CFF1FBC9B7A77B2A904810B7130CFC73F4450"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a7e4683f-9a6f-4335-be46-032dfae3b9af + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=724&$top=1737&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=726&$top=1735&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=728&$top=1733&$maxpagesize=2"}' + headers: + apim-request-id: 3a2295e4-cd63-43fd-a2ad-48d579aa92fa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:28 GMT + etag: '"405AE13F0F1A13F0C46BC0D1660E7CB680C6657E17532A5480BE4E057967C476"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3a2295e4-cd63-43fd-a2ad-48d579aa92fa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=726&$top=1735&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=728&$top=1733&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=730&$top=1731&$maxpagesize=2"}' + headers: + apim-request-id: d6c2113a-f3a6-4f3f-80bc-8cb5243f1943 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:28 GMT + etag: '"F5A967AF72B9DFCEB489147BA6D55FE58572F132C6984AB676033BB36C5E1912"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d6c2113a-f3a6-4f3f-80bc-8cb5243f1943 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=728&$top=1733&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=730&$top=1731&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=732&$top=1729&$maxpagesize=2"}' + headers: + apim-request-id: c674d80c-b553-4ebe-912b-28ac6e29f566 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:28 GMT + etag: '"64FD28EA2EAF44FBD6B3AAB0A2A893ED8C26F462D1B1E0830477056E0AB7F042"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c674d80c-b553-4ebe-912b-28ac6e29f566 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=730&$top=1731&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=732&$top=1729&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=734&$top=1727&$maxpagesize=2"}' + headers: + apim-request-id: 058d0019-2f4e-4ca4-8e3b-5b191d83933f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:29 GMT + etag: '"CB6531E376177E1A37748D01725C5E358308365CA2061F27FD480A192E7BF3D1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 058d0019-2f4e-4ca4-8e3b-5b191d83933f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=732&$top=1729&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=734&$top=1727&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=736&$top=1725&$maxpagesize=2"}' + headers: + apim-request-id: 1d875899-ea93-414d-aece-a36935977f71 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:29 GMT + etag: '"AF52EA0EE3570C78D1B4EDC3D2D902ECBA39499A556CDD5D94ADD6CCED7ECCAC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1d875899-ea93-414d-aece-a36935977f71 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=734&$top=1727&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=736&$top=1725&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=738&$top=1723&$maxpagesize=2"}' + headers: + apim-request-id: dbe18dc6-6825-4a8e-adf5-aff57343ba39 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:29 GMT + etag: '"24BF548A26E5A2585512AD28297974FE442EEAAFF55D408934AE238D9CD0AE86"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dbe18dc6-6825-4a8e-adf5-aff57343ba39 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=736&$top=1725&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=738&$top=1723&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=740&$top=1721&$maxpagesize=2"}' + headers: + apim-request-id: 1f2a20e3-6889-44fe-909b-7f321c797f2f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:29 GMT + etag: '"949BBA28285D7563EE801B5837933190B46971FD5878483A015B29C9791EE77D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1f2a20e3-6889-44fe-909b-7f321c797f2f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=738&$top=1723&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=740&$top=1721&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=742&$top=1719&$maxpagesize=2"}' + headers: + apim-request-id: 9bec689c-f34b-4cb6-8321-18d729823745 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:29 GMT + etag: '"51C51FD220622566BB926AABEE5A207FCC7F5EC51CEF0ABF25AA1979FBEAA4DC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9bec689c-f34b-4cb6-8321-18d729823745 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=740&$top=1721&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=742&$top=1719&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=744&$top=1717&$maxpagesize=2"}' + headers: + apim-request-id: 6af38a38-3901-4b0a-8e94-599fe37b892e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:29 GMT + etag: '"14ECC268FE06255546F01D8EC790F122502370FB5EF1E51BC632AF2632EFB9F8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6af38a38-3901-4b0a-8e94-599fe37b892e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=742&$top=1719&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=744&$top=1717&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=746&$top=1715&$maxpagesize=2"}' + headers: + apim-request-id: 9a0d3f6c-44b7-48cd-abff-1e51da549922 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:30 GMT + etag: '"15C9D26622782FDEFD5BD945E3A55E42861B550F2C7A5C4A37F6F7FC58F95ED5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9a0d3f6c-44b7-48cd-abff-1e51da549922 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=744&$top=1717&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=746&$top=1715&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=748&$top=1713&$maxpagesize=2"}' + headers: + apim-request-id: e9b66ec2-460f-4000-975d-629b75e688c4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:30 GMT + etag: '"EF1EFEAA01BA3B72B6A63F2742E03ACE43E4A1E7F6FD0A019A58FE17869A7B17"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e9b66ec2-460f-4000-975d-629b75e688c4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=746&$top=1715&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=748&$top=1713&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1711&$maxpagesize=2"}' + headers: + apim-request-id: 3edc66df-8f87-4463-8e94-17818463f2ca + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:30 GMT + etag: '"EA2D8C07DBDD37DC5476354DB9E8DB7FB84DC82254C48C6741A7A2B382A2C25C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3edc66df-8f87-4463-8e94-17818463f2ca + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=748&$top=1713&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1711&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=752&$top=1709&$maxpagesize=2"}' + headers: + apim-request-id: 13b20358-bbaa-4d9c-bbf3-df59a214bb6e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:30 GMT + etag: '"7A63EFD6582D43DBE3C72775DF6B985C0B959343ED9F6B22899FE0DFC5A20BB8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 13b20358-bbaa-4d9c-bbf3-df59a214bb6e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=750&$top=1711&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=752&$top=1709&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=754&$top=1707&$maxpagesize=2"}' + headers: + apim-request-id: ead7e07a-07cf-40b3-a3d4-e869d30500e2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:30 GMT + etag: '"E4DC9B5D7C5B85AE120F012678043E302B3F1F36DE397B15609B7EE69D77CE5B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ead7e07a-07cf-40b3-a3d4-e869d30500e2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=752&$top=1709&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=754&$top=1707&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=756&$top=1705&$maxpagesize=2"}' + headers: + apim-request-id: a9c94650-d397-47f9-b318-7d7f230f0043 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:31 GMT + etag: '"DAACB7909B2D4704242EC4FA11669D6EEFFA63B1013A76B08F5E4E03EDE9614F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a9c94650-d397-47f9-b318-7d7f230f0043 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=754&$top=1707&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=756&$top=1705&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=758&$top=1703&$maxpagesize=2"}' + headers: + apim-request-id: ee8bb691-a7a4-4108-a0ba-3aef8f475924 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:31 GMT + etag: '"7ED1B3CA01BBD6B4572212DC6753D5215E51448170447C7BDC7B746CCF5416A4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ee8bb691-a7a4-4108-a0ba-3aef8f475924 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=756&$top=1705&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=758&$top=1703&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=760&$top=1701&$maxpagesize=2"}' + headers: + apim-request-id: f26a763b-ede7-4e8d-98b0-241e42c4943d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:31 GMT + etag: '"D769A433C6CA6BCE872B3132C218AE3BBF847943B183FDA72002B30578AB7F92"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f26a763b-ede7-4e8d-98b0-241e42c4943d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=758&$top=1703&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=760&$top=1701&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=762&$top=1699&$maxpagesize=2"}' + headers: + apim-request-id: f3ec1f6d-9e9c-45f5-af2c-f0ccdda9a18b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:31 GMT + etag: '"624E579EFFE252826F020E9C640D2F2347D86379251BC371131B60AAF491ADB2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f3ec1f6d-9e9c-45f5-af2c-f0ccdda9a18b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=760&$top=1701&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=762&$top=1699&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=764&$top=1697&$maxpagesize=2"}' + headers: + apim-request-id: 848a8df5-03a3-4f17-b408-50a30323ba21 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:31 GMT + etag: '"15DF5568ED2C32C7A7ECE5A194DD013F82CAA7899AAD1D0C3852ADD4042B815B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 848a8df5-03a3-4f17-b408-50a30323ba21 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=762&$top=1699&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=764&$top=1697&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=766&$top=1695&$maxpagesize=2"}' + headers: + apim-request-id: 32f36ddd-8d87-469f-8311-ce095837a670 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:31 GMT + etag: '"00318FCABA1F17C80B19A5482EFDD79D01C3BB8F3B582CCB181D8690AA10DED5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 32f36ddd-8d87-469f-8311-ce095837a670 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=764&$top=1697&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=766&$top=1695&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=768&$top=1693&$maxpagesize=2"}' + headers: + apim-request-id: 737a0600-4d8c-43fd-8369-9271687ee576 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:32 GMT + etag: '"1C1A25CE663A81EA1180076AD7CDABD044E4D71CD9C8F2AEB6B35426A46133D7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 737a0600-4d8c-43fd-8369-9271687ee576 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=766&$top=1695&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=768&$top=1693&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=770&$top=1691&$maxpagesize=2"}' + headers: + apim-request-id: 978697a3-3bb6-4157-9462-76b53a36b512 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:32 GMT + etag: '"FB1717D4BF9BE9C01D8BF1A9A6A357D7E9327DEB6608C1BEA0CE0DCBC2C96158"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 978697a3-3bb6-4157-9462-76b53a36b512 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=768&$top=1693&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=770&$top=1691&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=772&$top=1689&$maxpagesize=2"}' + headers: + apim-request-id: 412af570-f7a1-4d6b-9c70-7b140ab392e4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:32 GMT + etag: '"2E28881E893E53C7532D6E68E737F13E6A6849C4039382C59C505E243171AB5C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 412af570-f7a1-4d6b-9c70-7b140ab392e4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=770&$top=1691&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=772&$top=1689&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=774&$top=1687&$maxpagesize=2"}' + headers: + apim-request-id: c43ae4ce-aee6-445d-9f69-69e50c4994cd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:32 GMT + etag: '"3695064D4A2ADC0BAB04D7C8E30F2CF5E41AD9C9719AD2EEA400097C1C16EED7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c43ae4ce-aee6-445d-9f69-69e50c4994cd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=772&$top=1689&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=774&$top=1687&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=776&$top=1685&$maxpagesize=2"}' + headers: + apim-request-id: 7e478421-a3b4-4756-85b2-3b4333c5a517 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:32 GMT + etag: '"12816D2C682AA7CE69400842E509B092802D4BCAD2F803AD3504BAC06CB26295"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7e478421-a3b4-4756-85b2-3b4333c5a517 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=774&$top=1687&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=776&$top=1685&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=778&$top=1683&$maxpagesize=2"}' + headers: + apim-request-id: f2633780-7b6a-4aff-aa26-a1dc209cc364 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:32 GMT + etag: '"142B16BCA890309136ED5E11AB634050B2BF6CAECA279E5FC7DE3AE99EBE5C7A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f2633780-7b6a-4aff-aa26-a1dc209cc364 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=776&$top=1685&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=778&$top=1683&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=780&$top=1681&$maxpagesize=2"}' + headers: + apim-request-id: 6c360819-e7b3-4608-a927-f28b37cac0bf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:33 GMT + etag: '"6018CF53940118C028B4D20AC8FA768D0D0F7CFD1D98D42EF5D438E547EA1C39"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6c360819-e7b3-4608-a927-f28b37cac0bf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=778&$top=1683&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=780&$top=1681&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=782&$top=1679&$maxpagesize=2"}' + headers: + apim-request-id: 0142ee72-db8e-4a24-9bf6-ee702db9ac80 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:33 GMT + etag: '"CD31D2597C25F887C7739EB0433F76D48E6613EAD0DC59036CA9D94850EE1096"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0142ee72-db8e-4a24-9bf6-ee702db9ac80 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=780&$top=1681&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=782&$top=1679&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=784&$top=1677&$maxpagesize=2"}' + headers: + apim-request-id: beec06b1-3052-4142-982d-002c7937a6cb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:33 GMT + etag: '"1937F2E2C1872D5824C019ABE75E2F036FAD5A8F32929F3B48E059CA2646BEA4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: beec06b1-3052-4142-982d-002c7937a6cb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=782&$top=1679&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=784&$top=1677&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=786&$top=1675&$maxpagesize=2"}' + headers: + apim-request-id: db8eefdc-d138-432d-b2f2-3ce79098ce89 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:33 GMT + etag: '"0251AC9538562182863C8895410A43DFB1491C45CE0B666AB5361F26A29C1B54"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: db8eefdc-d138-432d-b2f2-3ce79098ce89 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=784&$top=1677&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=786&$top=1675&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=788&$top=1673&$maxpagesize=2"}' + headers: + apim-request-id: a5dab7e3-411b-4c27-b393-852924fbbd24 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:33 GMT + etag: '"E89678F2248B92DB5EAB762B7EA3CDC179D46CEC1D31912A318D5E0246656DC7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a5dab7e3-411b-4c27-b393-852924fbbd24 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=786&$top=1675&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=788&$top=1673&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=790&$top=1671&$maxpagesize=2"}' + headers: + apim-request-id: 87a78351-550f-449f-9c76-2962c385c417 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:33 GMT + etag: '"804384129BE6CBEC775DB1AAB8513E97EEEF63E8BDF43709B4C4C90678810C7C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 87a78351-550f-449f-9c76-2962c385c417 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=788&$top=1673&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=790&$top=1671&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=792&$top=1669&$maxpagesize=2"}' + headers: + apim-request-id: e9b42da6-e63e-4245-afe5-8276989d285b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:35 GMT + etag: '"773599559E65004C7535C7F5315258A5887FB5B253100A4C6F8649083B51FEAD"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e9b42da6-e63e-4245-afe5-8276989d285b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=790&$top=1671&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=792&$top=1669&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=794&$top=1667&$maxpagesize=2"}' + headers: + apim-request-id: 376fe04e-eb62-4de4-9cb6-36cfe2cd5f2e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:35 GMT + etag: '"8C1045254B787535F582E47A0357E8D2DC7F54177792CD4BFCE4F37E49697AC4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 376fe04e-eb62-4de4-9cb6-36cfe2cd5f2e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=792&$top=1669&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=794&$top=1667&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=796&$top=1665&$maxpagesize=2"}' + headers: + apim-request-id: 33ad4ac9-4e91-4ac4-8d2b-e8a63fb690b3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:35 GMT + etag: '"3379852662ECE7F16C3BFC28BFF9DD6DC966263D5FB7E33F8EA1BE8E1189EE07"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 33ad4ac9-4e91-4ac4-8d2b-e8a63fb690b3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=794&$top=1667&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=796&$top=1665&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=798&$top=1663&$maxpagesize=2"}' + headers: + apim-request-id: 0a77468c-6b16-4734-93fe-885f27dd5b35 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:35 GMT + etag: '"B613A39F3F6B33B249A2278EFACB7BF304AAEB31651BCAC94EA8B0DE66C3DAE0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0a77468c-6b16-4734-93fe-885f27dd5b35 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=796&$top=1665&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=798&$top=1663&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1661&$maxpagesize=2"}' + headers: + apim-request-id: 0b797fec-98e9-4614-8bce-8c9e244d3a52 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:35 GMT + etag: '"CF4C429E7F9C27A46F0DD927D29FAA4599B73D1B17F54C7278FB963F11453E5D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0b797fec-98e9-4614-8bce-8c9e244d3a52 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=798&$top=1663&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1661&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=802&$top=1659&$maxpagesize=2"}' + headers: + apim-request-id: d129223e-1c4f-4b13-8d4e-9a131568e98d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:36 GMT + etag: '"4F6C12D2D6E5CA045FD1581092B526EDF54B34ECF10D2AD0B201D4AA7C212649"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d129223e-1c4f-4b13-8d4e-9a131568e98d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=800&$top=1661&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=802&$top=1659&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=804&$top=1657&$maxpagesize=2"}' + headers: + apim-request-id: a6a24c78-45f2-4d97-99cc-d53a6596b6e1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:36 GMT + etag: '"009A2FE6C14BF22D9ED52E44A2D45F82B72F8748508C8DC5964553E44479F9F6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a6a24c78-45f2-4d97-99cc-d53a6596b6e1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=802&$top=1659&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=804&$top=1657&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=806&$top=1655&$maxpagesize=2"}' + headers: + apim-request-id: c9360e00-05bd-4831-8dc2-93aa18506e2b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:36 GMT + etag: '"C9BDEF4E4C67308C3DFBA10BBCAD09EDD3C51B865DECE54BA0C01F65DBD0B444"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c9360e00-05bd-4831-8dc2-93aa18506e2b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=804&$top=1657&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=806&$top=1655&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=808&$top=1653&$maxpagesize=2"}' + headers: + apim-request-id: 8c41da40-4eb5-400a-95e4-65bd8b48b348 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:36 GMT + etag: '"49F76824E965FB6989F7C52CAFE793A423FBFC92A2320F69CB0194B764E2B673"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8c41da40-4eb5-400a-95e4-65bd8b48b348 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=806&$top=1655&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=808&$top=1653&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=810&$top=1651&$maxpagesize=2"}' + headers: + apim-request-id: d8224303-5a19-418c-a264-bed2cef5d6f7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:36 GMT + etag: '"9E68A8C7768D399CCE610705D89602AE2FCF4A95A90F153DDEF0A713FD1CFF8A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d8224303-5a19-418c-a264-bed2cef5d6f7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=808&$top=1653&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=810&$top=1651&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=812&$top=1649&$maxpagesize=2"}' + headers: + apim-request-id: a9366c2e-c289-4c2a-a568-45b065924e5c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:36 GMT + etag: '"EEB60537B3D56E826615784B4AF1E6C96F4A985D4CC39EC768BABEA8AC5A4CFC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a9366c2e-c289-4c2a-a568-45b065924e5c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=810&$top=1651&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=812&$top=1649&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=814&$top=1647&$maxpagesize=2"}' + headers: + apim-request-id: b84f9595-d018-4845-8c0c-fa1b4b2c71c9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:37 GMT + etag: '"386A482CA88B2910ECCB6F6968FFAB7C03B5D721FF876CD0A6D45532DFDFFA24"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b84f9595-d018-4845-8c0c-fa1b4b2c71c9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=812&$top=1649&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=814&$top=1647&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=816&$top=1645&$maxpagesize=2"}' + headers: + apim-request-id: 642aef9d-7973-4a93-b2f3-9bcebf70b8d7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:37 GMT + etag: '"AB54A9D1866D48CBC9AAA514395E1259AB277D4773E53763FB364F6A2442FB01"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 642aef9d-7973-4a93-b2f3-9bcebf70b8d7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=814&$top=1647&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=816&$top=1645&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=818&$top=1643&$maxpagesize=2"}' + headers: + apim-request-id: 37ec1085-03d0-474e-aacb-c06580eafa52 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:37 GMT + etag: '"9B63100E8D8C98042AD29A331A5721575A5C9E3655337516FA888320A52BF545"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 37ec1085-03d0-474e-aacb-c06580eafa52 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=816&$top=1645&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=818&$top=1643&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=820&$top=1641&$maxpagesize=2"}' + headers: + apim-request-id: 9b22556d-e66e-423b-b582-fce50e6b70bc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:37 GMT + etag: '"CA2A7473E5FA707609F050DC2A4A4F4109E1C685AB3C3430F9B8B3F79856F98D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9b22556d-e66e-423b-b582-fce50e6b70bc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=818&$top=1643&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=820&$top=1641&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=822&$top=1639&$maxpagesize=2"}' + headers: + apim-request-id: 1cc642d1-4078-4974-80ae-8ddbf3fa46b1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:37 GMT + etag: '"7EDFB601BBD19905B848FD2788638FE28E4A6DE70921DA63C5E1E8846897FFC3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1cc642d1-4078-4974-80ae-8ddbf3fa46b1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=820&$top=1641&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=822&$top=1639&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=824&$top=1637&$maxpagesize=2"}' + headers: + apim-request-id: 8fe8f99e-ec24-4774-88f2-6a6175d5f88f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:38 GMT + etag: '"34A57A274A73E5C02C1AD2E6C63213EA1B710B56B4F2AE06B9182B18D7F79811"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8fe8f99e-ec24-4774-88f2-6a6175d5f88f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=822&$top=1639&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=824&$top=1637&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=826&$top=1635&$maxpagesize=2"}' + headers: + apim-request-id: ac24a69b-1cc0-4e53-8b71-f5cf5310de0b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:38 GMT + etag: '"643AF438F1B95EC5AB3A01D4244022B5976C47103425A91D4A9D7A7E66A8E46A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ac24a69b-1cc0-4e53-8b71-f5cf5310de0b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=824&$top=1637&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=826&$top=1635&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=828&$top=1633&$maxpagesize=2"}' + headers: + apim-request-id: a6c790a6-3459-4dc5-adde-c159e655eea6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:38 GMT + etag: '"0A4C190B96F1EF2611BBA92229D49B03106DDECA030910DB609F90CC3D651B94"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a6c790a6-3459-4dc5-adde-c159e655eea6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=826&$top=1635&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=828&$top=1633&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=830&$top=1631&$maxpagesize=2"}' + headers: + apim-request-id: bf39175a-6474-4a45-981e-2430828856a4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:38 GMT + etag: '"09FC0C7042C10BDCE443C58A9E23024C2C9F565009A736646032E0ED8466BCD7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bf39175a-6474-4a45-981e-2430828856a4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=828&$top=1633&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=830&$top=1631&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=832&$top=1629&$maxpagesize=2"}' + headers: + apim-request-id: 812b1ab2-fa92-4cda-9e74-db7a75c39499 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:38 GMT + etag: '"0CC59163051E4C7A08A459B8EFBDF95B2AA95E76E2CEF685FD73DD29134147EE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 812b1ab2-fa92-4cda-9e74-db7a75c39499 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=830&$top=1631&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=832&$top=1629&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=834&$top=1627&$maxpagesize=2"}' + headers: + apim-request-id: ed30f491-f2e7-47fd-99c0-6f6fa6028af6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:38 GMT + etag: '"5A1044E39B653F916FDD09F8A38D8951A69D4BF36D52D120769695A19381C80D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ed30f491-f2e7-47fd-99c0-6f6fa6028af6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=832&$top=1629&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=834&$top=1627&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=836&$top=1625&$maxpagesize=2"}' + headers: + apim-request-id: 684e073f-3d08-4d27-b2e5-efe3e1fd46b4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:39 GMT + etag: '"D9ECB8D0571F6B33D3B96B3210CBAEFF18F3BE52C4759E5EC3FBA00E9EF075EC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 684e073f-3d08-4d27-b2e5-efe3e1fd46b4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=834&$top=1627&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=836&$top=1625&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=838&$top=1623&$maxpagesize=2"}' + headers: + apim-request-id: a2da1f94-cc51-4975-8ecb-3f9e7aa2c644 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:39 GMT + etag: '"0779F3B05B14AEC9360E8640EDFD235C6E36DDB59F62E3F08BBE88B3011046DD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a2da1f94-cc51-4975-8ecb-3f9e7aa2c644 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=836&$top=1625&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=838&$top=1623&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=840&$top=1621&$maxpagesize=2"}' + headers: + apim-request-id: a77c8a81-b200-4233-9525-819922c91f35 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:39 GMT + etag: '"2087BF9F529ADF8A6328E26194EAAAD5791FB7E81D900A999A27E14D1F533B46"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a77c8a81-b200-4233-9525-819922c91f35 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=838&$top=1623&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=840&$top=1621&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=842&$top=1619&$maxpagesize=2"}' + headers: + apim-request-id: a8d5ac94-3e53-4500-bd45-b0344c3d5a1c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:39 GMT + etag: '"1F4A8D60045619E3C1210D5D9A0DCAFF44B9A4976A0077796D23D307DBAF769A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a8d5ac94-3e53-4500-bd45-b0344c3d5a1c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=840&$top=1621&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=842&$top=1619&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=844&$top=1617&$maxpagesize=2"}' + headers: + apim-request-id: 35ececb6-b2d0-451c-959a-96e4079cb279 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:39 GMT + etag: '"62F7CAF095078BEB5CE7873C287B4AB12E17209A225013DC0F28FB304F747AB2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 35ececb6-b2d0-451c-959a-96e4079cb279 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=842&$top=1619&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=844&$top=1617&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=846&$top=1615&$maxpagesize=2"}' + headers: + apim-request-id: 90d0093b-e40e-4f2f-8d1a-e6843a3ecf18 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:39 GMT + etag: '"17878795F5ED1BE5A66B297811AA847E7AC8CA35957198482A8D349CDCB62DFB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 90d0093b-e40e-4f2f-8d1a-e6843a3ecf18 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=844&$top=1617&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=846&$top=1615&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=848&$top=1613&$maxpagesize=2"}' + headers: + apim-request-id: 2fa9b2b9-e3d9-4489-9d95-5148b5b90f28 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:40 GMT + etag: '"EF15DEEB719F7249CDB20F5DE6F052D053615E5574873F35287450F227CF2A85"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2fa9b2b9-e3d9-4489-9d95-5148b5b90f28 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=846&$top=1615&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=848&$top=1613&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1611&$maxpagesize=2"}' + headers: + apim-request-id: 638b3c5c-b14e-4edc-8e8b-dfa50115718d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:40 GMT + etag: '"96F4B3DE98F4A26570B6D8D4E97AE367492258BD316AE2D0B19065EBB34964D2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 638b3c5c-b14e-4edc-8e8b-dfa50115718d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=848&$top=1613&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1611&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=852&$top=1609&$maxpagesize=2"}' + headers: + apim-request-id: 8be8dc2b-84f2-4f60-83b1-db36add51ead + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:40 GMT + etag: '"546594DB6291BF0D93F6C7D8F77E6957EE43D25565A36445A699E635C67233BE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8be8dc2b-84f2-4f60-83b1-db36add51ead + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=850&$top=1611&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=852&$top=1609&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=854&$top=1607&$maxpagesize=2"}' + headers: + apim-request-id: fc945e2c-edee-4f1d-8a9a-c868f020cb3d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:40 GMT + etag: '"FE135076D38042F956445A42EEB61A985BBC86598AE59D176CEC8FA007C24333"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fc945e2c-edee-4f1d-8a9a-c868f020cb3d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=852&$top=1609&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=854&$top=1607&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=856&$top=1605&$maxpagesize=2"}' + headers: + apim-request-id: 04d356dc-c286-46fc-8419-e7b836cc820a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:40 GMT + etag: '"251F22E83302B756CDF74E4F1A887D518022E8E8CA953516DB91FC619C237F80"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 04d356dc-c286-46fc-8419-e7b836cc820a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=854&$top=1607&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=856&$top=1605&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=858&$top=1603&$maxpagesize=2"}' + headers: + apim-request-id: 47d64d6c-faa5-4616-a2bb-ce2597ef1c44 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:41 GMT + etag: '"90ECD37999218880B64D82F8BC6FE48CCA30B02359C688315A9AAC7FFEEE7DC0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 47d64d6c-faa5-4616-a2bb-ce2597ef1c44 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=856&$top=1605&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=858&$top=1603&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=860&$top=1601&$maxpagesize=2"}' + headers: + apim-request-id: bd71bb3e-d7a5-48e1-8e33-c4eb04acb112 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:41 GMT + etag: '"FE04F4E4FF41BFDF9BE3599CF1E017199BD9AACFCB4CDAF658CBD3F7EF541C53"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bd71bb3e-d7a5-48e1-8e33-c4eb04acb112 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=858&$top=1603&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=860&$top=1601&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=862&$top=1599&$maxpagesize=2"}' + headers: + apim-request-id: c4382655-cd12-4186-80f9-a6a2998c093a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:41 GMT + etag: '"31EE92245E9B5C0BE0141597B9619DC7E51EFDF20D1E2C649449D676D0C80365"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c4382655-cd12-4186-80f9-a6a2998c093a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=860&$top=1601&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=862&$top=1599&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=864&$top=1597&$maxpagesize=2"}' + headers: + apim-request-id: 262d0bc8-a7e1-4783-896b-ddf7d946296f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:41 GMT + etag: '"0C8D3AABDE7DACC17B5AFEE5D51E34404D1773E0526CE02D5E747CBDC41BADEE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 262d0bc8-a7e1-4783-896b-ddf7d946296f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=862&$top=1599&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=864&$top=1597&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=866&$top=1595&$maxpagesize=2"}' + headers: + apim-request-id: 3ab94808-07c1-4a2d-b65c-cd944b1f2a40 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:41 GMT + etag: '"7F72D8D8C30C4904BC1F858C85268C0A88376A3237C0C7CF9D7E3341140606B6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3ab94808-07c1-4a2d-b65c-cd944b1f2a40 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=864&$top=1597&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=866&$top=1595&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=868&$top=1593&$maxpagesize=2"}' + headers: + apim-request-id: 18836d14-65d0-4378-b5f5-f4e0cb918d22 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:41 GMT + etag: '"44CD1A3597DFA09DEB101275BC5607343742FE79622CD541998B66F74C47F0AF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 18836d14-65d0-4378-b5f5-f4e0cb918d22 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=866&$top=1595&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=868&$top=1593&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=870&$top=1591&$maxpagesize=2"}' + headers: + apim-request-id: 5b7372f1-50e8-4f1b-a412-c54c4bc78b9b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:42 GMT + etag: '"6E57E7D62E06DCFAC8BDF82FD07085E4BE62E737835B01E2A154EC3D3C4E7CBE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5b7372f1-50e8-4f1b-a412-c54c4bc78b9b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=868&$top=1593&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=870&$top=1591&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=872&$top=1589&$maxpagesize=2"}' + headers: + apim-request-id: 044d01fa-6d56-47d7-b147-34525c4e4191 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:42 GMT + etag: '"D6000B5EE6D2ED70936CFD295E26759622FD4230E2504A53EB35A8D673AA97CE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 044d01fa-6d56-47d7-b147-34525c4e4191 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=870&$top=1591&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=872&$top=1589&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=874&$top=1587&$maxpagesize=2"}' + headers: + apim-request-id: a07f4534-50d6-4274-9402-b6621372a151 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:42 GMT + etag: '"627B0D3D6F052ED99429A9BCFD5DEC3034EE396778F0AA7B73CB2440529076F2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a07f4534-50d6-4274-9402-b6621372a151 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=872&$top=1589&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=874&$top=1587&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=876&$top=1585&$maxpagesize=2"}' + headers: + apim-request-id: 36f405a9-705c-4122-8c42-c20d0d498c13 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:42 GMT + etag: '"0DA6D2AC52A6BA8718BC458048DE9852DEF75D074C8A66145D27547813003C9F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 36f405a9-705c-4122-8c42-c20d0d498c13 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=874&$top=1587&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=876&$top=1585&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=878&$top=1583&$maxpagesize=2"}' + headers: + apim-request-id: 5a6801f2-4dd1-4bf1-a702-72e2d0843088 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:42 GMT + etag: '"0FC127BE1B19B295B0DF34C2010926CC121FC33AC5DA2C375545931E0589D006"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5a6801f2-4dd1-4bf1-a702-72e2d0843088 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=876&$top=1585&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=878&$top=1583&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=880&$top=1581&$maxpagesize=2"}' + headers: + apim-request-id: 131abc9c-f704-43c6-b99e-252a6eba4f8e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:42 GMT + etag: '"EB22EA361FE465308AA813F6B2A95AE8BBC2815D1BF93F52C33864A5D273A50C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 131abc9c-f704-43c6-b99e-252a6eba4f8e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=878&$top=1583&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=880&$top=1581&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=882&$top=1579&$maxpagesize=2"}' + headers: + apim-request-id: 783a6b38-af91-4eb5-aa07-9e1f907ed701 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:43 GMT + etag: '"276FCBC3B7B34E6E3C38CEDA2987E26B09C5D9557C5D0E0950632AF09935062A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 783a6b38-af91-4eb5-aa07-9e1f907ed701 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=880&$top=1581&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=882&$top=1579&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=884&$top=1577&$maxpagesize=2"}' + headers: + apim-request-id: be513572-337e-4926-93bc-8ca095d870e2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:43 GMT + etag: '"C2515B45796547F5427E8208B221C33FF6537D524A712A457D1D4809FCF4BAA0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: be513572-337e-4926-93bc-8ca095d870e2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=882&$top=1579&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=884&$top=1577&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=886&$top=1575&$maxpagesize=2"}' + headers: + apim-request-id: 469262fd-cbc1-415c-84b4-0b3b1f1b0b17 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:43 GMT + etag: '"E50B8FAE4A6D5A2ABB2475510C47D0E7A575A4F4D209DCC218C7875A36D4EA6B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 469262fd-cbc1-415c-84b4-0b3b1f1b0b17 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=884&$top=1577&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=886&$top=1575&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=888&$top=1573&$maxpagesize=2"}' + headers: + apim-request-id: 0018deec-2732-4abc-903e-7a6157447148 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:43 GMT + etag: '"6C0D18F7A027ABCDAF3B444E3F8EF1BC51EAD0E6FA29E50585D1F342E9242E08"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0018deec-2732-4abc-903e-7a6157447148 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=886&$top=1575&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=888&$top=1573&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=890&$top=1571&$maxpagesize=2"}' + headers: + apim-request-id: 6f57db93-05e9-4ab8-98c6-65a9efa05fa3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:43 GMT + etag: '"586DDCFED5255441D402859962884909A769CBEDE907C6BBB46B80E4AD2FB9E2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6f57db93-05e9-4ab8-98c6-65a9efa05fa3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=888&$top=1573&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=890&$top=1571&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=892&$top=1569&$maxpagesize=2"}' + headers: + apim-request-id: 4ffb41e5-50d7-4c84-be73-4414910b0b82 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:43 GMT + etag: '"445A6AD608A2BCB1C51E0D92111DE49A4C47CFFEBBE050B9CFD2AD53EFB43D11"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4ffb41e5-50d7-4c84-be73-4414910b0b82 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=890&$top=1571&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=892&$top=1569&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=894&$top=1567&$maxpagesize=2"}' + headers: + apim-request-id: 2822c771-4af3-4ef7-80b4-c85d0a071025 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:44 GMT + etag: '"9161A4FA270AD41685D9AE534EA09BC7711C7384B22D3B1CFF546FBF46FA9D54"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2822c771-4af3-4ef7-80b4-c85d0a071025 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=892&$top=1569&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=894&$top=1567&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=896&$top=1565&$maxpagesize=2"}' + headers: + apim-request-id: cb0866ff-3caf-4853-a519-83962e216c2d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:44 GMT + etag: '"64659490B9AE6A638D6B061A1073A199AC3FDC907DC4EBBF0120181D6FEC34B5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cb0866ff-3caf-4853-a519-83962e216c2d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=894&$top=1567&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=896&$top=1565&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=898&$top=1563&$maxpagesize=2"}' + headers: + apim-request-id: 6b4d219e-6a72-46ea-b460-de0a31cb806f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:44 GMT + etag: '"46E8134A202D764A65221703A46418DB84A52068A762A33762354696508196C7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6b4d219e-6a72-46ea-b460-de0a31cb806f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=896&$top=1565&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=898&$top=1563&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1561&$maxpagesize=2"}' + headers: + apim-request-id: d3a29947-c4e4-4907-b6a1-c4cee017ad8b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:44 GMT + etag: '"6101F44B2481686E3D3753775D4E4C49D14B6C199C1A8194363BAC4487FA4E8A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d3a29947-c4e4-4907-b6a1-c4cee017ad8b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=898&$top=1563&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1561&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=902&$top=1559&$maxpagesize=2"}' + headers: + apim-request-id: 4c398866-657c-459f-aac0-7bd083a9fd0e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:44 GMT + etag: '"11A0AFF49BCBBD2ABF25C731C8FFBC92CBDB243A8984ACE50B4C544C97A7724F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4c398866-657c-459f-aac0-7bd083a9fd0e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=900&$top=1561&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=902&$top=1559&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=904&$top=1557&$maxpagesize=2"}' + headers: + apim-request-id: 3f9b7caa-edd5-4d3f-bbb3-873aa753a4db + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:45 GMT + etag: '"C15D8B17E11CE04FE1325241448BE56EB9DA3C9C0B07307C236535CB4E879397"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3f9b7caa-edd5-4d3f-bbb3-873aa753a4db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=902&$top=1559&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=904&$top=1557&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=906&$top=1555&$maxpagesize=2"}' + headers: + apim-request-id: bd8c999e-2415-43bf-b63e-f98259acf4cd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:45 GMT + etag: '"21A5E9FE814E2D939A05CAE7B03A66285DDF065EB4908E2B1B4600D83E703804"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bd8c999e-2415-43bf-b63e-f98259acf4cd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=904&$top=1557&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=906&$top=1555&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=908&$top=1553&$maxpagesize=2"}' + headers: + apim-request-id: 805d2c56-bd5b-4cee-accc-be12e5ffee08 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:45 GMT + etag: '"C41BA3CF78024404594A80B7C97353FA29E8B0BE73EA9D332116138034746046"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 805d2c56-bd5b-4cee-accc-be12e5ffee08 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=906&$top=1555&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=908&$top=1553&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=910&$top=1551&$maxpagesize=2"}' + headers: + apim-request-id: ebb59e1c-ffd1-4a4e-9b63-66218dec56f0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:45 GMT + etag: '"8082BE579A1DD9887CFC3D87D6FB378CF42A4172D00A04BD374800BAD03C06FB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ebb59e1c-ffd1-4a4e-9b63-66218dec56f0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=908&$top=1553&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=910&$top=1551&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=912&$top=1549&$maxpagesize=2"}' + headers: + apim-request-id: 518d73ec-16e1-4faa-a792-ffe2337704c2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:45 GMT + etag: '"DFD0F7ACACF420B5AD1544A52A7827200C06FFCAEE487202B425BC8016E42B33"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 518d73ec-16e1-4faa-a792-ffe2337704c2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=910&$top=1551&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=912&$top=1549&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=914&$top=1547&$maxpagesize=2"}' + headers: + apim-request-id: b821e720-c55c-4d5f-bce9-8c2b5c2887ea + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:45 GMT + etag: '"CE2521317BCB22F88FB90992DB78B2E49D9C06EC46E72FAB924F68CE961638E6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b821e720-c55c-4d5f-bce9-8c2b5c2887ea + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=912&$top=1549&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=914&$top=1547&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=916&$top=1545&$maxpagesize=2"}' + headers: + apim-request-id: ff528268-511b-4047-b698-461708deca5e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:46 GMT + etag: '"792A1AC76C9A229FD6C2D7BD0A6DAA8C3900E8D8E95981F22FAAB7E1772680C5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ff528268-511b-4047-b698-461708deca5e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=914&$top=1547&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=916&$top=1545&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=918&$top=1543&$maxpagesize=2"}' + headers: + apim-request-id: 9e9ba0df-56bf-411a-be4d-e4328b43c390 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:46 GMT + etag: '"373A9238235D0E88E6E7D08AC87EA18BB155939D9CCC6680DE7FCEA5107B888D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9e9ba0df-56bf-411a-be4d-e4328b43c390 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=916&$top=1545&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=918&$top=1543&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=920&$top=1541&$maxpagesize=2"}' + headers: + apim-request-id: 84dae3a4-0593-4255-8e84-7720a417afa1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:46 GMT + etag: '"2BC4BCD2CF929319567E3FADA622F2822BF58D43CC1D2CC2CAC28D7A20317BDE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 84dae3a4-0593-4255-8e84-7720a417afa1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=918&$top=1543&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=920&$top=1541&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=922&$top=1539&$maxpagesize=2"}' + headers: + apim-request-id: d4f46b61-638b-4fe3-bd54-ed480f069dee + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:46 GMT + etag: '"6006485DD5D6D6720582502E5E88653AB2D4A5372CA4E964E4AD8AE5F2F16F1E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d4f46b61-638b-4fe3-bd54-ed480f069dee + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=920&$top=1541&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=922&$top=1539&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=924&$top=1537&$maxpagesize=2"}' + headers: + apim-request-id: 3000fbd3-03f4-407f-bc0d-0cc96b11a88d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:46 GMT + etag: '"A1223B7E37B14015BDD0332EE043F7454AE2F1D34A8648044DA1DAFC7242B48E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3000fbd3-03f4-407f-bc0d-0cc96b11a88d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=922&$top=1539&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=924&$top=1537&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=926&$top=1535&$maxpagesize=2"}' + headers: + apim-request-id: ea4ebab3-ab64-40cc-aa9a-861c9c930dab + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:47 GMT + etag: '"7DB95FED980CC6E6199B88B12FCF11FDD1206F9A5986ADF090E9C6C2DC40D67F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ea4ebab3-ab64-40cc-aa9a-861c9c930dab + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=924&$top=1537&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=926&$top=1535&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=928&$top=1533&$maxpagesize=2"}' + headers: + apim-request-id: 97ddaae6-c243-4280-8c3a-185043da2920 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:47 GMT + etag: '"229F1357B7721F426DCE3EEC1DEC4391F7D0C58141FBCC5B5E6953FBB44DEB7A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 97ddaae6-c243-4280-8c3a-185043da2920 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=926&$top=1535&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=928&$top=1533&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=930&$top=1531&$maxpagesize=2"}' + headers: + apim-request-id: 872dabc9-0e06-4154-823f-5cf81d130b00 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:47 GMT + etag: '"7E3843E3C8953FDB0FC63ED34EDA6B45C8C281D909067A91B4A8E3B27E4B18B4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 872dabc9-0e06-4154-823f-5cf81d130b00 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=928&$top=1533&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=930&$top=1531&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=932&$top=1529&$maxpagesize=2"}' + headers: + apim-request-id: c28ae3bc-ab58-438b-9887-287b94588b20 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:47 GMT + etag: '"C02E475DDE2D5894114DE62E60B5471DF208F72B985562DC2803BEE17193DC6F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c28ae3bc-ab58-438b-9887-287b94588b20 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=930&$top=1531&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=932&$top=1529&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=934&$top=1527&$maxpagesize=2"}' + headers: + apim-request-id: 1402b003-e737-4f43-ab06-134da598cf4a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:47 GMT + etag: '"FD44A13231DEC328A9DA06C13B05DE120A74168F9677C287FE10E657C13D0D05"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1402b003-e737-4f43-ab06-134da598cf4a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=932&$top=1529&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=934&$top=1527&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=936&$top=1525&$maxpagesize=2"}' + headers: + apim-request-id: e3904974-f4b3-4c5f-a760-67270218293d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:48 GMT + etag: '"63683FBEB28D9A6EB8C243F8E10CA89A08372D8F074FFA836255191131C79DB1"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e3904974-f4b3-4c5f-a760-67270218293d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=934&$top=1527&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=936&$top=1525&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=938&$top=1523&$maxpagesize=2"}' + headers: + apim-request-id: 68e80b01-7c87-42b4-8eed-b6c842c9a134 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:48 GMT + etag: '"6E76CB30C886A2B1464EBA698BC6F2041279B6B86A85B67E8B2A9078ED0CB065"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 68e80b01-7c87-42b4-8eed-b6c842c9a134 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=936&$top=1525&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=938&$top=1523&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=940&$top=1521&$maxpagesize=2"}' + headers: + apim-request-id: b8dac123-05c0-417d-8f1a-fcb8db1ed28f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:49 GMT + etag: '"C1E6D2C4F6280218047622CC58F7AC42C7328DF78B8B95234C254AED40FD6BDE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b8dac123-05c0-417d-8f1a-fcb8db1ed28f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=938&$top=1523&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=940&$top=1521&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=942&$top=1519&$maxpagesize=2"}' + headers: + apim-request-id: c3386166-ae89-4f1b-9177-75e41159a87d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:49 GMT + etag: '"2DDB23FEA0122D73A4CDD165480858432414A2C353DDAB9E726E5C9A7023FBFA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c3386166-ae89-4f1b-9177-75e41159a87d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=940&$top=1521&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=942&$top=1519&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=944&$top=1517&$maxpagesize=2"}' + headers: + apim-request-id: c2b084ba-f693-4ed5-86fc-d0b90e1c9618 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:49 GMT + etag: '"3DFB08EA6BAD7B756293B05A4A754D671D1303F9B77FE25EA573C74A136982F4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c2b084ba-f693-4ed5-86fc-d0b90e1c9618 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=942&$top=1519&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=944&$top=1517&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=946&$top=1515&$maxpagesize=2"}' + headers: + apim-request-id: ca517f75-6bac-4f7c-892b-ebf4b8609120 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:49 GMT + etag: '"8BBDEA577B9E079729A81DCD4A2D1F2480A392D15398B5D61CA82D12D945B666"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ca517f75-6bac-4f7c-892b-ebf4b8609120 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=944&$top=1517&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=946&$top=1515&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=948&$top=1513&$maxpagesize=2"}' + headers: + apim-request-id: d31953ca-5153-44e7-a356-84a7776ff7ae + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:50 GMT + etag: '"F8A481FE4A983DAAD6CBECB3DFADA95ECB8D9E38D08F3F25E76379597E87E650"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d31953ca-5153-44e7-a356-84a7776ff7ae + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=946&$top=1515&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=948&$top=1513&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1511&$maxpagesize=2"}' + headers: + apim-request-id: 93596951-c6a2-4d9d-a058-554511d76303 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:50 GMT + etag: '"E028FFDDA840998AA11786A24C3AEE2A1E5EFCF759B2FA3C26154E9A6CD36EF8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 93596951-c6a2-4d9d-a058-554511d76303 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=948&$top=1513&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1511&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=952&$top=1509&$maxpagesize=2"}' + headers: + apim-request-id: 6d4dfc4b-2e41-49a0-b9b7-0674be28f007 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:50 GMT + etag: '"3D70033F9BC1FABBA283D8B9B0AE0E837EDEE2F69E9E8E6201E02B3073119339"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6d4dfc4b-2e41-49a0-b9b7-0674be28f007 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=950&$top=1511&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=952&$top=1509&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=954&$top=1507&$maxpagesize=2"}' + headers: + apim-request-id: fb0354a7-73d1-41a9-8f98-a468bb0a62af + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:50 GMT + etag: '"E531D4064FD705EC9DC76D008686D7EAF54338F76FDC93B41B0240937E97E7D2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fb0354a7-73d1-41a9-8f98-a468bb0a62af + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=952&$top=1509&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=954&$top=1507&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=956&$top=1505&$maxpagesize=2"}' + headers: + apim-request-id: fce22f99-45e6-42be-bdb0-31e931c8a7a8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:50 GMT + etag: '"B5460421975472677DB21E4D0E3416D1D5424EA72E823ADAB2F3C142299B612E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fce22f99-45e6-42be-bdb0-31e931c8a7a8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=954&$top=1507&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=956&$top=1505&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=958&$top=1503&$maxpagesize=2"}' + headers: + apim-request-id: a5c77b57-92f6-447c-89f4-1a7ef35f76d0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:50 GMT + etag: '"C3E66CC7ECBB932285C320F256610E54CCB7B616BB6435E7845AD6DEAA611B7E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a5c77b57-92f6-447c-89f4-1a7ef35f76d0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=956&$top=1505&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=958&$top=1503&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=960&$top=1501&$maxpagesize=2"}' + headers: + apim-request-id: ae4d00a7-f991-47bd-9a46-ac1d322fb836 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:51 GMT + etag: '"11D042AAB88A2F8DB9F6827A995486ACE71DB4694CE754B3F11CDCBC9945A3D6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ae4d00a7-f991-47bd-9a46-ac1d322fb836 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=958&$top=1503&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=960&$top=1501&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=962&$top=1499&$maxpagesize=2"}' + headers: + apim-request-id: 2574a8d8-ec44-47ac-bd59-4e81d2712694 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:51 GMT + etag: '"35D948E4B5E884539C40C81780B7C5FB36AA1FBF4D8A760F147CF97FCDFEDF0A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2574a8d8-ec44-47ac-bd59-4e81d2712694 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=960&$top=1501&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=962&$top=1499&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=964&$top=1497&$maxpagesize=2"}' + headers: + apim-request-id: d726683a-feb6-4580-a398-9256f9d212db + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:51 GMT + etag: '"98FA0D85B7E02C0BB1CB42269006A5ABD2C5F7A492ACBE208D36DFBD1CDB44E6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d726683a-feb6-4580-a398-9256f9d212db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=962&$top=1499&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=964&$top=1497&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=966&$top=1495&$maxpagesize=2"}' + headers: + apim-request-id: c5da75ae-82d1-435d-98e6-57f4f91c81d6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:51 GMT + etag: '"E660E92390E0ECEB112EE1667CD21158607BAFF2C08649879B96FD8EC2254498"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c5da75ae-82d1-435d-98e6-57f4f91c81d6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=964&$top=1497&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=966&$top=1495&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=968&$top=1493&$maxpagesize=2"}' + headers: + apim-request-id: ec198b4d-2cee-4b54-b17c-75413db02320 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:52 GMT + etag: '"8852BDC08028E6CAA734C26E86650C8B777A67ADE5B03BF628CFC8F6A0C70F79"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ec198b4d-2cee-4b54-b17c-75413db02320 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=966&$top=1495&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=968&$top=1493&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=970&$top=1491&$maxpagesize=2"}' + headers: + apim-request-id: fb87eb6b-ba12-44b9-8431-8cf671a000e6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:52 GMT + etag: '"253924484259A095DFE1A13C2BC718D8CE9FFE465825E6E425FA141A71971518"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fb87eb6b-ba12-44b9-8431-8cf671a000e6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=968&$top=1493&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=970&$top=1491&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=972&$top=1489&$maxpagesize=2"}' + headers: + apim-request-id: 58c5fd5e-1b23-421c-ac43-1053c84cd9e4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:52 GMT + etag: '"1D88E102CF2269006EB1A0FDE9D782D4E64E9C77D4C67AD79284B2592CEC257E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 58c5fd5e-1b23-421c-ac43-1053c84cd9e4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=970&$top=1491&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=972&$top=1489&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=974&$top=1487&$maxpagesize=2"}' + headers: + apim-request-id: 444ca86f-51b4-413b-a747-63103d4b2b03 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:52 GMT + etag: '"C18CC3E828288AF02C995750C868F53E8416B9C8F4C134240190D99FA969DCF0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 444ca86f-51b4-413b-a747-63103d4b2b03 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=972&$top=1489&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=974&$top=1487&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=976&$top=1485&$maxpagesize=2"}' + headers: + apim-request-id: ffcf13f3-51f7-42b6-bdd7-db825ad385ca + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:52 GMT + etag: '"CEE83A406C417F6C52B68EA2C0707179FBC73FE604AAA8E4BA0EB89F0B3E6E0F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ffcf13f3-51f7-42b6-bdd7-db825ad385ca + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=974&$top=1487&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=976&$top=1485&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=978&$top=1483&$maxpagesize=2"}' + headers: + apim-request-id: f6d1b6ee-11c2-4f62-8882-8894ee927524 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:53 GMT + etag: '"BE99DDD8D3FA6CF54CC9094DA4AD89CE9798CFEA5B77FA1E793415F6DCAED0EB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f6d1b6ee-11c2-4f62-8882-8894ee927524 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=976&$top=1485&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=978&$top=1483&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=980&$top=1481&$maxpagesize=2"}' + headers: + apim-request-id: df7a56e7-438f-42fd-88b2-c45ed2484dc2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:53 GMT + etag: '"F4A994F2EE2DF7BF53B9FC77A004DCBF71111A5B034800924ECE99D82D0F39F5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: df7a56e7-438f-42fd-88b2-c45ed2484dc2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=978&$top=1483&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=980&$top=1481&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=982&$top=1479&$maxpagesize=2"}' + headers: + apim-request-id: 6cc21d12-966f-4550-94a6-7349b8a34c99 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:53 GMT + etag: '"EB746FD1CA860294DA80C1EF664E96D9552C9DE9C66517E34122169067C2A19F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6cc21d12-966f-4550-94a6-7349b8a34c99 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=980&$top=1481&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=982&$top=1479&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=984&$top=1477&$maxpagesize=2"}' + headers: + apim-request-id: 11290a9e-ab89-42df-ac69-f02d76811a50 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:53 GMT + etag: '"0303D8F5107DAF0C495551451A731DB194059CD6684B10D68750504662B3BB3E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 11290a9e-ab89-42df-ac69-f02d76811a50 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=982&$top=1479&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=984&$top=1477&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=986&$top=1475&$maxpagesize=2"}' + headers: + apim-request-id: 1e4eb8bc-a179-4669-a8c8-5d4a56765cb4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:53 GMT + etag: '"2B699C42183989224311235E3C9D4D5651ECB72DC9C5AE30A0C97457D269E418"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1e4eb8bc-a179-4669-a8c8-5d4a56765cb4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=984&$top=1477&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=986&$top=1475&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=988&$top=1473&$maxpagesize=2"}' + headers: + apim-request-id: 2ad2eb11-8b7c-4338-be5d-f23b5bc52bb3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:53 GMT + etag: '"A1D437CE2BD112F52E5314967485AAB43952369C7246643FD8D885C88BC780E4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2ad2eb11-8b7c-4338-be5d-f23b5bc52bb3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=986&$top=1475&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=988&$top=1473&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=990&$top=1471&$maxpagesize=2"}' + headers: + apim-request-id: fbda5130-7558-4593-920d-fb585deab778 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:54 GMT + etag: '"D9D1630BCA1977CD3890B68A2F824EA4871FE6495C6700E645115FB9EA853D52"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fbda5130-7558-4593-920d-fb585deab778 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=988&$top=1473&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=990&$top=1471&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=992&$top=1469&$maxpagesize=2"}' + headers: + apim-request-id: e91f65d5-dfeb-4939-ac99-c1e5636d8882 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:54 GMT + etag: '"685301453ADFBF0952EE5A39EA25AEF00938DE77B6BED9FA41E096218A9A5918"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e91f65d5-dfeb-4939-ac99-c1e5636d8882 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=990&$top=1471&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=992&$top=1469&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=994&$top=1467&$maxpagesize=2"}' + headers: + apim-request-id: bb2018df-31b1-48a7-9e98-b7d27fd11bee + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:54 GMT + etag: '"C955FB48B168CADC0ADEF6227517A7610AC6441DCD20410BB097EEE3B02384C9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bb2018df-31b1-48a7-9e98-b7d27fd11bee + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=992&$top=1469&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=994&$top=1467&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=996&$top=1465&$maxpagesize=2"}' + headers: + apim-request-id: 2f653f6e-fab4-4a83-9a15-f3f354642369 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:54 GMT + etag: '"D7866E0E6BC4E5D3C68635F804C8EEDFB98D4D71DFF366E8FFA588B1A0C036DF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2f653f6e-fab4-4a83-9a15-f3f354642369 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=994&$top=1467&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=996&$top=1465&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=998&$top=1463&$maxpagesize=2"}' + headers: + apim-request-id: b95c957a-e91d-4c4d-b21b-1d50d8dd0556 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:54 GMT + etag: '"00CD9D079026D0394DFBCDD0F827ED7E4AA679C122BE5925A66941FDCE457BFA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b95c957a-e91d-4c4d-b21b-1d50d8dd0556 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=996&$top=1465&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=998&$top=1463&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1461&$maxpagesize=2"}' + headers: + apim-request-id: 0f28cd1c-17dc-4331-a114-f2fa0bb50c3c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:55 GMT + etag: '"FD573DBAA9A781852859DF7C3C8E5E35CF81823F9570393E9D8F3F726DFC0DA3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0f28cd1c-17dc-4331-a114-f2fa0bb50c3c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=998&$top=1463&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1461&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1002&$top=1459&$maxpagesize=2"}' + headers: + apim-request-id: 0293ceac-4607-4173-85c2-c23d6a4987e7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:55 GMT + etag: '"90B84A13F414E98FA973F7E6A3FD9330E04E56AEE90EBDD7EF4096BC61ECEBB5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0293ceac-4607-4173-85c2-c23d6a4987e7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1000&$top=1461&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1002&$top=1459&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1004&$top=1457&$maxpagesize=2"}' + headers: + apim-request-id: 7b962d33-b2af-4250-9b63-77fbc4bdd92c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:55 GMT + etag: '"FAC10D3432E3607B298F40836D06E88DB400C2096F6221857789B073E90CD35C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7b962d33-b2af-4250-9b63-77fbc4bdd92c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1002&$top=1459&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1004&$top=1457&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1006&$top=1455&$maxpagesize=2"}' + headers: + apim-request-id: 52aef1c2-f260-43ab-a8b4-6136e0399bf9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:55 GMT + etag: '"4019C24184DB4B6CA2F7EF2A31801A6C5219BD2FE266ED9CD1DB563B3312BAA3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 52aef1c2-f260-43ab-a8b4-6136e0399bf9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1004&$top=1457&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1006&$top=1455&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1008&$top=1453&$maxpagesize=2"}' + headers: + apim-request-id: d611dfeb-1cc0-4db2-940c-57082372b3a3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:55 GMT + etag: '"45DB4E1BBD5FAD31841B8ACA6F82F2742674FC1AEC1E6C0A3CB28E123F612F79"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d611dfeb-1cc0-4db2-940c-57082372b3a3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1006&$top=1455&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1008&$top=1453&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1010&$top=1451&$maxpagesize=2"}' + headers: + apim-request-id: 300a6856-5103-4329-87e0-079792ed99ed + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:56 GMT + etag: '"31F83953428314C7C6232FB673FB8677CCF1CF0084B645F54250CA00AAAEE648"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 300a6856-5103-4329-87e0-079792ed99ed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1008&$top=1453&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1010&$top=1451&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1012&$top=1449&$maxpagesize=2"}' + headers: + apim-request-id: be0222e7-ff76-491a-805d-d52244cf1f35 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:56 GMT + etag: '"2F3C86FF52D1CFA3332BBEAB797069CFAC99AC3F923FDEE79C333DD155DE4599"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: be0222e7-ff76-491a-805d-d52244cf1f35 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1010&$top=1451&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1012&$top=1449&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1014&$top=1447&$maxpagesize=2"}' + headers: + apim-request-id: eb86c27d-9e38-467c-8807-2aae55b7d277 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:56 GMT + etag: '"E5436262B77FE60BFEB2046DD445DC7616CAA3D7683FD52165CE444B00E52583"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eb86c27d-9e38-467c-8807-2aae55b7d277 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1012&$top=1449&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1014&$top=1447&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1016&$top=1445&$maxpagesize=2"}' + headers: + apim-request-id: 111f41c8-9d82-4c4f-9b85-b2bb81fcf973 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:56 GMT + etag: '"2363AD035716C6EFEDBF96EC20D5B8CAC99869D7C1B4EC280F8738376EFC0E8D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 111f41c8-9d82-4c4f-9b85-b2bb81fcf973 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1014&$top=1447&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1016&$top=1445&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1018&$top=1443&$maxpagesize=2"}' + headers: + apim-request-id: 5021c7af-1932-4d7b-92b8-d51cd8ac3d15 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:56 GMT + etag: '"1D490BB742251FF68F7BFA685C5BB66321953E24EEE17BF7832330735DB6C3E5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5021c7af-1932-4d7b-92b8-d51cd8ac3d15 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1016&$top=1445&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1018&$top=1443&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1020&$top=1441&$maxpagesize=2"}' + headers: + apim-request-id: 2abdecfc-f852-414c-bc90-e67883a8a422 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:57 GMT + etag: '"97001527665EA0204A2E3FF6B299EA8177CB5832ABCED5BC1E30C76B386897B5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2abdecfc-f852-414c-bc90-e67883a8a422 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1018&$top=1443&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1020&$top=1441&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1022&$top=1439&$maxpagesize=2"}' + headers: + apim-request-id: b12284cc-8e9b-4781-b876-3a7c3b8a3b06 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:57 GMT + etag: '"89477E8228BBC0DCF019D0DEADDDAB7C8BEDE8936DA1E09BAC1FB48F3E55BC7A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b12284cc-8e9b-4781-b876-3a7c3b8a3b06 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1020&$top=1441&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1022&$top=1439&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1024&$top=1437&$maxpagesize=2"}' + headers: + apim-request-id: f13e8039-7cb5-43ff-b698-36ba87bbd238 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:57 GMT + etag: '"EC1814EFBFDAB44D35914D393F534B1411209A7D87F53850067DF27B3CE6A4DF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f13e8039-7cb5-43ff-b698-36ba87bbd238 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1022&$top=1439&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1024&$top=1437&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1026&$top=1435&$maxpagesize=2"}' + headers: + apim-request-id: 2afdbe34-02be-4317-b3dc-f32219dc2bb2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:57 GMT + etag: '"98FEBBA8833D13EB58D499528D8FD8AFFD0F253B464A1450C2655B1028BC9829"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2afdbe34-02be-4317-b3dc-f32219dc2bb2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1024&$top=1437&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1026&$top=1435&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1028&$top=1433&$maxpagesize=2"}' + headers: + apim-request-id: e77b0d7e-1667-48be-ba87-3734edd1f29e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:57 GMT + etag: '"7D5B049AAB61D722BB09DC1B4396FAAEBFB020D699637499591CA6F5FE4740E0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e77b0d7e-1667-48be-ba87-3734edd1f29e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1026&$top=1435&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1028&$top=1433&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1030&$top=1431&$maxpagesize=2"}' + headers: + apim-request-id: 1185f565-049c-4470-ba1e-cb48d5e04178 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:57 GMT + etag: '"30F396FEFAE9CB3DB9F6778160F95086E03BD15FB53BBBBE3D4F4DEF887E975B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1185f565-049c-4470-ba1e-cb48d5e04178 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1028&$top=1433&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1030&$top=1431&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1032&$top=1429&$maxpagesize=2"}' + headers: + apim-request-id: 34d964ae-00bb-4b45-88e7-76bffd070c4f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:58 GMT + etag: '"013C59074CAAE87A9D086A3838BC444945692F96A2D48675D8429C34A3B560FF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 34d964ae-00bb-4b45-88e7-76bffd070c4f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1030&$top=1431&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1032&$top=1429&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1034&$top=1427&$maxpagesize=2"}' + headers: + apim-request-id: d19b4e62-4f6b-4148-bce7-5b8d0d06d77f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:58 GMT + etag: '"750D116550AEF910E8326072CDFF011D5182B49695A5373B2B4A55B946777F1F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d19b4e62-4f6b-4148-bce7-5b8d0d06d77f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1032&$top=1429&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1034&$top=1427&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1036&$top=1425&$maxpagesize=2"}' + headers: + apim-request-id: f12c731f-3666-4774-8786-6b981c1f4181 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:58 GMT + etag: '"36D3BABA24FD1CD093864BE9910F042B3D6086EAC5B848EF17AFEA67342C858F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f12c731f-3666-4774-8786-6b981c1f4181 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1034&$top=1427&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1036&$top=1425&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1038&$top=1423&$maxpagesize=2"}' + headers: + apim-request-id: fe348a70-2b7a-49f9-bc26-c0142e210148 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:58 GMT + etag: '"35BF9C7F6C1E3F19849C7BEB4B70650A44D5F3A9D31033A8F3BAC8734296BE5C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fe348a70-2b7a-49f9-bc26-c0142e210148 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1036&$top=1425&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1038&$top=1423&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1040&$top=1421&$maxpagesize=2"}' + headers: + apim-request-id: 770b716a-88f7-4168-aa89-8883cef9e66b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:58 GMT + etag: '"1FF8D862771321E8F28865F3DA2A9AD3E29522ED5509D282728201CB314A1232"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 770b716a-88f7-4168-aa89-8883cef9e66b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1038&$top=1423&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1040&$top=1421&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1042&$top=1419&$maxpagesize=2"}' + headers: + apim-request-id: 84a7239f-8982-40e2-b56a-8b6d801f83bd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:59 GMT + etag: '"EF89B27EF5EA8D8A79804C17A3B4E693D0ECE71507AEFD91169F29C3F8E71747"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 84a7239f-8982-40e2-b56a-8b6d801f83bd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1040&$top=1421&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1042&$top=1419&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1044&$top=1417&$maxpagesize=2"}' + headers: + apim-request-id: a3c5c27f-2ff2-4434-ad4a-0ba0f314bff7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:59 GMT + etag: '"EE1D0C7F74FB32FCB0F5B973FD6B4A6A105EE67C7EC37A57A6BC2375449298F2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a3c5c27f-2ff2-4434-ad4a-0ba0f314bff7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1042&$top=1419&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1044&$top=1417&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1046&$top=1415&$maxpagesize=2"}' + headers: + apim-request-id: cfc5e610-1006-43a5-b4eb-07315ffcaafa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:59 GMT + etag: '"8C6C248BA63D78DE75B760DD0E8EBEA355AFC727BEDCB0FD805A0D9DE3F8C677"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cfc5e610-1006-43a5-b4eb-07315ffcaafa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1044&$top=1417&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1046&$top=1415&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1048&$top=1413&$maxpagesize=2"}' + headers: + apim-request-id: f65d660b-ff23-4648-8a0d-368244f94e90 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:59 GMT + etag: '"5552B3F0CAF54C182F0BC0F7719964AEBF6C7222EAB9255BFA6CD0C254E666D3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f65d660b-ff23-4648-8a0d-368244f94e90 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1046&$top=1415&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1048&$top=1413&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1411&$maxpagesize=2"}' + headers: + apim-request-id: 5dd922a3-fa2f-4959-81b5-3d00c05e5ac0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:59 GMT + etag: '"7CCDB48FB23C218D327DD8C04B4EA5E84C8668BF995962F5C89B3A197C84736D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5dd922a3-fa2f-4959-81b5-3d00c05e5ac0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1048&$top=1413&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1411&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1052&$top=1409&$maxpagesize=2"}' + headers: + apim-request-id: 8a284330-3d4e-43ca-bdbd-b5c3df5365f5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:00:59 GMT + etag: '"C6DE2EAF98FF5CF4302450630BD3F9238F3A99141F4BCFDFE1CEB51A270CB071"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8a284330-3d4e-43ca-bdbd-b5c3df5365f5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1050&$top=1411&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1052&$top=1409&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1054&$top=1407&$maxpagesize=2"}' + headers: + apim-request-id: 8cd965d7-8d33-4a71-9d74-c5013ca3e510 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:00 GMT + etag: '"CCDEF75ABCD9C52849F760E98BA4B05F7F268B298BEB0EC0E058ABBC0C9F8E2E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8cd965d7-8d33-4a71-9d74-c5013ca3e510 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1052&$top=1409&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1054&$top=1407&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1056&$top=1405&$maxpagesize=2"}' + headers: + apim-request-id: 0426e5f1-ec13-4189-8694-29b387fe1ab3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:00 GMT + etag: '"3861680D9646E9BDA6B1BB579B95C3AE7DAD38A6C944680B005C8584D09A7711"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0426e5f1-ec13-4189-8694-29b387fe1ab3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1054&$top=1407&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1056&$top=1405&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1058&$top=1403&$maxpagesize=2"}' + headers: + apim-request-id: fecb37ab-ab3a-4d1a-b289-6e73382f9911 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:00 GMT + etag: '"DA19E0A5A1217DFF59B9DE25B30EFB3FD538512ADF26FED168F40F8A495BF5F6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fecb37ab-ab3a-4d1a-b289-6e73382f9911 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1056&$top=1405&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1058&$top=1403&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1060&$top=1401&$maxpagesize=2"}' + headers: + apim-request-id: da8d83d2-49c5-4b6d-984b-725cf5739cae + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:00 GMT + etag: '"4B29F82EE748F47E15EF0C36D870C05F0C02D41EF66E7C3C69A6C3FBD1966936"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: da8d83d2-49c5-4b6d-984b-725cf5739cae + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1058&$top=1403&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1060&$top=1401&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1062&$top=1399&$maxpagesize=2"}' + headers: + apim-request-id: 08462677-10a1-4c5c-856f-6d162d90991e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:00 GMT + etag: '"2A95282081920F6A4098F8D3ACD2715F252BDFA4933F961E33A50FE105230C17"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 08462677-10a1-4c5c-856f-6d162d90991e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1060&$top=1401&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1062&$top=1399&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1064&$top=1397&$maxpagesize=2"}' + headers: + apim-request-id: e4e046b6-653b-4aa2-8209-0a54216d7dc6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:00 GMT + etag: '"3ECB66D5ADEDBF89294BE69AF6CE94A775681EB700CACF80520D3A12D19CC447"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e4e046b6-653b-4aa2-8209-0a54216d7dc6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1062&$top=1399&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1064&$top=1397&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1066&$top=1395&$maxpagesize=2"}' + headers: + apim-request-id: fbe734dd-31e2-4b15-b4e5-41eb273454fe + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:01 GMT + etag: '"A959846723C74993525E37A5DFBAED2A80CBFC9F2BD01E0E8BC42134A2BFA68E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fbe734dd-31e2-4b15-b4e5-41eb273454fe + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1064&$top=1397&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1066&$top=1395&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1068&$top=1393&$maxpagesize=2"}' + headers: + apim-request-id: 20eab70a-2315-432b-8af0-cf8b3c8d9e8c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:01 GMT + etag: '"2983BDEBBD1C2B9101C07B602EE68F4AEEFA5E4FA0698271187446F102F58679"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 20eab70a-2315-432b-8af0-cf8b3c8d9e8c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1066&$top=1395&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1068&$top=1393&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1070&$top=1391&$maxpagesize=2"}' + headers: + apim-request-id: e495ab35-b2c1-4a13-81b7-84367da4c8d4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:01 GMT + etag: '"A6A85B4A3A3BE67FC979A1B820E86E6B2FE141D134DD3674E273E740D4B8E001"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e495ab35-b2c1-4a13-81b7-84367da4c8d4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1068&$top=1393&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1070&$top=1391&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1072&$top=1389&$maxpagesize=2"}' + headers: + apim-request-id: b55cd8bd-3d50-4cdf-a688-b80a19b227ea + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:01 GMT + etag: '"2337DBCAD893B139A38DBC3ED73104B435F80E4AF6E3CD9D9858B1FD0B0013A5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b55cd8bd-3d50-4cdf-a688-b80a19b227ea + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1070&$top=1391&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1072&$top=1389&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1074&$top=1387&$maxpagesize=2"}' + headers: + apim-request-id: 29d7f4c8-2b14-4180-ab7b-bdb513e21826 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:01 GMT + etag: '"9CDD7539BD909B01C0AE9371B5F60A49C21D2883ABFB2C671E6F35920B21B7E0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 29d7f4c8-2b14-4180-ab7b-bdb513e21826 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1072&$top=1389&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1074&$top=1387&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1076&$top=1385&$maxpagesize=2"}' + headers: + apim-request-id: 9df64a77-c7db-4aa2-a340-b156357a4837 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:02 GMT + etag: '"354DF88088BF60D2FE5256E6FC3F7F35A18433030A33A7AA56C6868E38F1F589"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9df64a77-c7db-4aa2-a340-b156357a4837 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1074&$top=1387&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1076&$top=1385&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1078&$top=1383&$maxpagesize=2"}' + headers: + apim-request-id: 3be4c70e-affa-4ed6-bf6b-44ccb7de226c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:02 GMT + etag: '"4834A198CC35452C1CE636EE02E06E2E5DF33F368D8F872D4534E071FEF759CD"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3be4c70e-affa-4ed6-bf6b-44ccb7de226c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1076&$top=1385&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1078&$top=1383&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1080&$top=1381&$maxpagesize=2"}' + headers: + apim-request-id: b6aa59ac-7808-410f-9c74-6691c778207a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:02 GMT + etag: '"3178189C9BC928E1E332E6109ED55F751D4DADE42B222A33436B5829D84E976E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b6aa59ac-7808-410f-9c74-6691c778207a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1078&$top=1383&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1080&$top=1381&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1082&$top=1379&$maxpagesize=2"}' + headers: + apim-request-id: d00777ea-0179-4327-b455-21b872b665a2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:02 GMT + etag: '"9620735926A422D8EF35707813E156A1E46D9D987AEDD08D1068D49A3E678152"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d00777ea-0179-4327-b455-21b872b665a2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1080&$top=1381&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1082&$top=1379&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1084&$top=1377&$maxpagesize=2"}' + headers: + apim-request-id: f062825e-a3c2-48d8-b7d7-cd2330c83976 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:02 GMT + etag: '"35F8DB94E52BAA35632BDDD68CEA610A896F5673DA8B9E43912B24C0D6AFEDAC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f062825e-a3c2-48d8-b7d7-cd2330c83976 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1082&$top=1379&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1084&$top=1377&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1086&$top=1375&$maxpagesize=2"}' + headers: + apim-request-id: 00d8ab09-7335-4ed0-b5a6-d4fb0a7c0700 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:02 GMT + etag: '"0C62AD69C9D87AE3943C47C7B8BF21C9F5B51ED3358F313E509D2563688369D7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 00d8ab09-7335-4ed0-b5a6-d4fb0a7c0700 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1084&$top=1377&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1086&$top=1375&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1088&$top=1373&$maxpagesize=2"}' + headers: + apim-request-id: a2bc5b5d-f9fa-48f1-a727-63d42e280cb0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:03 GMT + etag: '"1E3B134DA9D056B131BC51E56200F704C2156F36662BCEA0403CD1564A665B9B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a2bc5b5d-f9fa-48f1-a727-63d42e280cb0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1086&$top=1375&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1088&$top=1373&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1090&$top=1371&$maxpagesize=2"}' + headers: + apim-request-id: aa00ad7e-7e51-493b-af77-b55fb080d3f5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:03 GMT + etag: '"DA98E05129CC512AE674BB7586FB194D974099554B308C2495F11DBD2099404F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: aa00ad7e-7e51-493b-af77-b55fb080d3f5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1088&$top=1373&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1090&$top=1371&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1092&$top=1369&$maxpagesize=2"}' + headers: + apim-request-id: 550f799e-17de-43f1-9c2c-1cca11a3c14c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:03 GMT + etag: '"DB6AC335C14CD0E39FE84C9611855FBC15DEBC8E9A1A2B14F8109E7ADBAF3F9A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 550f799e-17de-43f1-9c2c-1cca11a3c14c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1090&$top=1371&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1092&$top=1369&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1094&$top=1367&$maxpagesize=2"}' + headers: + apim-request-id: 931f0509-cf0d-4905-9c30-ed7436dcf9e7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:03 GMT + etag: '"13D497A52ED73A70E663295580354FCB420847438BD2A0A847CD18B1C78FD362"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 931f0509-cf0d-4905-9c30-ed7436dcf9e7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1092&$top=1369&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1094&$top=1367&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1096&$top=1365&$maxpagesize=2"}' + headers: + apim-request-id: a6603c9f-b8c8-44a0-8d0d-7bb995338274 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:03 GMT + etag: '"9D0FBD288000158749CFCEEC0707E36F5D3F743555E451CC8A4E2B9A65A1044B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a6603c9f-b8c8-44a0-8d0d-7bb995338274 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1094&$top=1367&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1096&$top=1365&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1098&$top=1363&$maxpagesize=2"}' + headers: + apim-request-id: 5d51cf79-2920-443f-9c8a-3b103593afc0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:04 GMT + etag: '"48112D2C48085F35E37CE7A33ECA56EDAD1ECE2B245E09CF4A8F65265397911E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5d51cf79-2920-443f-9c8a-3b103593afc0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1096&$top=1365&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1098&$top=1363&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1361&$maxpagesize=2"}' + headers: + apim-request-id: f691855d-3d4d-4d0c-846f-b0aa5c76d221 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:04 GMT + etag: '"7EA147B0751A6310059A63AB5609C39FB6D4EE309C87A6DEB986AA2F37A0AD84"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f691855d-3d4d-4d0c-846f-b0aa5c76d221 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1098&$top=1363&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1361&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1102&$top=1359&$maxpagesize=2"}' + headers: + apim-request-id: d1983d29-ad1b-4272-94d4-7ce9f6109e24 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:04 GMT + etag: '"05455D281FBE3B9223DBE0BB3DEBA25B71BCE967400278CA8508D4943A720F5F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d1983d29-ad1b-4272-94d4-7ce9f6109e24 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1100&$top=1361&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1102&$top=1359&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1104&$top=1357&$maxpagesize=2"}' + headers: + apim-request-id: c4aba1e2-5c54-4679-8fd3-1cbac9c6e983 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:04 GMT + etag: '"8D596F205EA85286B835DB4E4A8E5A84B49CD1A90BD4F3F1FBDA8CE4D32163D1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c4aba1e2-5c54-4679-8fd3-1cbac9c6e983 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1102&$top=1359&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1104&$top=1357&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1106&$top=1355&$maxpagesize=2"}' + headers: + apim-request-id: 8b2191c1-5a33-448a-8d41-8015ca44cc0f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:04 GMT + etag: '"6F42599A2DCCA681D582218577C1D04AF82D30DF94482C94D606B7B166789DD4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8b2191c1-5a33-448a-8d41-8015ca44cc0f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1104&$top=1357&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1106&$top=1355&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1108&$top=1353&$maxpagesize=2"}' + headers: + apim-request-id: 4d0524cc-0c8e-438d-9c19-51ab6dafd500 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:05 GMT + etag: '"63B048E94CA3D0FFC7B7B2F6F319AA5EBE53586F733EBBB885829CABA99E4749"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4d0524cc-0c8e-438d-9c19-51ab6dafd500 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1106&$top=1355&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1108&$top=1353&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1110&$top=1351&$maxpagesize=2"}' + headers: + apim-request-id: bbafd242-c8db-4e9f-b495-c4db93791fb4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:05 GMT + etag: '"BAFAD1F1EC336B4EEADB8D7E3DFBA9B3E03441C0645087CE43D2928EF87685AA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bbafd242-c8db-4e9f-b495-c4db93791fb4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1108&$top=1353&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1110&$top=1351&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1112&$top=1349&$maxpagesize=2"}' + headers: + apim-request-id: 246c07cc-abd9-4811-bf2f-73d977a0bb78 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:05 GMT + etag: '"66E74A87CD2528609662B19B8E1DCDF565F9F29FD87425EBE4F1052C3A582701"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 246c07cc-abd9-4811-bf2f-73d977a0bb78 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1110&$top=1351&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1112&$top=1349&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1114&$top=1347&$maxpagesize=2"}' + headers: + apim-request-id: 4f1e2d61-5128-4928-9ddb-8497016f922a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:05 GMT + etag: '"7842D42EE6C9B21CA4212EEE3154C6A4624142263E3C547CF386297A21D2FF8E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4f1e2d61-5128-4928-9ddb-8497016f922a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1112&$top=1349&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1114&$top=1347&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1116&$top=1345&$maxpagesize=2"}' + headers: + apim-request-id: 5ac0703d-cebc-4876-8d52-55accc52ebcd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:05 GMT + etag: '"06B877F25880B90ECAFCAF21EE154B12D21929744277A70E75F001D40883FC78"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5ac0703d-cebc-4876-8d52-55accc52ebcd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1114&$top=1347&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1116&$top=1345&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1118&$top=1343&$maxpagesize=2"}' + headers: + apim-request-id: 5a2511ba-f62f-4a09-913e-863d713c0ad8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:06 GMT + etag: '"862C60C6D2839ACB2493543083A28E0CCC10C640BA3D46912C910CDE0C0659AB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5a2511ba-f62f-4a09-913e-863d713c0ad8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1116&$top=1345&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1118&$top=1343&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1120&$top=1341&$maxpagesize=2"}' + headers: + apim-request-id: c600fa14-94e1-4855-9f12-da157bfcf2be + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:06 GMT + etag: '"B0BD4DF24B1CDB105C71CD1450A8976DDAE321BAE3D0B86733665179258C7E76"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c600fa14-94e1-4855-9f12-da157bfcf2be + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1118&$top=1343&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1120&$top=1341&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1122&$top=1339&$maxpagesize=2"}' + headers: + apim-request-id: 4b93671b-42fc-4311-a067-5b46eb423fe1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:06 GMT + etag: '"8482E2BBDA052935C1FDD82E0435AF1345DAAA3504D51E4A7BF48BFBB0D5D681"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4b93671b-42fc-4311-a067-5b46eb423fe1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1120&$top=1341&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1122&$top=1339&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1124&$top=1337&$maxpagesize=2"}' + headers: + apim-request-id: 278602c7-922d-4e9d-9991-ad0063bd8062 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:06 GMT + etag: '"59BAF9CC0841C89838F8A9F618BD166E00997086170B6641EBECC2ACFD9839A5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 278602c7-922d-4e9d-9991-ad0063bd8062 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1122&$top=1339&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1124&$top=1337&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1126&$top=1335&$maxpagesize=2"}' + headers: + apim-request-id: 9fe6d76c-16b8-4c40-9cc1-da3c8d5082c5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:06 GMT + etag: '"FC56E89F8F4F7B10D2080987B93F62722A477E764044FA985E19348AE703DD4B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9fe6d76c-16b8-4c40-9cc1-da3c8d5082c5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1124&$top=1337&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1126&$top=1335&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1128&$top=1333&$maxpagesize=2"}' + headers: + apim-request-id: 248205d6-579b-4134-bbe6-141e00fd6a57 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:07 GMT + etag: '"66D25A4C7ADD16359B4C14D1D8ADC51458D44A64E4E69858813EC62420EE2D64"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 248205d6-579b-4134-bbe6-141e00fd6a57 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1126&$top=1335&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1128&$top=1333&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1130&$top=1331&$maxpagesize=2"}' + headers: + apim-request-id: 3e44719f-340a-4f21-9608-4ad4e9f3e993 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:07 GMT + etag: '"2E04792D07A6C5CF85BBEC904FDCAC14C4674B3C1AE98239B030CBB24F9AB9FE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3e44719f-340a-4f21-9608-4ad4e9f3e993 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1128&$top=1333&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1130&$top=1331&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1132&$top=1329&$maxpagesize=2"}' + headers: + apim-request-id: 035a1585-7b3b-4734-ab62-27a6de8c6922 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:07 GMT + etag: '"2C09C6A50E320BE4089908B66892AF8988F46FC9BA3C0DB92DD7C4D82861BB82"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 035a1585-7b3b-4734-ab62-27a6de8c6922 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1130&$top=1331&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1132&$top=1329&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1134&$top=1327&$maxpagesize=2"}' + headers: + apim-request-id: d9c962dc-cb68-4c16-8567-40878469a078 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:07 GMT + etag: '"A007B12DB4F06ADF315295C745946D4E629F56D211E9D304A08483BD0ADFC4B2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d9c962dc-cb68-4c16-8567-40878469a078 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1132&$top=1329&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1134&$top=1327&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1136&$top=1325&$maxpagesize=2"}' + headers: + apim-request-id: 1d8fb0b0-192c-4338-9519-d6968ce69dd2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:07 GMT + etag: '"E6BEB8264CD2C0C55BB44695F4E41A7224FC14871D9054AD8FB965A2E80C9E11"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1d8fb0b0-192c-4338-9519-d6968ce69dd2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1134&$top=1327&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1136&$top=1325&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1138&$top=1323&$maxpagesize=2"}' + headers: + apim-request-id: 72e0d775-b7a2-4503-bc26-55a6ce33669a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:08 GMT + etag: '"4B92C6B1C961BCF3872E602EBEDE7DEE00F76E6717B1BA1250D74DF5F3FA11CF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 72e0d775-b7a2-4503-bc26-55a6ce33669a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1136&$top=1325&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1138&$top=1323&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1140&$top=1321&$maxpagesize=2"}' + headers: + apim-request-id: 6924da73-4a03-45f5-b1db-baec2893c92a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:08 GMT + etag: '"74B06F5A5320DCE7E0903F230FE447AE76FB795D64C5A41D764F325185C4D355"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6924da73-4a03-45f5-b1db-baec2893c92a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1138&$top=1323&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1140&$top=1321&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1142&$top=1319&$maxpagesize=2"}' + headers: + apim-request-id: 5ffcb6e5-76f8-4927-b91f-9d8b42709f4c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:08 GMT + etag: '"2FFEF2295CEC40CC53011767B0CCB792E9DE46F297884DAF612968FDF9769E3F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5ffcb6e5-76f8-4927-b91f-9d8b42709f4c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1140&$top=1321&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1142&$top=1319&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1144&$top=1317&$maxpagesize=2"}' + headers: + apim-request-id: 67264456-039a-492c-a115-e267f11197d9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:08 GMT + etag: '"1E3EA2EAEF4F7C22BEF587CEF680348B8CB994FD4DD2FA4869B164E781C48722"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 67264456-039a-492c-a115-e267f11197d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1142&$top=1319&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1144&$top=1317&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1146&$top=1315&$maxpagesize=2"}' + headers: + apim-request-id: 4da23b27-def5-4eaa-b0f0-90d7d98ecf65 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:08 GMT + etag: '"162879EBCD5ED87333CCEDCEDBB0EE852CDB39DE5CC38B46099956EBE0BB7BEF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4da23b27-def5-4eaa-b0f0-90d7d98ecf65 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1144&$top=1317&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1146&$top=1315&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1148&$top=1313&$maxpagesize=2"}' + headers: + apim-request-id: dee1bbac-69c2-425f-866c-229fd17f7d23 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:09 GMT + etag: '"3B33CFACA7D28F30AFF38A12115994D67276C7BB17427B60A314AD8409AD40E3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dee1bbac-69c2-425f-866c-229fd17f7d23 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1146&$top=1315&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1148&$top=1313&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1311&$maxpagesize=2"}' + headers: + apim-request-id: 39a0609e-9242-4a3d-a342-559d0467d401 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:09 GMT + etag: '"1EAC0E935F06BECE371C62F0705F4FE05388BC3CD784F8F46806CA5A1EDE95B5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 39a0609e-9242-4a3d-a342-559d0467d401 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1148&$top=1313&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1311&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1152&$top=1309&$maxpagesize=2"}' + headers: + apim-request-id: b10fd751-b3c3-4ef6-b66d-4c79f6fa7281 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:09 GMT + etag: '"27D6864885357E9CC66CCD67C1D17B6F3B99C1D6DF2DEDF4DE27F99279B5441F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b10fd751-b3c3-4ef6-b66d-4c79f6fa7281 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1150&$top=1311&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1152&$top=1309&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1154&$top=1307&$maxpagesize=2"}' + headers: + apim-request-id: 688e724b-bf54-462b-8fe6-dffd374b95ff + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:09 GMT + etag: '"E14611F61F326B4E84D346E8DBD5E2F0B1E13CD4BE930CA7A2620D15B6AB8E86"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 688e724b-bf54-462b-8fe6-dffd374b95ff + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1152&$top=1309&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1154&$top=1307&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1156&$top=1305&$maxpagesize=2"}' + headers: + apim-request-id: d6b0b2af-e064-4360-9e05-98365761d6f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:09 GMT + etag: '"F4BCA1A8ECF73173D27CAB2266AAD668C85A3A1EBBBDE0ACA330582FBDE9F9B8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d6b0b2af-e064-4360-9e05-98365761d6f4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1154&$top=1307&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1156&$top=1305&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1158&$top=1303&$maxpagesize=2"}' + headers: + apim-request-id: a2e7a2ba-cf2d-4735-bdfb-415c9465c888 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:10 GMT + etag: '"71B3317066461A90DD85605FF9CF5F703D7947DE788C9A575E910F9FA487244B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a2e7a2ba-cf2d-4735-bdfb-415c9465c888 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1156&$top=1305&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1158&$top=1303&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1160&$top=1301&$maxpagesize=2"}' + headers: + apim-request-id: dafbbeb0-63d8-47a5-b27c-bda55c3392b6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:10 GMT + etag: '"08332C01F8F9D1A88BAEAE0B863D78B9110CAC2B5C8D37C931BC87152B50F5C2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dafbbeb0-63d8-47a5-b27c-bda55c3392b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1158&$top=1303&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1160&$top=1301&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1162&$top=1299&$maxpagesize=2"}' + headers: + apim-request-id: a22c4797-039e-4996-a1cb-c215f383e57e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:10 GMT + etag: '"E9A63C1D3555A3A3B7F8578568BEB33978021F1898E36CAC6F7B71F095D53D49"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a22c4797-039e-4996-a1cb-c215f383e57e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1160&$top=1301&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1162&$top=1299&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1164&$top=1297&$maxpagesize=2"}' + headers: + apim-request-id: 6046b5d6-b4f4-43ef-a766-6e0e5fd63f3a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:10 GMT + etag: '"1834F28094764EDCA4A0C0930295257736D9CBD6C4EBBC7648FF530D0EB7EA17"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6046b5d6-b4f4-43ef-a766-6e0e5fd63f3a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1162&$top=1299&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1164&$top=1297&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1166&$top=1295&$maxpagesize=2"}' + headers: + apim-request-id: 891341a7-8f58-4227-9df8-80408dc88cc9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:10 GMT + etag: '"64DFE21C9BAB3E341E12DC551E9BA4A4F47C584EE79241828977F95D97D00FC7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 891341a7-8f58-4227-9df8-80408dc88cc9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1164&$top=1297&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1166&$top=1295&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1168&$top=1293&$maxpagesize=2"}' + headers: + apim-request-id: be55e90a-d4ad-46c1-a601-daa66188c3c2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:10 GMT + etag: '"3A77999B63F45E63F65DDF93F72AEE68B30709F2F38724E5EA610FECB955E76D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: be55e90a-d4ad-46c1-a601-daa66188c3c2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1166&$top=1295&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1168&$top=1293&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1170&$top=1291&$maxpagesize=2"}' + headers: + apim-request-id: d4b182d2-8c82-4f46-b76a-dd9553ba9489 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:11 GMT + etag: '"DFAD95DF62F3AFD1A9FE3AF5E66481C0B4E0A3F95284AD9D761488F890F72A94"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d4b182d2-8c82-4f46-b76a-dd9553ba9489 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1168&$top=1293&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1170&$top=1291&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1172&$top=1289&$maxpagesize=2"}' + headers: + apim-request-id: 320729fc-256e-4574-9e8f-81b4ade8480f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:11 GMT + etag: '"7A9A10EDAF8B43D3A1B751009C55385C5DE8B4F8315A5EC76EB6CDA713C8EBC3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 320729fc-256e-4574-9e8f-81b4ade8480f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1170&$top=1291&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1172&$top=1289&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1174&$top=1287&$maxpagesize=2"}' + headers: + apim-request-id: a5047003-b7cb-4702-bde3-96b5ffdbfc92 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:11 GMT + etag: '"2896F546271495741D0846B5189D9CBA59CE100846C73DFFBE14214E6A413D2C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a5047003-b7cb-4702-bde3-96b5ffdbfc92 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1172&$top=1289&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1174&$top=1287&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1176&$top=1285&$maxpagesize=2"}' + headers: + apim-request-id: 2d4809c5-ff4b-4552-82cd-8f41441c086f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:11 GMT + etag: '"F50A18EF9D207D69AE186809F2B0ED0683F5B8CBA0EDE79BBBBB297CB8C42722"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2d4809c5-ff4b-4552-82cd-8f41441c086f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1174&$top=1287&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1176&$top=1285&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1178&$top=1283&$maxpagesize=2"}' + headers: + apim-request-id: 78a0e414-1c7d-495b-a292-01a6a9ff7b47 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:11 GMT + etag: '"018C972FF22B1E85E026E59C1C0FEA1C45AA5609476697A9703DB90BEACD4693"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 78a0e414-1c7d-495b-a292-01a6a9ff7b47 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1176&$top=1285&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1178&$top=1283&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1180&$top=1281&$maxpagesize=2"}' + headers: + apim-request-id: 518b279b-74ca-4295-b3c6-9f87fdd30fe2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:12 GMT + etag: '"F266B95E94300ABC7A014A745A538A8E0225E9F1D511E12BD7F386A23042A31D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 518b279b-74ca-4295-b3c6-9f87fdd30fe2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1178&$top=1283&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1180&$top=1281&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1182&$top=1279&$maxpagesize=2"}' + headers: + apim-request-id: 9f17114c-fe5f-4617-9392-416bf94e95fd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:12 GMT + etag: '"A3E09EEFCD4B38969D4924D9FCA673156DA0F83880F9EA630C1EC2A423A8AB25"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9f17114c-fe5f-4617-9392-416bf94e95fd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1180&$top=1281&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1182&$top=1279&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1184&$top=1277&$maxpagesize=2"}' + headers: + apim-request-id: 3d4dd15b-bf9c-409b-96f6-fbc3cb5cd230 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:12 GMT + etag: '"506264BF122406F7EB1B8D421BBC455A3BC6FD53ACBAEFB132BE99A17E1AD6FF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3d4dd15b-bf9c-409b-96f6-fbc3cb5cd230 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1182&$top=1279&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1184&$top=1277&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1186&$top=1275&$maxpagesize=2"}' + headers: + apim-request-id: 1243a633-4faf-4f63-86cb-f94914f65ca9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:12 GMT + etag: '"A632F1128904F3328F30B72B484B996E063AA89056D7F1A061924186A65CE02A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1243a633-4faf-4f63-86cb-f94914f65ca9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1184&$top=1277&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1186&$top=1275&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1188&$top=1273&$maxpagesize=2"}' + headers: + apim-request-id: 179c7716-c309-43ce-bf00-cc808d109af7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:12 GMT + etag: '"FFF4B5AFDBEE0EEE35C4E66022E412F28D66D56F029B468757E8A2BDE94C32B4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 179c7716-c309-43ce-bf00-cc808d109af7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1186&$top=1275&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1188&$top=1273&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1190&$top=1271&$maxpagesize=2"}' + headers: + apim-request-id: 6db18c68-daeb-43f4-bfb5-5f5ba5b78f84 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:13 GMT + etag: '"8B8B0FD676331DF3671DF96B55D393D5DFBCC8E1215A09489982F03813127710"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6db18c68-daeb-43f4-bfb5-5f5ba5b78f84 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1188&$top=1273&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1190&$top=1271&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1192&$top=1269&$maxpagesize=2"}' + headers: + apim-request-id: 3b9237df-5749-47a5-9854-d7110944a7c1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:13 GMT + etag: '"E1617F70E5D2CFA274B7BD7FA3F258F0F499C7F902C15F900AB1ED9CD494FE78"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3b9237df-5749-47a5-9854-d7110944a7c1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1190&$top=1271&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1192&$top=1269&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1194&$top=1267&$maxpagesize=2"}' + headers: + apim-request-id: 006a212a-f065-4abd-a523-bf1577303389 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:13 GMT + etag: '"D351D5D32AE1ADD34AEC1C66D392639C73CE94A51C2DD0322FE7F7859CC65D0D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 006a212a-f065-4abd-a523-bf1577303389 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1192&$top=1269&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1194&$top=1267&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1196&$top=1265&$maxpagesize=2"}' + headers: + apim-request-id: 6335b951-313f-490b-a6b6-f4f9726fec09 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:13 GMT + etag: '"994182FA5B5AFAD0E5D12FD58BB20B662161779D0024C8EF970D06C61D34F551"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6335b951-313f-490b-a6b6-f4f9726fec09 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1194&$top=1267&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1196&$top=1265&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1198&$top=1263&$maxpagesize=2"}' + headers: + apim-request-id: 4b2d79c2-bf91-4f1e-8950-70e18be36e04 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:13 GMT + etag: '"6BFB4F89DEF75B4158C93B5B1BE744D286B54DAE2BEE9761BAF191C040053F2D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4b2d79c2-bf91-4f1e-8950-70e18be36e04 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1196&$top=1265&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1198&$top=1263&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1261&$maxpagesize=2"}' + headers: + apim-request-id: bda4d0cc-14f6-4813-a242-3c924b731131 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:13 GMT + etag: '"C468876F2422F65F6B4D507B38D27B4BAE85D0DAB2D5EB42A6C08BDAD109B03B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bda4d0cc-14f6-4813-a242-3c924b731131 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1198&$top=1263&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1261&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1202&$top=1259&$maxpagesize=2"}' + headers: + apim-request-id: 332e857f-eb25-41ce-817a-631e09623b84 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:14 GMT + etag: '"E282F1FECA7606626A5241A9B7119DCAAD0F319FB3419D69DFE0A350400C48E9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 332e857f-eb25-41ce-817a-631e09623b84 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1200&$top=1261&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1202&$top=1259&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1204&$top=1257&$maxpagesize=2"}' + headers: + apim-request-id: 9174db19-8430-4873-ad87-58d6c0127ff2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:14 GMT + etag: '"D4601491FEEB02B93499951C5957F05EF3717D88E1CF5994F58F4E0B85FBAA2D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9174db19-8430-4873-ad87-58d6c0127ff2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1202&$top=1259&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1204&$top=1257&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1206&$top=1255&$maxpagesize=2"}' + headers: + apim-request-id: 70c1f108-0795-4cca-8979-c70805dd487b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:14 GMT + etag: '"43D0189181A4F1B7FAB511D2491EFA1A41E663CEC78527BA1A18B8361507F84E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 70c1f108-0795-4cca-8979-c70805dd487b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1204&$top=1257&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1206&$top=1255&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1208&$top=1253&$maxpagesize=2"}' + headers: + apim-request-id: 74e81214-0212-426a-bdf8-c974abdd2b13 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:14 GMT + etag: '"B7A856BA19F769AF88B047ADFBC9077E756686658EB28058A9286D96CCF78774"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 74e81214-0212-426a-bdf8-c974abdd2b13 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1206&$top=1255&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1208&$top=1253&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1210&$top=1251&$maxpagesize=2"}' + headers: + apim-request-id: 09fed42c-431f-4e74-9a4f-05d755bc21c1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:14 GMT + etag: '"B6CB5A07EE7999B093E1A009AAA199F037FE59BA3DD9D17516DE076EFFFDBA6D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 09fed42c-431f-4e74-9a4f-05d755bc21c1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1208&$top=1253&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1210&$top=1251&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1212&$top=1249&$maxpagesize=2"}' + headers: + apim-request-id: 3bf93ef4-7b1b-4e09-b57c-8410baaf25c8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:14 GMT + etag: '"3AC029D825488EE27C9AF1F4A1B8F5181CED602B119FB37AFBA51F18AEF546DB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3bf93ef4-7b1b-4e09-b57c-8410baaf25c8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1210&$top=1251&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1212&$top=1249&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1214&$top=1247&$maxpagesize=2"}' + headers: + apim-request-id: 99e72903-b8c7-4ab9-9c3b-811d278a02a6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:15 GMT + etag: '"3D422F656D0B906B2E7B0E147BF5C5BCCA45A076272BCCD1D3DBD6980948E0D8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 99e72903-b8c7-4ab9-9c3b-811d278a02a6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1212&$top=1249&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1214&$top=1247&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1216&$top=1245&$maxpagesize=2"}' + headers: + apim-request-id: 7d84821d-b727-4601-8f21-ca6cf8aebdcd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:15 GMT + etag: '"05DA4D06428C05BED38E62CDB6A39600469BD16CAE2216AEEFF79C068AC4549D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7d84821d-b727-4601-8f21-ca6cf8aebdcd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1214&$top=1247&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1216&$top=1245&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1218&$top=1243&$maxpagesize=2"}' + headers: + apim-request-id: 17b1192b-eea1-48cd-bc52-63c5d46b42d1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:15 GMT + etag: '"389A1EC0B5B2BBFC25D7A6253FA6768370CBAF214EF5951C9EC05F6E75E095E5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 17b1192b-eea1-48cd-bc52-63c5d46b42d1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1216&$top=1245&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1218&$top=1243&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1220&$top=1241&$maxpagesize=2"}' + headers: + apim-request-id: 4f463b23-5854-4ff0-bd59-c71dd6699323 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:15 GMT + etag: '"B750D2A7F198EDDFF409944EAF050E8F9321FA1EF8A2AD79AC58A5966E25E6D7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4f463b23-5854-4ff0-bd59-c71dd6699323 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1218&$top=1243&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1220&$top=1241&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1222&$top=1239&$maxpagesize=2"}' + headers: + apim-request-id: c0b89066-89a0-417b-b943-9a22af6510e2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:16 GMT + etag: '"ABBB07A07D71D1ABAEFA7CB35F49C986BE3F34CBC936CA71579068698D9A6D1E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c0b89066-89a0-417b-b943-9a22af6510e2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1220&$top=1241&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1222&$top=1239&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1224&$top=1237&$maxpagesize=2"}' + headers: + apim-request-id: 699d1058-5302-4fdc-941c-4079a11f7802 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:16 GMT + etag: '"B0130AB802ED48D5411B1E81376734F427D7AB27FAB71EFA164FE71154BA774F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 699d1058-5302-4fdc-941c-4079a11f7802 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1222&$top=1239&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1224&$top=1237&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1226&$top=1235&$maxpagesize=2"}' + headers: + apim-request-id: 4e69cbe7-248d-4a9b-aace-dc950336485a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:16 GMT + etag: '"BC18ED1FFB3EFB960970CC9C9914832604A184E58B1338E82C18345DC3F94A7C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4e69cbe7-248d-4a9b-aace-dc950336485a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1224&$top=1237&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1226&$top=1235&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1228&$top=1233&$maxpagesize=2"}' + headers: + apim-request-id: 525421f5-bfaa-4f07-968f-d3a5cd6d5d72 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:16 GMT + etag: '"6EE4797A5478C358176CD9B4425B872EFD679B84950AFE4CE0A5021DBAB11085"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 525421f5-bfaa-4f07-968f-d3a5cd6d5d72 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1226&$top=1235&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1228&$top=1233&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1230&$top=1231&$maxpagesize=2"}' + headers: + apim-request-id: e1bac3c1-3c5b-4303-9910-bb0bfde9313f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:16 GMT + etag: '"25AF86F0D459A179CAC16F73F3DE5ECFC0F1EB9943BB31B69C7E03E683B59C3E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e1bac3c1-3c5b-4303-9910-bb0bfde9313f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1228&$top=1233&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1230&$top=1231&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1232&$top=1229&$maxpagesize=2"}' + headers: + apim-request-id: 73855386-1b10-4dbd-b900-fbc48685aad0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:16 GMT + etag: '"911DB43AFB432332FEA1584671477DC6577EB62471EFE384A62FFED1947DCECC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 73855386-1b10-4dbd-b900-fbc48685aad0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1230&$top=1231&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1232&$top=1229&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1234&$top=1227&$maxpagesize=2"}' + headers: + apim-request-id: f730f4fd-3a18-4473-b934-5673c0f93f5f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:17 GMT + etag: '"D69F7FD3F24277A6CE0FB61799C0BF6E90C837F3BF46A96FAED34E15B771679A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f730f4fd-3a18-4473-b934-5673c0f93f5f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1232&$top=1229&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1234&$top=1227&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1236&$top=1225&$maxpagesize=2"}' + headers: + apim-request-id: 67b73e77-0ea3-4623-b5ee-842b67a7a599 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:17 GMT + etag: '"8899DB0877D9FA16C014E266DE68DE4680F3E27E6ADECBA69B58FE66DF2A223E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 67b73e77-0ea3-4623-b5ee-842b67a7a599 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1234&$top=1227&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1236&$top=1225&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1238&$top=1223&$maxpagesize=2"}' + headers: + apim-request-id: 04df4c76-f5e8-4b0a-ba6e-dccf43a37139 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:17 GMT + etag: '"37AF7AC2160C87781B7886F42AD57554599B0773CD7673C65862CB0297B6DD11"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 04df4c76-f5e8-4b0a-ba6e-dccf43a37139 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1236&$top=1225&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1238&$top=1223&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1240&$top=1221&$maxpagesize=2"}' + headers: + apim-request-id: 4120c261-d62a-4e9d-8007-87a72e5b37c5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:17 GMT + etag: '"CB786A8C9A252F18E863C01FE131401DDC0A7FD412ABA8EEF36F3F53ED5E43B1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4120c261-d62a-4e9d-8007-87a72e5b37c5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1238&$top=1223&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1240&$top=1221&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1242&$top=1219&$maxpagesize=2"}' + headers: + apim-request-id: c84a973e-96ee-4ee8-84fa-2d7c595d8b8c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:17 GMT + etag: '"4BC4152D9CB897188E85E9843FEA53F1B7195F3D1EC3B3DDB8C09FB4B8FB2ABA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c84a973e-96ee-4ee8-84fa-2d7c595d8b8c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1240&$top=1221&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1242&$top=1219&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1244&$top=1217&$maxpagesize=2"}' + headers: + apim-request-id: 8df3119c-a45c-494e-acd4-a40a48d84f0b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:18 GMT + etag: '"E5E395A06F4311615AFE66D9534DCD9F59203320B3E35CF283AC62C1CE234611"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8df3119c-a45c-494e-acd4-a40a48d84f0b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1242&$top=1219&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1244&$top=1217&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1246&$top=1215&$maxpagesize=2"}' + headers: + apim-request-id: 69ecb47f-b014-4b1b-b397-a33191ebb169 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:18 GMT + etag: '"A301070730C06835EF93D4D782A16341F85C0561AC24130B8A08C549010D3F40"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 69ecb47f-b014-4b1b-b397-a33191ebb169 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1244&$top=1217&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1246&$top=1215&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1248&$top=1213&$maxpagesize=2"}' + headers: + apim-request-id: 31bd70ee-7849-4239-80a7-46aa16dcc7d8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:18 GMT + etag: '"CE31BCD2C20F70E7EAABA040486F943BC30A5A469B70C3D7BD4E13E520F793C6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 31bd70ee-7849-4239-80a7-46aa16dcc7d8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1246&$top=1215&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1248&$top=1213&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1211&$maxpagesize=2"}' + headers: + apim-request-id: b5ebe289-de2d-4839-8444-8d61fd8e9dd1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:18 GMT + etag: '"DB1073403C99AF44EC0B6E24126623A9EB03C001456264171766485906883053"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b5ebe289-de2d-4839-8444-8d61fd8e9dd1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1248&$top=1213&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1211&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1252&$top=1209&$maxpagesize=2"}' + headers: + apim-request-id: 3ca223b8-f457-406a-a622-579fc5fe7f25 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:18 GMT + etag: '"2BF23475FDC347EEADCBD908235A63883D71E403E260FBC275A5601231CEDE15"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3ca223b8-f457-406a-a622-579fc5fe7f25 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1250&$top=1211&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1252&$top=1209&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1254&$top=1207&$maxpagesize=2"}' + headers: + apim-request-id: d05e143b-50e2-418a-bd98-4b0ee8e9e8b2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:19 GMT + etag: '"070B19D6D8A5FAF0E1839E55CFF68EA54A1C7145BEF7E77EBC73472ADC13BF5A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d05e143b-50e2-418a-bd98-4b0ee8e9e8b2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1252&$top=1209&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1254&$top=1207&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1256&$top=1205&$maxpagesize=2"}' + headers: + apim-request-id: 3b1136f9-a37a-4851-a27a-2f940af52aa3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:19 GMT + etag: '"513A691BD2824D068E192ECF4A284436FDCCA36C11F18224E3C8F505E3134828"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3b1136f9-a37a-4851-a27a-2f940af52aa3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1254&$top=1207&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1256&$top=1205&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1258&$top=1203&$maxpagesize=2"}' + headers: + apim-request-id: 96a4ac43-db63-427e-8265-2eaf1e78a876 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:19 GMT + etag: '"83B9F79D8B11476267708B5BE2F5B00D31AA9B320A90EC336DB2942405F7A1DA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 96a4ac43-db63-427e-8265-2eaf1e78a876 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1256&$top=1205&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1258&$top=1203&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1260&$top=1201&$maxpagesize=2"}' + headers: + apim-request-id: 463e8fc7-4186-4405-b66b-ce5690a9c9f9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:19 GMT + etag: '"13EE5367FFB22AA8319DAFFDD7F7A3F6F81A57F3B2C95B2D6E5B70F90CB97FB7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 463e8fc7-4186-4405-b66b-ce5690a9c9f9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1258&$top=1203&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1260&$top=1201&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1262&$top=1199&$maxpagesize=2"}' + headers: + apim-request-id: f150c616-d544-457c-99f2-f697f3bb2db3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:19 GMT + etag: '"0F1C42A2521CCA9D3AB724DB1C71AC1CB2415DF40CA25EFB8AD9BE4F596D7C6A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f150c616-d544-457c-99f2-f697f3bb2db3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1260&$top=1201&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1262&$top=1199&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1264&$top=1197&$maxpagesize=2"}' + headers: + apim-request-id: b5e8fcbb-672c-4be2-a7d9-1da841192346 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:19 GMT + etag: '"F05C1101ADD09D194FC306B3A6133923C7FDBBC876CF3460D3B20722716B11C6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b5e8fcbb-672c-4be2-a7d9-1da841192346 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1262&$top=1199&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1264&$top=1197&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1266&$top=1195&$maxpagesize=2"}' + headers: + apim-request-id: 2f852f27-67da-4f2b-9303-edb9755cefcc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:20 GMT + etag: '"35AFC2DB80FC2C796ABB052BF9DFDB69CF63F1C988127AC4E96FDA5E4C3EFBA2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2f852f27-67da-4f2b-9303-edb9755cefcc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1264&$top=1197&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1266&$top=1195&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1268&$top=1193&$maxpagesize=2"}' + headers: + apim-request-id: 4b936a9d-99de-4a40-ae68-3954d72b34c4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:20 GMT + etag: '"7AFC73898805D924FB79DA72B04EAD45FA887806AD55E74D19F377408C6B1024"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4b936a9d-99de-4a40-ae68-3954d72b34c4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1266&$top=1195&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1268&$top=1193&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1270&$top=1191&$maxpagesize=2"}' + headers: + apim-request-id: 18a86bb0-5075-4844-9d14-08a2bde8d68e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:20 GMT + etag: '"94EB75CAAEFDBDAC66C19BA718005ED88954D0E8332A39D4CDCE4F44607800A9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 18a86bb0-5075-4844-9d14-08a2bde8d68e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1268&$top=1193&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1270&$top=1191&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1272&$top=1189&$maxpagesize=2"}' + headers: + apim-request-id: cf4ba93c-34c7-41c3-9503-046d541aa668 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:20 GMT + etag: '"202BBF18DA770364D88E1573B5E5D679C31C84DF40D476B9C1C8ECE51B2301C6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cf4ba93c-34c7-41c3-9503-046d541aa668 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1270&$top=1191&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1272&$top=1189&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1274&$top=1187&$maxpagesize=2"}' + headers: + apim-request-id: 37ab07ba-9b74-454b-a59b-31970761adb5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:20 GMT + etag: '"C3AE1A3478C7F8B41D470FCE8C68151DE38B6A14120FD91AFE549CE71444A69E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 37ab07ba-9b74-454b-a59b-31970761adb5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1272&$top=1189&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1274&$top=1187&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1276&$top=1185&$maxpagesize=2"}' + headers: + apim-request-id: 7f4fd9fc-d683-4198-a6e9-99702c03c40c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:21 GMT + etag: '"10D7100764D3D8F94D09FE460505E7C06C991387BBB5423D47A7284EEB6DC6BC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7f4fd9fc-d683-4198-a6e9-99702c03c40c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1274&$top=1187&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1276&$top=1185&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1278&$top=1183&$maxpagesize=2"}' + headers: + apim-request-id: 5d7dcfc1-45d7-49fd-b7cf-531337030af4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:21 GMT + etag: '"9DE5050409D0468727FBA3D806D8DDC5B08B9C1F7A12CCD7B4FDFB00CD11123F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5d7dcfc1-45d7-49fd-b7cf-531337030af4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1276&$top=1185&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1278&$top=1183&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1280&$top=1181&$maxpagesize=2"}' + headers: + apim-request-id: a8881c11-b575-4e3f-a583-d38435df3bd4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:21 GMT + etag: '"6667A7AA3EF24A424FA32438E917459AEEC263B081BDF46F831F90C111D229AD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a8881c11-b575-4e3f-a583-d38435df3bd4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1278&$top=1183&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1280&$top=1181&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1282&$top=1179&$maxpagesize=2"}' + headers: + apim-request-id: e7f4b7e3-513d-4e96-bfc8-af7bde354f22 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:21 GMT + etag: '"1D33BAA7EB83EC52C7745FDE0D4A02201794512EE7ECBE30B6F32ACADF57D101"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e7f4b7e3-513d-4e96-bfc8-af7bde354f22 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1280&$top=1181&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1282&$top=1179&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1284&$top=1177&$maxpagesize=2"}' + headers: + apim-request-id: 5496356e-19cc-4f46-ac0b-ba26a6c859c5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:21 GMT + etag: '"D054D18A9C141C3AB5549AC341D7DB288889714D3E74FF956F593A48A15366A2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5496356e-19cc-4f46-ac0b-ba26a6c859c5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1282&$top=1179&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1284&$top=1177&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1286&$top=1175&$maxpagesize=2"}' + headers: + apim-request-id: 4ec61e16-bb06-47e2-ba78-b7a21a76c609 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:21 GMT + etag: '"4BAF942549015E9ABA8A819A5CE4D0B9B736231AD0EA880BD54375D2AB52027F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4ec61e16-bb06-47e2-ba78-b7a21a76c609 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1284&$top=1177&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1286&$top=1175&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1288&$top=1173&$maxpagesize=2"}' + headers: + apim-request-id: 2cdd3745-942c-42ea-a4de-80da88e95395 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:23 GMT + etag: '"99C88D2AB6022D2FC10380045241A6A4B349C5F7FF83F5E7FEF17BED62260C59"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2cdd3745-942c-42ea-a4de-80da88e95395 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1286&$top=1175&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1288&$top=1173&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1290&$top=1171&$maxpagesize=2"}' + headers: + apim-request-id: 14623c48-1a4c-46a6-971b-2d6ff94bff82 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:23 GMT + etag: '"4764068837AF6A758AB250725825F7BC49179C0DEC06C119AE1068262518BBA3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 14623c48-1a4c-46a6-971b-2d6ff94bff82 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1288&$top=1173&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1290&$top=1171&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1292&$top=1169&$maxpagesize=2"}' + headers: + apim-request-id: f6331c25-656d-4117-919f-5c579dc4753b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:23 GMT + etag: '"C9F70216F9CA5E917D50EBCEE56971A721BFD76C762FD841C1505BD9D62295B5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f6331c25-656d-4117-919f-5c579dc4753b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1290&$top=1171&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1292&$top=1169&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1294&$top=1167&$maxpagesize=2"}' + headers: + apim-request-id: 0ddf1718-05b5-4a8c-b29d-af4e3692f5d1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:23 GMT + etag: '"602C64A5EB4AFE6E630C8E12E85205696D0B5AB690C1AC3F320BFEE43D9A795E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0ddf1718-05b5-4a8c-b29d-af4e3692f5d1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1292&$top=1169&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1294&$top=1167&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1296&$top=1165&$maxpagesize=2"}' + headers: + apim-request-id: aba74ca0-216e-4c13-812f-b40fa1f88cb7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:23 GMT + etag: '"A3EC8E585F20832D5CA4AC8D37CB045A80FF52F14EC40A53E9F84277C607D3D0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: aba74ca0-216e-4c13-812f-b40fa1f88cb7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1294&$top=1167&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1296&$top=1165&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1298&$top=1163&$maxpagesize=2"}' + headers: + apim-request-id: 6e67151d-14d8-49dd-8fc0-d4ea12ad3f48 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:24 GMT + etag: '"41F094180743AB23096CF2BAE42D4C967D26077469C0D5122FA74B7444B440C6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6e67151d-14d8-49dd-8fc0-d4ea12ad3f48 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1296&$top=1165&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1298&$top=1163&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1161&$maxpagesize=2"}' + headers: + apim-request-id: 50d6c81d-1d85-4572-9586-cb82939f18ad + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:24 GMT + etag: '"BB5EA1341CE21F01619A6075E2CFA3FDC843CB414B928D7EFEA0542F051A87FB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 50d6c81d-1d85-4572-9586-cb82939f18ad + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1298&$top=1163&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1161&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1302&$top=1159&$maxpagesize=2"}' + headers: + apim-request-id: 47d0941f-6fb8-4638-b9ac-ac05ea86eebf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:24 GMT + etag: '"18B42F33177358CDBD4463EE5146B7AD63F4538B9B612BBE4A79167045B6586D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 47d0941f-6fb8-4638-b9ac-ac05ea86eebf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1300&$top=1161&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1302&$top=1159&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1304&$top=1157&$maxpagesize=2"}' + headers: + apim-request-id: 3b6383d0-731e-49e4-a3bf-a05ab72323d2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:24 GMT + etag: '"DA15BDBC2AE9D2DE240F9B301656ED83804C85B173FD83A09FD4D6DC3046BDBC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3b6383d0-731e-49e4-a3bf-a05ab72323d2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1302&$top=1159&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1304&$top=1157&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1306&$top=1155&$maxpagesize=2"}' + headers: + apim-request-id: df7d47b5-150e-4baf-a96f-6b97006e7c74 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:24 GMT + etag: '"67757A27CD698996D006F75FE78E43DD998DE1100BB830CEC3C780D5F897300D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: df7d47b5-150e-4baf-a96f-6b97006e7c74 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1304&$top=1157&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1306&$top=1155&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1308&$top=1153&$maxpagesize=2"}' + headers: + apim-request-id: 53afbbe7-9739-4606-8203-f8cb1dfd32a2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:24 GMT + etag: '"99D0C76AEA8404B2663FBAA9EBFF028B6ED2347D60B6D08807CB99BEC1961E4C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 53afbbe7-9739-4606-8203-f8cb1dfd32a2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1306&$top=1155&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1308&$top=1153&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1310&$top=1151&$maxpagesize=2"}' + headers: + apim-request-id: 60648ea4-b571-45c2-9d64-34c01ac9b7e9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:25 GMT + etag: '"011C74098B720AC5B422FF38929C385BFD4486377D661D6F5C6E07ED875A6C78"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 60648ea4-b571-45c2-9d64-34c01ac9b7e9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1308&$top=1153&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1310&$top=1151&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1312&$top=1149&$maxpagesize=2"}' + headers: + apim-request-id: 896d866c-fbe8-46c5-928e-e8705c0cc687 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:25 GMT + etag: '"1A33F12466D587CC29E2E522EBF3AC07066672328A2DAA041E918C2A1DC3D355"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 896d866c-fbe8-46c5-928e-e8705c0cc687 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1310&$top=1151&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1312&$top=1149&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1314&$top=1147&$maxpagesize=2"}' + headers: + apim-request-id: 6b4ebbd7-2d2f-4205-84f6-e478d3144116 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:25 GMT + etag: '"CFECEBFC77CD1F046BBE3411DF62A2CA74185CF457585BF8631D56A4ADA97D0B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6b4ebbd7-2d2f-4205-84f6-e478d3144116 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1312&$top=1149&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1314&$top=1147&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1316&$top=1145&$maxpagesize=2"}' + headers: + apim-request-id: 94df293a-8d8f-44c8-a311-9f9080046312 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:25 GMT + etag: '"91DEDD1CC235C652F49426657213057D9E20F16CD3BB0ACC29DF50A53BCFCAC3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 94df293a-8d8f-44c8-a311-9f9080046312 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1314&$top=1147&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1316&$top=1145&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1318&$top=1143&$maxpagesize=2"}' + headers: + apim-request-id: eb0ca781-8f8e-4260-9579-0680f67f9b82 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:25 GMT + etag: '"DBB5DC96E55ED1153CDB30A381A2C317EAC7197388D0A9AE5A27470EA63135F1"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eb0ca781-8f8e-4260-9579-0680f67f9b82 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1316&$top=1145&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1318&$top=1143&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1320&$top=1141&$maxpagesize=2"}' + headers: + apim-request-id: 4feeb32b-7cf6-4c07-8dd1-87ea2f03f0f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:26 GMT + etag: '"77385E309A28EC0582280F82A8C29A2C122CE6FF2909ECDD8F48236B5806E085"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4feeb32b-7cf6-4c07-8dd1-87ea2f03f0f4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1318&$top=1143&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1320&$top=1141&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1322&$top=1139&$maxpagesize=2"}' + headers: + apim-request-id: 341070a5-513e-4ee4-90e6-55e39d3ffdf4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:26 GMT + etag: '"B4631A59DFCDA087D65D545E02EC6C4BD51D07F06F7CE4F6AD0BC9846B9E4BAA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 341070a5-513e-4ee4-90e6-55e39d3ffdf4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1320&$top=1141&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1322&$top=1139&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1324&$top=1137&$maxpagesize=2"}' + headers: + apim-request-id: 9480c597-d78e-4f93-a1a0-8fc385fd6303 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:26 GMT + etag: '"9AE1D067F6C7ED34A26302BFD98FEF6E6DE01E1474A443C9DB0E7C6365E05902"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9480c597-d78e-4f93-a1a0-8fc385fd6303 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1322&$top=1139&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1324&$top=1137&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1326&$top=1135&$maxpagesize=2"}' + headers: + apim-request-id: 6e5808e0-2d10-44b6-b433-2c23b25f91f3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:26 GMT + etag: '"D6D310F47DD40A9E72BC9231CA1BA0816F56DC418A3E1E134820F4A472ABA8C4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6e5808e0-2d10-44b6-b433-2c23b25f91f3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1324&$top=1137&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1326&$top=1135&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1328&$top=1133&$maxpagesize=2"}' + headers: + apim-request-id: b625b94c-9f02-43ec-b2dd-282e995e8710 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:26 GMT + etag: '"2C08EAF41A99EC0451B7ADD024D303B23E70498878C68C42C4915C2AAB176343"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b625b94c-9f02-43ec-b2dd-282e995e8710 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1326&$top=1135&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1328&$top=1133&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1330&$top=1131&$maxpagesize=2"}' + headers: + apim-request-id: f26f27ca-fa71-489f-a559-5efe560c29e2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:26 GMT + etag: '"A64C375522008238DD8DC8524CEA2C76876F69AF8F68E46850F5D021A56738EA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f26f27ca-fa71-489f-a559-5efe560c29e2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1328&$top=1133&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1330&$top=1131&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1332&$top=1129&$maxpagesize=2"}' + headers: + apim-request-id: 8128dc8a-8fa3-4463-8515-d4b9c6d29c3c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:27 GMT + etag: '"6ECCE752C3BB32BEA730E14D939CFC14994B1BC18D3E4A9F144155A15C06D98E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8128dc8a-8fa3-4463-8515-d4b9c6d29c3c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1330&$top=1131&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1332&$top=1129&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1334&$top=1127&$maxpagesize=2"}' + headers: + apim-request-id: a28121fc-654c-4967-886d-3bf84a0acb1e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:27 GMT + etag: '"99B2ED990D1A07AEACD08AB158F6182390E84011C02015BF1BC014E0AD5F8C77"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a28121fc-654c-4967-886d-3bf84a0acb1e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1332&$top=1129&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1334&$top=1127&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1336&$top=1125&$maxpagesize=2"}' + headers: + apim-request-id: 8da21167-6786-4542-9f51-695755558e87 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:27 GMT + etag: '"99A40C390A6AAD528CE95A294E797475B6BEDB7055AAEA73AAD6FF488EE81607"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8da21167-6786-4542-9f51-695755558e87 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1334&$top=1127&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1336&$top=1125&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1338&$top=1123&$maxpagesize=2"}' + headers: + apim-request-id: 64bb73bb-904b-4de2-8e83-ca5346db9d2e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:27 GMT + etag: '"DBDE5B46F7EAA8D6D88FDFC9DA7ABB637783A775DF576C73A57E5463262B82CF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 64bb73bb-904b-4de2-8e83-ca5346db9d2e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1336&$top=1125&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1338&$top=1123&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1340&$top=1121&$maxpagesize=2"}' + headers: + apim-request-id: 042bef65-edad-4dca-8a6b-5fd189d6ef0f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:27 GMT + etag: '"01EE4F76681E11132D3E97A724E1BCAB04E1C111186A2F7ACC1D9C153D690B70"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 042bef65-edad-4dca-8a6b-5fd189d6ef0f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1338&$top=1123&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1340&$top=1121&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1342&$top=1119&$maxpagesize=2"}' + headers: + apim-request-id: a9708bd7-7e45-479a-95ce-d0e7439fffa5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:28 GMT + etag: '"6C332EE825746EF21E5875419319601B8C4CD64545795632AF4ECF6887808BE8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a9708bd7-7e45-479a-95ce-d0e7439fffa5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1340&$top=1121&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1342&$top=1119&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1344&$top=1117&$maxpagesize=2"}' + headers: + apim-request-id: 2387fc08-925e-4e98-98a2-899858d6436b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:28 GMT + etag: '"B5399CEB77402EA128066CBB18B133E8EFA23EE7F6901D740956A883516EB438"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2387fc08-925e-4e98-98a2-899858d6436b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1342&$top=1119&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1344&$top=1117&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1346&$top=1115&$maxpagesize=2"}' + headers: + apim-request-id: 20c7d8aa-81eb-4d14-97a0-017a9b040359 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:28 GMT + etag: '"9CA61842702757DFD517BFD95A63B779D557903E2922F92ED05C7619A0C7956D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 20c7d8aa-81eb-4d14-97a0-017a9b040359 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1344&$top=1117&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1346&$top=1115&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1348&$top=1113&$maxpagesize=2"}' + headers: + apim-request-id: a23bb8fc-f396-43c4-b883-80fb0817f931 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:28 GMT + etag: '"E2CC70A4F29233147997D71D8247E34839776D8622CC312B0A9141AAD51DD69F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a23bb8fc-f396-43c4-b883-80fb0817f931 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1346&$top=1115&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1348&$top=1113&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1111&$maxpagesize=2"}' + headers: + apim-request-id: 90b1bb1a-35cf-4924-af31-ade0ce1562b5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:28 GMT + etag: '"11E5868449D3DA6DC778402EF93A2422A428DADD1377B909D1B72E8B84C2E843"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 90b1bb1a-35cf-4924-af31-ade0ce1562b5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1348&$top=1113&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1111&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1352&$top=1109&$maxpagesize=2"}' + headers: + apim-request-id: 7c58cef5-7237-41b2-91bb-92eb85e2c3a6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:28 GMT + etag: '"0232368562FB250E2A9352DA83127CBE0A84FFBA76531345D9CF98A52C7785CE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7c58cef5-7237-41b2-91bb-92eb85e2c3a6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1350&$top=1111&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1352&$top=1109&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1354&$top=1107&$maxpagesize=2"}' + headers: + apim-request-id: 6d4069d2-93f9-48f5-9139-2b4c5f119f42 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:29 GMT + etag: '"4372C973F18C403D5ACB8BA26AD15E0F9037A3EAE7BB1068FCA3E97957992FE5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6d4069d2-93f9-48f5-9139-2b4c5f119f42 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1352&$top=1109&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1354&$top=1107&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1356&$top=1105&$maxpagesize=2"}' + headers: + apim-request-id: c4616b1d-f1a1-4cb1-9b1d-5af3ce130ec0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:29 GMT + etag: '"6B5DF9D3339B31D32E6A51F0BFDE9F2542C78FCC8371334B6D4AA0F1103392DE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c4616b1d-f1a1-4cb1-9b1d-5af3ce130ec0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1354&$top=1107&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1356&$top=1105&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1358&$top=1103&$maxpagesize=2"}' + headers: + apim-request-id: 3bf55cfe-a859-40a0-807b-9fa5b7d8b624 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:29 GMT + etag: '"E9FEBF53321ECE3B9F998CF844E9081FC056BDE342BDA0BAD67B07225B784D49"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3bf55cfe-a859-40a0-807b-9fa5b7d8b624 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1356&$top=1105&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1358&$top=1103&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1360&$top=1101&$maxpagesize=2"}' + headers: + apim-request-id: c5b80f43-1b23-4780-97dc-51e0348d5b43 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:29 GMT + etag: '"28A607C5CA6659F59953FB6960A067D47600294428B14658BFFDE908234919C8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c5b80f43-1b23-4780-97dc-51e0348d5b43 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1358&$top=1103&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1360&$top=1101&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1362&$top=1099&$maxpagesize=2"}' + headers: + apim-request-id: 62ca417b-262c-4aa9-948c-d87378c9714a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:29 GMT + etag: '"A09A3F2C2036E99CE307AF349C0FECB50370503A015D66FEBE7AAB9E53A949C4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 62ca417b-262c-4aa9-948c-d87378c9714a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1360&$top=1101&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1362&$top=1099&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1364&$top=1097&$maxpagesize=2"}' + headers: + apim-request-id: f712b606-73a2-4933-80c2-a4461531583e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:29 GMT + etag: '"CE94A95735F34E63EF3519954812CA26F2E9EB0EA3341AA37870157B773E9FF2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f712b606-73a2-4933-80c2-a4461531583e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1362&$top=1099&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1364&$top=1097&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1366&$top=1095&$maxpagesize=2"}' + headers: + apim-request-id: 8f1faa37-54eb-42c6-bfe3-423424b00098 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:30 GMT + etag: '"456096B31554FD32C1B3C9DF677AB82C7AA416956CA76594E636CB5E829848BE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8f1faa37-54eb-42c6-bfe3-423424b00098 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1364&$top=1097&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1366&$top=1095&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1368&$top=1093&$maxpagesize=2"}' + headers: + apim-request-id: 3cb3de99-21c6-4f96-bbbf-5f7cc5012cfb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:30 GMT + etag: '"AA2F7669EBAE45863AED33EF9CA1FCBC77323DC9390C6158A5977A2DEF69A0F4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3cb3de99-21c6-4f96-bbbf-5f7cc5012cfb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1366&$top=1095&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1368&$top=1093&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1370&$top=1091&$maxpagesize=2"}' + headers: + apim-request-id: 2bd51df5-473b-428d-9224-49b8a9e399a2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:30 GMT + etag: '"5B08BB3BEFC72C5D81B7132704E5A7D0E80056C6F63D9EDB02D8F8F3A5B07078"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2bd51df5-473b-428d-9224-49b8a9e399a2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1368&$top=1093&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1370&$top=1091&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1372&$top=1089&$maxpagesize=2"}' + headers: + apim-request-id: 57aa3ce0-ed16-4d22-b03a-047f6e50c126 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:30 GMT + etag: '"EC1FD09B48BE2E5FB00C7295FFB3EA99B833828CB44F4C81AE35460BFD9D0E01"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 57aa3ce0-ed16-4d22-b03a-047f6e50c126 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1370&$top=1091&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1372&$top=1089&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1374&$top=1087&$maxpagesize=2"}' + headers: + apim-request-id: df8ad0cb-bb31-4522-a38f-387d59b82f4c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:30 GMT + etag: '"18DA697BB7663C5D0E7403ABBD56F64A6021E78AE108866FA090A889370B6434"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: df8ad0cb-bb31-4522-a38f-387d59b82f4c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1372&$top=1089&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1374&$top=1087&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1376&$top=1085&$maxpagesize=2"}' + headers: + apim-request-id: 65abcbbd-3ef5-43fc-a51c-1882d3f711e7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:31 GMT + etag: '"70BF1663541E23913400F03EFA1FBCBCF725AF3B60CC7325E55A039FB68600C2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 65abcbbd-3ef5-43fc-a51c-1882d3f711e7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1374&$top=1087&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1376&$top=1085&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1378&$top=1083&$maxpagesize=2"}' + headers: + apim-request-id: e503e103-c205-4c78-91b4-b33d76b1ed99 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:31 GMT + etag: '"AAF2FD105A52D65D4A062A56566A61EE7225F4555B99EAF5033D2E6ED8B76600"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e503e103-c205-4c78-91b4-b33d76b1ed99 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1376&$top=1085&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1378&$top=1083&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1380&$top=1081&$maxpagesize=2"}' + headers: + apim-request-id: 2bdae915-5ca8-47b2-bc26-371d4e288e1c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:31 GMT + etag: '"29E11A0D135BAFE46520CC15ADD9D436A92E2D95E45BA2691E1965BE92A6D94F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2bdae915-5ca8-47b2-bc26-371d4e288e1c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1378&$top=1083&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1380&$top=1081&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1382&$top=1079&$maxpagesize=2"}' + headers: + apim-request-id: 36ef929c-e640-46c9-87ee-81c89ebbed47 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:31 GMT + etag: '"94ACB42CF937DEC51141EDCCC7A9A3AD911742F7118DFF3BC19FDAD857DB55C7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 36ef929c-e640-46c9-87ee-81c89ebbed47 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1380&$top=1081&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1382&$top=1079&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1384&$top=1077&$maxpagesize=2"}' + headers: + apim-request-id: 6c595dde-5edb-4b4d-9e11-5d0642064d93 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:31 GMT + etag: '"D741A414A55D6E5320DB52C8D2A36272E1EBB1ABB63A01F2A79986E06909C904"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6c595dde-5edb-4b4d-9e11-5d0642064d93 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1382&$top=1079&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1384&$top=1077&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1386&$top=1075&$maxpagesize=2"}' + headers: + apim-request-id: ccc3b3a0-24aa-4693-b054-9d86a95f1fc2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:31 GMT + etag: '"6D09D0A2C9825AF810E11AEC30973EFBDD9C322C1106F07B58C0D8C9C3284C75"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ccc3b3a0-24aa-4693-b054-9d86a95f1fc2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1384&$top=1077&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1386&$top=1075&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1388&$top=1073&$maxpagesize=2"}' + headers: + apim-request-id: fc5da4ec-3623-4eb9-a7cb-77f9afbdea7f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:32 GMT + etag: '"66BAFEF0F3F774D18E9FA0ABB8AA628D157EBB0D856C031B15207CA78B8ECCE3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fc5da4ec-3623-4eb9-a7cb-77f9afbdea7f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1386&$top=1075&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1388&$top=1073&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1390&$top=1071&$maxpagesize=2"}' + headers: + apim-request-id: 409dbd3a-2aa8-4087-b39e-8b53c84e407d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:32 GMT + etag: '"8083A3B20A5AA74BD8EB629DCA7C520DE3EB14543CA6BA3868BD34C901812896"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 409dbd3a-2aa8-4087-b39e-8b53c84e407d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1388&$top=1073&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1390&$top=1071&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1392&$top=1069&$maxpagesize=2"}' + headers: + apim-request-id: 46e5719d-b069-4268-b7b7-2e4bd7c08e1f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:32 GMT + etag: '"6E2F2797C6A15B0124F6BE32B68007C1B8201193D95BF9120882572FD9CC19B3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 46e5719d-b069-4268-b7b7-2e4bd7c08e1f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1390&$top=1071&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1392&$top=1069&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1394&$top=1067&$maxpagesize=2"}' + headers: + apim-request-id: 3f1d5be2-73aa-473f-bc3b-3b7d03a10169 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:32 GMT + etag: '"8FB9FF9742E77C920BBAECF3BC74FA659BBD46781191D5FAD060D1933C3F5C98"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3f1d5be2-73aa-473f-bc3b-3b7d03a10169 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1392&$top=1069&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1394&$top=1067&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1396&$top=1065&$maxpagesize=2"}' + headers: + apim-request-id: a6cebd13-e3a5-40d7-8357-9c79a55409d2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:32 GMT + etag: '"34283AE55D1E52FE3729F8A6B167D7EEE1E73121B0AEA9C0A9AC3E9FAE947B29"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a6cebd13-e3a5-40d7-8357-9c79a55409d2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1394&$top=1067&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1396&$top=1065&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1398&$top=1063&$maxpagesize=2"}' + headers: + apim-request-id: 1ba993e5-0cc2-481a-94d0-fba8bd28e5f2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:33 GMT + etag: '"5F173195B7D74C183FB54B00795CCDB30B3D380A660BEE5C33806F50F2065668"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1ba993e5-0cc2-481a-94d0-fba8bd28e5f2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1396&$top=1065&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1398&$top=1063&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1061&$maxpagesize=2"}' + headers: + apim-request-id: 40bb7ce6-93d4-4ac2-b5b0-7afa7c802fa9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:33 GMT + etag: '"B3319A9D418242BA8EE24324AFDAEBBFED992205FEB43DBF6950193AC2FFCDC7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 40bb7ce6-93d4-4ac2-b5b0-7afa7c802fa9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1398&$top=1063&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1061&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1402&$top=1059&$maxpagesize=2"}' + headers: + apim-request-id: 9bd02a08-d2c0-4a55-b0b3-b1585be7646a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:33 GMT + etag: '"58D5044B0DA19E3C4777B5FC28E4F53515BE3ECE4E056A684BBD40DC78039F95"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9bd02a08-d2c0-4a55-b0b3-b1585be7646a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1400&$top=1061&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1402&$top=1059&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1404&$top=1057&$maxpagesize=2"}' + headers: + apim-request-id: a47f29d2-70cf-4f88-9bf3-e76b21eedf6e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:33 GMT + etag: '"768182682190AE9E4136A33051E1DF8E2C27B9BE3E28FF0449D12278A5C5957D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a47f29d2-70cf-4f88-9bf3-e76b21eedf6e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1402&$top=1059&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1404&$top=1057&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1406&$top=1055&$maxpagesize=2"}' + headers: + apim-request-id: 13c7c52d-83f4-4fb7-8453-081aee23bc7e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:33 GMT + etag: '"57DDE5AE7491A55575F6BE6901E6434DB356F69391FC2AA25E201BB5616639EF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 13c7c52d-83f4-4fb7-8453-081aee23bc7e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1404&$top=1057&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1406&$top=1055&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1408&$top=1053&$maxpagesize=2"}' + headers: + apim-request-id: fda19fb3-ffb9-489a-a775-cb2566ad6cb4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:33 GMT + etag: '"AD26A6C5F9A3B6DD90416889777ECDE60603532D3F399254AFF2F7567AAFECBA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fda19fb3-ffb9-489a-a775-cb2566ad6cb4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1406&$top=1055&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1408&$top=1053&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1410&$top=1051&$maxpagesize=2"}' + headers: + apim-request-id: 23b4151b-b2d1-483a-bd88-3a715b58c5e3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:34 GMT + etag: '"3759F94562B19116B15528FD45895B1A9115F9C85B8ED97ED80E3F66FC7149E8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 23b4151b-b2d1-483a-bd88-3a715b58c5e3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1408&$top=1053&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1410&$top=1051&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1412&$top=1049&$maxpagesize=2"}' + headers: + apim-request-id: 9d523b63-5c31-4718-9951-15c95c103a2b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:34 GMT + etag: '"68FEFBA104B3D2A60C545D70003BE0A8022A4AF2ED1F3E3A26E8D154B5480E73"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9d523b63-5c31-4718-9951-15c95c103a2b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1410&$top=1051&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1412&$top=1049&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1414&$top=1047&$maxpagesize=2"}' + headers: + apim-request-id: 7c3798c4-9ee9-496a-b289-418363a1e753 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:34 GMT + etag: '"09057A26A95319D0EF92CB0FD9D8FB544D3043028D65EBF4470A9B63A15D62B0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7c3798c4-9ee9-496a-b289-418363a1e753 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1412&$top=1049&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1414&$top=1047&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1416&$top=1045&$maxpagesize=2"}' + headers: + apim-request-id: 4a5bebd2-8cc0-44e8-9954-608e80aac5e5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:34 GMT + etag: '"05F478F14D2B9E7AA49FC9C5FB5BEA7E053EBC0FF6828E859A10511B736642CB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4a5bebd2-8cc0-44e8-9954-608e80aac5e5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1414&$top=1047&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1416&$top=1045&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1418&$top=1043&$maxpagesize=2"}' + headers: + apim-request-id: a17a7449-a627-459b-8ead-c3afbe9544a4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:34 GMT + etag: '"BD4A5E9CFE7B8125C2AFD918355743B5024BE8526E5FE6E683666C3B640AEB4C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a17a7449-a627-459b-8ead-c3afbe9544a4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1416&$top=1045&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1418&$top=1043&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1420&$top=1041&$maxpagesize=2"}' + headers: + apim-request-id: 8e117176-e747-466b-a1e7-7d80900994d2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:35 GMT + etag: '"4B240B22FA929F764E43401AF761FA3AD0320D7675317EFA6870B52B90212EE8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8e117176-e747-466b-a1e7-7d80900994d2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1418&$top=1043&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1420&$top=1041&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1422&$top=1039&$maxpagesize=2"}' + headers: + apim-request-id: 273fce52-d267-4ebe-9a2e-b11694e9693b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:35 GMT + etag: '"206B2B731A9A28F8BF0DFB40BB4B9211055D008003C8B11891492BD878CAB4AB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 273fce52-d267-4ebe-9a2e-b11694e9693b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1420&$top=1041&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1422&$top=1039&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1424&$top=1037&$maxpagesize=2"}' + headers: + apim-request-id: e18fcadd-47cd-4036-bb07-ad14d5a4bbd7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:35 GMT + etag: '"EB8E40E4DF7290C4FE7B3D2C61A1D48898EBEAD04E1D9E086C9981FB5340B603"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e18fcadd-47cd-4036-bb07-ad14d5a4bbd7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1422&$top=1039&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1424&$top=1037&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1426&$top=1035&$maxpagesize=2"}' + headers: + apim-request-id: d1bdf969-86f0-4820-a27f-c12b1b2589b5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:35 GMT + etag: '"739C60F7D2B9A06FA1976CF76490E577C18B534DE647FACFC3D8E16C0F367D25"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d1bdf969-86f0-4820-a27f-c12b1b2589b5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1424&$top=1037&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1426&$top=1035&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1428&$top=1033&$maxpagesize=2"}' + headers: + apim-request-id: 96b57c0b-3a00-41c1-97fd-0559a135097b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:35 GMT + etag: '"1D65530CF85B67D62B764F38FD1C1ED0AA300021F68461122FAC9F5647FB8AED"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 96b57c0b-3a00-41c1-97fd-0559a135097b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1426&$top=1035&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1428&$top=1033&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1430&$top=1031&$maxpagesize=2"}' + headers: + apim-request-id: 2cce6293-65ca-4d66-99fb-ca893cf2d520 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:35 GMT + etag: '"3E458686DDEACBA7C512DA9ED068310A0BB9F5A3FB47EB038D57A62BD6556137"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2cce6293-65ca-4d66-99fb-ca893cf2d520 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1428&$top=1033&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1430&$top=1031&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1432&$top=1029&$maxpagesize=2"}' + headers: + apim-request-id: fa27e882-1637-4d8a-89a7-1120c0b8a64e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:36 GMT + etag: '"C43848F5732FE38A94C1B7293D5F9DD4BBB290F8851D7656FC3E9026B1DAE2F7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fa27e882-1637-4d8a-89a7-1120c0b8a64e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1430&$top=1031&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1432&$top=1029&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1434&$top=1027&$maxpagesize=2"}' + headers: + apim-request-id: f1dc845d-70bd-4664-9861-621db8f08d19 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:36 GMT + etag: '"20E745614ABAAC3EDB0F0E2B5E653CF0486AEDC044EB0FC14CF8069B46A1C228"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f1dc845d-70bd-4664-9861-621db8f08d19 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1432&$top=1029&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1434&$top=1027&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1436&$top=1025&$maxpagesize=2"}' + headers: + apim-request-id: c0d188a4-dd4e-4f3c-8875-e312aae92484 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:36 GMT + etag: '"97DE90C33981A07584C25F42127C250EA25A6B6DC9DD463C1FBEFB2F82608D05"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c0d188a4-dd4e-4f3c-8875-e312aae92484 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1434&$top=1027&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1436&$top=1025&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1438&$top=1023&$maxpagesize=2"}' + headers: + apim-request-id: bba75e56-364d-4dc1-8570-e2fd0e09fa6b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:36 GMT + etag: '"B9624A72EB7554DAEB8A5E8A54BC69DD28ADBC575F25802F404851B3E94D9458"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bba75e56-364d-4dc1-8570-e2fd0e09fa6b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1436&$top=1025&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1438&$top=1023&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1440&$top=1021&$maxpagesize=2"}' + headers: + apim-request-id: 4d9c6a96-66e3-4954-8fe9-f8b8b077af28 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:36 GMT + etag: '"BBF059B1EFE3D82922E71B1C26FE2EA4DAC664B9B25C01C5D8803331CEFACB70"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4d9c6a96-66e3-4954-8fe9-f8b8b077af28 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1438&$top=1023&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1440&$top=1021&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1442&$top=1019&$maxpagesize=2"}' + headers: + apim-request-id: 8525f531-8cf9-49ef-bb64-196f737e3f7d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:37 GMT + etag: '"552C18987282CBC9FF613219253B0330FFC90EBCA7B8FD9BF581477CCD69C2F6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8525f531-8cf9-49ef-bb64-196f737e3f7d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1440&$top=1021&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1442&$top=1019&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1444&$top=1017&$maxpagesize=2"}' + headers: + apim-request-id: 1301dd59-00e3-44c2-a416-a469362ae288 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:37 GMT + etag: '"6A906DA114394719361EB6A27C2D0EBB7F923AAA838654070E9F0A52203A7EC9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1301dd59-00e3-44c2-a416-a469362ae288 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1442&$top=1019&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1444&$top=1017&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1446&$top=1015&$maxpagesize=2"}' + headers: + apim-request-id: e2f0c122-3cb6-4fab-8a0c-9a20bd4c9269 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:37 GMT + etag: '"44FC711AFBAF84558B89EFC1A2F2F2F5B5C52458A4829105B7456BA5291E6566"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e2f0c122-3cb6-4fab-8a0c-9a20bd4c9269 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1444&$top=1017&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1446&$top=1015&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1448&$top=1013&$maxpagesize=2"}' + headers: + apim-request-id: a307e46c-810e-48c0-af85-c6c4bf7fd244 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:37 GMT + etag: '"0B51BF061B03BC9C26695754514BDBB9C9BDFB35BC28AB75F618B4DC8D7E21ED"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a307e46c-810e-48c0-af85-c6c4bf7fd244 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1446&$top=1015&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1448&$top=1013&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=1011&$maxpagesize=2"}' + headers: + apim-request-id: 7039aa37-dfed-4bc4-87e2-923407a7cc6a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:37 GMT + etag: '"E6BA2B16ACA81F2D913F345A5F963D12E5E4FF932159966190ECCE689A3476B2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7039aa37-dfed-4bc4-87e2-923407a7cc6a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1448&$top=1013&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=1011&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1452&$top=1009&$maxpagesize=2"}' + headers: + apim-request-id: 3558f63c-764d-43c1-b238-ef2eb96bc6e8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:37 GMT + etag: '"E8198AB1E84DEBCB7E65B38F04EE2DA02332D425E0649C7790442B5837F423B9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3558f63c-764d-43c1-b238-ef2eb96bc6e8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1450&$top=1011&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1452&$top=1009&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1454&$top=1007&$maxpagesize=2"}' + headers: + apim-request-id: 0f41b61b-14c4-4f40-a218-49bd9c8735e5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:38 GMT + etag: '"10F832CA3002D82756BAC0FC01F52A1371AC3730778F81B55B14F0A24E288B3F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0f41b61b-14c4-4f40-a218-49bd9c8735e5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1452&$top=1009&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1454&$top=1007&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1456&$top=1005&$maxpagesize=2"}' + headers: + apim-request-id: fd00a2e6-2ed5-4aaf-add3-9454e4f78697 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:38 GMT + etag: '"5CDC9CE0C10604DABA59B94B02CAF4893E0298F2C0C2AB333249BEA9DBB42994"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fd00a2e6-2ed5-4aaf-add3-9454e4f78697 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1454&$top=1007&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1456&$top=1005&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1458&$top=1003&$maxpagesize=2"}' + headers: + apim-request-id: 5b01f975-8427-4c88-83c6-6b1fca2b5636 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:38 GMT + etag: '"843828156E29EDFAEF8E235528070778A7C82249E3216CDD3CCEE6D6457443AE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5b01f975-8427-4c88-83c6-6b1fca2b5636 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1456&$top=1005&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1458&$top=1003&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1460&$top=1001&$maxpagesize=2"}' + headers: + apim-request-id: 921b09bf-a1cf-44ac-8e85-e67c4980905a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:38 GMT + etag: '"E4DA7057ABD6A3F189452053A631DFED4FAF52AE64BF52A66A5564869AB8320F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 921b09bf-a1cf-44ac-8e85-e67c4980905a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1458&$top=1003&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1460&$top=1001&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1462&$top=999&$maxpagesize=2"}' + headers: + apim-request-id: 59eae753-bd35-4dc7-b893-5a7b038f346a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:38 GMT + etag: '"55EA141F0A0D41B1A3C0F9D101FF6062CD03420B2F7CE2F5DD977739A2916CBF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 59eae753-bd35-4dc7-b893-5a7b038f346a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1460&$top=1001&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1462&$top=999&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1464&$top=997&$maxpagesize=2"}' + headers: + apim-request-id: 69bdd32f-1ac6-4727-b8c3-8940daef1256 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:38 GMT + etag: '"297562F004120C84F84D7155EE1D546A43D75BD27CA92ADD50EC2820E63A72ED"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 69bdd32f-1ac6-4727-b8c3-8940daef1256 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1462&$top=999&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1464&$top=997&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1466&$top=995&$maxpagesize=2"}' + headers: + apim-request-id: 87fc94c0-d286-4319-8fdf-5607031ef1dd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:39 GMT + etag: '"E63D8068EDCD89AB291261AE7B0475BFCA48D229A51FBFF498EC663D2E3D9F8B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 87fc94c0-d286-4319-8fdf-5607031ef1dd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1464&$top=997&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1466&$top=995&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1468&$top=993&$maxpagesize=2"}' + headers: + apim-request-id: 648844d0-b5f1-48c0-9c2f-e43a123aba34 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:39 GMT + etag: '"6487E9C4E6C56398C5F376422306FE6FDC8FAFD1470A3E2276325396F5A97326"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 648844d0-b5f1-48c0-9c2f-e43a123aba34 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1466&$top=995&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1468&$top=993&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1470&$top=991&$maxpagesize=2"}' + headers: + apim-request-id: 15531ad4-5f69-4631-8d78-a70e2648bf67 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:39 GMT + etag: '"0F16C2F0DB0A152C88569A6AD1893679995390732EB874525DD6EFBB9D933D60"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 15531ad4-5f69-4631-8d78-a70e2648bf67 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1468&$top=993&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1470&$top=991&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1472&$top=989&$maxpagesize=2"}' + headers: + apim-request-id: 0f04e737-0a6b-433d-b911-be4ba1913304 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:39 GMT + etag: '"9C7A3C0AA72EEF35C3BBE0D86C0A76B46E7ADCAFF4884CED3FB94983466D018D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0f04e737-0a6b-433d-b911-be4ba1913304 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1470&$top=991&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1472&$top=989&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1474&$top=987&$maxpagesize=2"}' + headers: + apim-request-id: 38098c1c-13b4-4e18-a336-ff61d92d5df2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:39 GMT + etag: '"7D8E25E7B2EC308BCCADEB056963E47D1A0DE169ECD41B24927BD3F15B645B0C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 38098c1c-13b4-4e18-a336-ff61d92d5df2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1472&$top=989&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1474&$top=987&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1476&$top=985&$maxpagesize=2"}' + headers: + apim-request-id: c723e890-c52e-4e93-a515-a6b555f190cb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:40 GMT + etag: '"32077611B1D4E7D41CF6174AFB4B6B1BA63BFC0D7915E1653EEF2531F9425B4A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c723e890-c52e-4e93-a515-a6b555f190cb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1474&$top=987&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1476&$top=985&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1478&$top=983&$maxpagesize=2"}' + headers: + apim-request-id: 1918d6e9-2f9f-4740-bdf9-817047107f76 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:40 GMT + etag: '"98EC2C40E5E193FE0F2E3C817F5AE60721CB0A670A4E99DE978E8326DF967025"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1918d6e9-2f9f-4740-bdf9-817047107f76 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1476&$top=985&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1478&$top=983&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1480&$top=981&$maxpagesize=2"}' + headers: + apim-request-id: 63fafa79-722a-48b5-bfd2-dd1095eb6642 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:40 GMT + etag: '"ACD249A41DD1D18AF70F2FC7A1A3878B15CA096FE7E7DACA761AB88FBD9C658B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 63fafa79-722a-48b5-bfd2-dd1095eb6642 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1478&$top=983&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1480&$top=981&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1482&$top=979&$maxpagesize=2"}' + headers: + apim-request-id: 744002ff-07d6-408e-bcea-0e6d9334bfab + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:40 GMT + etag: '"CD79BEDBAEB63C1C1BFC90501E91813F0AC766E41DDC3B41BCF05B5339E84302"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 744002ff-07d6-408e-bcea-0e6d9334bfab + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1480&$top=981&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1482&$top=979&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1484&$top=977&$maxpagesize=2"}' + headers: + apim-request-id: b370efbf-df4a-4fdb-ad87-c7b8f7590e27 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:40 GMT + etag: '"DBE3EDD9E34E376BF6541E81D770037EF1C1EA4EBB51AF24AFF487052592138C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b370efbf-df4a-4fdb-ad87-c7b8f7590e27 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1482&$top=979&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1484&$top=977&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1486&$top=975&$maxpagesize=2"}' + headers: + apim-request-id: 2656b1b3-2981-4ee0-b408-c0e6964412dc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:40 GMT + etag: '"A0E0760E3FB6221CD1ECE0CA54B8612BC98B2BC479003B4FECACFDDF240E60DC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2656b1b3-2981-4ee0-b408-c0e6964412dc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1484&$top=977&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1486&$top=975&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1488&$top=973&$maxpagesize=2"}' + headers: + apim-request-id: 537c1a3e-eb39-470b-ab08-e3cf3e6fd5bf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:41 GMT + etag: '"FF8E47F85912AC44C2B276110479C9FD7F9A4620F17BDFA5F427D0B47CF8F693"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 537c1a3e-eb39-470b-ab08-e3cf3e6fd5bf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1486&$top=975&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1488&$top=973&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1490&$top=971&$maxpagesize=2"}' + headers: + apim-request-id: 9358522f-4707-441d-a4d2-1e36c87e8944 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:41 GMT + etag: '"C508556DCBB7CA322E4C45FA193F8EC2219A251FF874FEA5F6DCEBC234560CD2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9358522f-4707-441d-a4d2-1e36c87e8944 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1488&$top=973&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1490&$top=971&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1492&$top=969&$maxpagesize=2"}' + headers: + apim-request-id: 6a818ebe-71c1-4bca-8567-7ece782ef80d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:41 GMT + etag: '"E8AF3C4CE7334672EE855E79A0C490B698BCC8BE660D3096817A6716F5EAACB9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6a818ebe-71c1-4bca-8567-7ece782ef80d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1490&$top=971&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1492&$top=969&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1494&$top=967&$maxpagesize=2"}' + headers: + apim-request-id: 75f6459d-263c-479d-8c1e-1d871fe3e52e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:41 GMT + etag: '"175D0E24881AD623308965F1DAC231CFE72ABA90B2526CD8FF1CC75DD8E0B892"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 75f6459d-263c-479d-8c1e-1d871fe3e52e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1492&$top=969&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1494&$top=967&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1496&$top=965&$maxpagesize=2"}' + headers: + apim-request-id: 94989308-d7d3-4218-a1ff-87151616b5a3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:41 GMT + etag: '"6091A89CD49454448D4426D43DD72B7886BB5D9860BA3534D5341A8384C0A99A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 94989308-d7d3-4218-a1ff-87151616b5a3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1494&$top=967&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1496&$top=965&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1498&$top=963&$maxpagesize=2"}' + headers: + apim-request-id: e7ae02f2-960e-4c9d-80ff-ad3b6c9b6467 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:41 GMT + etag: '"FE3D19752038F59602B5416F99DB0E7C27DEB4E261C760B919684716832933E5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e7ae02f2-960e-4c9d-80ff-ad3b6c9b6467 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1496&$top=965&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1498&$top=963&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=961&$maxpagesize=2"}' + headers: + apim-request-id: dc8c90af-6b0c-45ab-ae2a-834cb8f261c5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:42 GMT + etag: '"9ED40177EEEC4FF2F530B6A1D8B40F3F51C4C029BED164A2A4828EF756E5EB30"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dc8c90af-6b0c-45ab-ae2a-834cb8f261c5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1498&$top=963&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=961&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1502&$top=959&$maxpagesize=2"}' + headers: + apim-request-id: 5e9b755f-70a9-4d50-a0e6-474164f77e7b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:42 GMT + etag: '"739798F07943FF998CB220200B89141CB4F0EA7931F1C718B7FE54A7CC2A376F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5e9b755f-70a9-4d50-a0e6-474164f77e7b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1500&$top=961&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1502&$top=959&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1504&$top=957&$maxpagesize=2"}' + headers: + apim-request-id: c7f3ac27-9f38-472e-ab42-e0a3f102c215 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:42 GMT + etag: '"AB0F9ED43A3DC5D3EE5085ECDC5A374C7C76C06D315A85840EB9290F180531DD"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c7f3ac27-9f38-472e-ab42-e0a3f102c215 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1502&$top=959&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1504&$top=957&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1506&$top=955&$maxpagesize=2"}' + headers: + apim-request-id: 73518ca0-61aa-4b78-8dc0-2fbd8437dc44 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:42 GMT + etag: '"C71F0C3809C8E98859A392F874299659D22FCFF645D3752B728D00DC86CE0BE9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 73518ca0-61aa-4b78-8dc0-2fbd8437dc44 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1504&$top=957&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1506&$top=955&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1508&$top=953&$maxpagesize=2"}' + headers: + apim-request-id: 0e566129-6bd9-4896-93d5-b905fd64bfb5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:42 GMT + etag: '"83A8214795010BC573295154DBF5859C0D37541860FABED804B9DC7FDE7F5122"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0e566129-6bd9-4896-93d5-b905fd64bfb5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1506&$top=955&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1508&$top=953&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1510&$top=951&$maxpagesize=2"}' + headers: + apim-request-id: 117ee1e8-0d10-4a4f-94e7-de44d292c884 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:43 GMT + etag: '"DDDA20BA9D4D56A4F7F1EA7AD478164B7E5933028F843BF5DE6DE9E1B51DC096"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 117ee1e8-0d10-4a4f-94e7-de44d292c884 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1508&$top=953&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1510&$top=951&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1512&$top=949&$maxpagesize=2"}' + headers: + apim-request-id: 9004f293-d53e-449c-b55b-f5d4c3bbb1d9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:43 GMT + etag: '"F800EF18E5D497184C02D802DEDD7E627388ACCE14D51AB44D991AF0A8D5E125"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9004f293-d53e-449c-b55b-f5d4c3bbb1d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1510&$top=951&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1512&$top=949&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1514&$top=947&$maxpagesize=2"}' + headers: + apim-request-id: 38d0b763-8454-4cb5-adfc-08236a6c78ac + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:43 GMT + etag: '"2BC174EBAAEC45C055AF1515735ED67DA7A454F46BA8E7ACCF9A2C78F9491C58"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 38d0b763-8454-4cb5-adfc-08236a6c78ac + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1512&$top=949&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1514&$top=947&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1516&$top=945&$maxpagesize=2"}' + headers: + apim-request-id: 29a27db4-8dd0-4883-ba38-377a79291b90 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:43 GMT + etag: '"4BC11470E818C225FBE3CE9517C457AD0AF7E6CED34CC7A3DBFDB0B9EEBEF2FA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 29a27db4-8dd0-4883-ba38-377a79291b90 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1514&$top=947&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1516&$top=945&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1518&$top=943&$maxpagesize=2"}' + headers: + apim-request-id: 03b5ae76-f8f6-4543-b940-7cde595414cb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:43 GMT + etag: '"9983D8FAAA5ABBF21FB299F40A8FF0177BBBD0AE4A537ED818E1E941184339E2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 03b5ae76-f8f6-4543-b940-7cde595414cb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1516&$top=945&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1518&$top=943&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1520&$top=941&$maxpagesize=2"}' + headers: + apim-request-id: 9b55de53-26c0-403f-973f-1241556e8a39 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:43 GMT + etag: '"F2B89F228611F1637E9BC6309FC94A39C8FBFF682D03EE8A8B4ED44BC7455784"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9b55de53-26c0-403f-973f-1241556e8a39 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1518&$top=943&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1520&$top=941&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1522&$top=939&$maxpagesize=2"}' + headers: + apim-request-id: b525d8e7-b02e-4fed-a144-ff7e75dcdfe3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:44 GMT + etag: '"91A0F204CD9DFAB3BB577CF96D92B18ABCF98F4926E5C875F7D29C300E0246EC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b525d8e7-b02e-4fed-a144-ff7e75dcdfe3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1520&$top=941&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1522&$top=939&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1524&$top=937&$maxpagesize=2"}' + headers: + apim-request-id: 1e6e05d4-f246-45f6-a130-66d7b35d2007 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:44 GMT + etag: '"7912B3FA2E52DA22EA709556D587A2EFD746E36119E808EEBE02D8D14263958B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1e6e05d4-f246-45f6-a130-66d7b35d2007 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1522&$top=939&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1524&$top=937&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1526&$top=935&$maxpagesize=2"}' + headers: + apim-request-id: 4ff8eb50-0d58-4e53-9b62-40827220e1e3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:44 GMT + etag: '"E2D8F7048191F1D9ABA650DB7ABA974714022C13A1EA721D5B37392A856563E3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4ff8eb50-0d58-4e53-9b62-40827220e1e3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1524&$top=937&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1526&$top=935&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1528&$top=933&$maxpagesize=2"}' + headers: + apim-request-id: ece802dd-8d47-41ac-a2ca-fe53bf708e1e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:44 GMT + etag: '"F222EF81642B40AF4D15C9DCED03F32EEEB9D9E8532BB22E5141DF163877ACDB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ece802dd-8d47-41ac-a2ca-fe53bf708e1e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1526&$top=935&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1528&$top=933&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1530&$top=931&$maxpagesize=2"}' + headers: + apim-request-id: c2ecb9d0-6d2b-4c8e-be40-9beafb766fa5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:44 GMT + etag: '"0A9A250989CCDBE19FDBF4E09AF7B11867DC3D70D26384E5C1B24BB14E58BBA9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c2ecb9d0-6d2b-4c8e-be40-9beafb766fa5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1528&$top=933&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1530&$top=931&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1532&$top=929&$maxpagesize=2"}' + headers: + apim-request-id: 745a9768-b375-4cff-91fa-4ec218ab96cd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:44 GMT + etag: '"2C4AE1935FD7D660F2DC15502169DC2C78EAA77EC484503F45800D2385E249A0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 745a9768-b375-4cff-91fa-4ec218ab96cd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1530&$top=931&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1532&$top=929&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1534&$top=927&$maxpagesize=2"}' + headers: + apim-request-id: 5de69098-1064-4f1c-bee9-21465cb177fa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:45 GMT + etag: '"C315D7613D3D8A670E8C2B43217D9637922D470417402097B76685BC3362A5CC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5de69098-1064-4f1c-bee9-21465cb177fa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1532&$top=929&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1534&$top=927&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1536&$top=925&$maxpagesize=2"}' + headers: + apim-request-id: 69c08076-e304-4e1e-b258-d6e73e48be56 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:45 GMT + etag: '"CD8917B61D1063BE9378048BB5441E92837BF2FCD7D31C87CD42DD240F15B109"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 69c08076-e304-4e1e-b258-d6e73e48be56 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1534&$top=927&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1536&$top=925&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1538&$top=923&$maxpagesize=2"}' + headers: + apim-request-id: ad592da6-0786-47fb-b03f-129a647b3b29 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:45 GMT + etag: '"2A85B9380B1F69D3014BD67CE7371A286CCCCDC07B02AE9C3BADD95C27DDD7C2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ad592da6-0786-47fb-b03f-129a647b3b29 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1536&$top=925&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1538&$top=923&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1540&$top=921&$maxpagesize=2"}' + headers: + apim-request-id: bc84192c-6b32-4e44-8104-a2b6c4c51370 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:45 GMT + etag: '"807F4A5C1570A22BAB98187D84D242CD2BEB1705EEEF2AA006635E6793142E18"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bc84192c-6b32-4e44-8104-a2b6c4c51370 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1538&$top=923&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1540&$top=921&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1542&$top=919&$maxpagesize=2"}' + headers: + apim-request-id: e90e9a12-8045-464f-beec-b2ce9b05f2ee + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:45 GMT + etag: '"E6669187F01FCB7BBD05B423BFE8F8B4F195862C08B2FA5D91DD62AACA6C4D58"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e90e9a12-8045-464f-beec-b2ce9b05f2ee + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1540&$top=921&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1542&$top=919&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1544&$top=917&$maxpagesize=2"}' + headers: + apim-request-id: 617919dd-9db7-4a67-aa24-5988e992c2c2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:46 GMT + etag: '"388BFC923FC14A804637EBA52DD54CCB51CEB96C406FDFDCD1900715B7713972"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 617919dd-9db7-4a67-aa24-5988e992c2c2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1542&$top=919&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1544&$top=917&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1546&$top=915&$maxpagesize=2"}' + headers: + apim-request-id: a5b4bca4-a9b5-4223-bf92-e893ac5d7294 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:46 GMT + etag: '"5B8929FD0A3366639ECE5A35074A86FFDABED4BAE6C823CB4DB1C2B2C60E17B2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a5b4bca4-a9b5-4223-bf92-e893ac5d7294 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1544&$top=917&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1546&$top=915&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1548&$top=913&$maxpagesize=2"}' + headers: + apim-request-id: f3f1373a-c61d-4fbc-b60f-38ac9f5c2591 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:46 GMT + etag: '"7D07A202EA53D0F6C485504F4AB6451BD93528DA83E90A05CD115A3202E1944F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f3f1373a-c61d-4fbc-b60f-38ac9f5c2591 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1546&$top=915&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1548&$top=913&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=911&$maxpagesize=2"}' + headers: + apim-request-id: 3cdb46c9-454b-4cb8-99e6-2a039cfd65a0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:46 GMT + etag: '"B685C072433C44D0444BDB2EE584AEEB395FA3B1A8DB7BDB649E1B17790A65D1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3cdb46c9-454b-4cb8-99e6-2a039cfd65a0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1548&$top=913&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=911&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1552&$top=909&$maxpagesize=2"}' + headers: + apim-request-id: 3d271d6e-077c-467c-af33-2ef309a3e601 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:46 GMT + etag: '"2D16A8240B7A5B65790548B029DEF7C6F9C60D172BF511513D60FBA13FF9DAF7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3d271d6e-077c-467c-af33-2ef309a3e601 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1550&$top=911&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1552&$top=909&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1554&$top=907&$maxpagesize=2"}' + headers: + apim-request-id: a939c148-390d-47bf-8835-c6e2f57d70ea + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:46 GMT + etag: '"6BEF9C3699E9AD9F35D55970008B079CE2C86D04FB0DE50D7513C25A55059A6B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a939c148-390d-47bf-8835-c6e2f57d70ea + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1552&$top=909&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1554&$top=907&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1556&$top=905&$maxpagesize=2"}' + headers: + apim-request-id: 16f1ac2a-f4bc-4bdc-bed3-8977155cef5f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:47 GMT + etag: '"0FFC623E460B5152BAC4A6E82FE4F56C1555AB45F352F709EBFA76B7A7A6A6E7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 16f1ac2a-f4bc-4bdc-bed3-8977155cef5f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1554&$top=907&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1556&$top=905&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1558&$top=903&$maxpagesize=2"}' + headers: + apim-request-id: f6747792-9997-4a09-bd34-4aa8b442c63a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:47 GMT + etag: '"C831A4EF459FCCEC2AFD5CEB67235D4A50BD2982C31DC7A925ED2C1C03B2913E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f6747792-9997-4a09-bd34-4aa8b442c63a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1556&$top=905&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1558&$top=903&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1560&$top=901&$maxpagesize=2"}' + headers: + apim-request-id: c9fec188-a456-4ab3-9825-74422916272b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:47 GMT + etag: '"EF7E899E06E7BC49BD90568F9D52F98FBEB17AD5FD1EA99BC82EBA74C30BCA0E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c9fec188-a456-4ab3-9825-74422916272b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1558&$top=903&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1560&$top=901&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1562&$top=899&$maxpagesize=2"}' + headers: + apim-request-id: 0a87fadc-577a-420a-bd10-7b952b63406e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:47 GMT + etag: '"8B21159BBC045875C47C1306EEEDAA5DC75BC9BD334681D1A4973AFC50A36FEC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0a87fadc-577a-420a-bd10-7b952b63406e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1560&$top=901&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1562&$top=899&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1564&$top=897&$maxpagesize=2"}' + headers: + apim-request-id: 54be1574-c69a-45d8-b6f9-e0200fd9d3a9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:47 GMT + etag: '"F19C2A2991E8412CD29EF7781ADF068D4182CBC2E7988903BDBE078D61D10E5B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 54be1574-c69a-45d8-b6f9-e0200fd9d3a9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1562&$top=899&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1564&$top=897&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1566&$top=895&$maxpagesize=2"}' + headers: + apim-request-id: 2678f2de-3c49-4292-a80f-73a0dd08b04c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:47 GMT + etag: '"1360EB8473D823F9E90B923B898F2DC5DADC1222247647440D5940C3C64889D0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2678f2de-3c49-4292-a80f-73a0dd08b04c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1564&$top=897&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1566&$top=895&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1568&$top=893&$maxpagesize=2"}' + headers: + apim-request-id: 80c3feec-d743-4d37-8f1f-dad11bb3e6c3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:48 GMT + etag: '"934E7D69DCC5A2F33EC46ED84DB442CD0FCD0AD17752D91B2584BF533620AD1F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 80c3feec-d743-4d37-8f1f-dad11bb3e6c3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1566&$top=895&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1568&$top=893&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1570&$top=891&$maxpagesize=2"}' + headers: + apim-request-id: 74a7f636-53b7-46bb-951e-c7e0f9b26c9f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:48 GMT + etag: '"7D6D1EFC7953C14CE4658D8A408D28A3098B4D61B677D24E92FCC1A81DF748CF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 74a7f636-53b7-46bb-951e-c7e0f9b26c9f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1568&$top=893&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1570&$top=891&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1572&$top=889&$maxpagesize=2"}' + headers: + apim-request-id: 2a945697-c46e-4015-805e-580e54d85326 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:48 GMT + etag: '"BB4C4D25CE6533AB121FCBA704674589E34E85F3502B2B6F0E843C1DE8E25C47"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2a945697-c46e-4015-805e-580e54d85326 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1570&$top=891&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1572&$top=889&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1574&$top=887&$maxpagesize=2"}' + headers: + apim-request-id: c8a590bb-6ab8-4181-8ba6-ab5af9bbbdcf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:48 GMT + etag: '"AA6B9B75667218264BD717ED226C00A2E79A8CF1DED5D8740590CF88C44452EB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c8a590bb-6ab8-4181-8ba6-ab5af9bbbdcf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1572&$top=889&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1574&$top=887&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1576&$top=885&$maxpagesize=2"}' + headers: + apim-request-id: 90ee6354-5003-40d4-a00e-c1c7f8df7ea8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:48 GMT + etag: '"D895A4E3097D7CE0B1870147128067E2355F167EC712E5627FA7EF42BE827B66"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 90ee6354-5003-40d4-a00e-c1c7f8df7ea8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1574&$top=887&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1576&$top=885&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1578&$top=883&$maxpagesize=2"}' + headers: + apim-request-id: b4cae394-a753-49c9-b605-ce48cfd62922 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:49 GMT + etag: '"8FD66886EA9B9AA9205851AEA4AE10D4A015D0CC9C364F01EE5AA4FBC30A4BC7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b4cae394-a753-49c9-b605-ce48cfd62922 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1576&$top=885&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1578&$top=883&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1580&$top=881&$maxpagesize=2"}' + headers: + apim-request-id: eac5e01d-885b-4f57-b195-5636c6205964 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:49 GMT + etag: '"24EEFEA60FCB066AFC6DF4F46D08A8B6D19B2A8F42D48B79BCEE25A91D64FDA6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eac5e01d-885b-4f57-b195-5636c6205964 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1578&$top=883&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1580&$top=881&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1582&$top=879&$maxpagesize=2"}' + headers: + apim-request-id: 403c9b0f-f82e-4456-8fa9-3597ae578e35 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:49 GMT + etag: '"852BAACE8CFB1BEAE28F002ED33F029C4BD40EA92A7075E92C102BBC7DD36AC3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 403c9b0f-f82e-4456-8fa9-3597ae578e35 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1580&$top=881&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1582&$top=879&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1584&$top=877&$maxpagesize=2"}' + headers: + apim-request-id: 6dbe0050-4630-47aa-b014-c51b46aff902 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:49 GMT + etag: '"31EA5F79D07EFCC5CC8D2D4F16C00B37C40ADC8B655C1A602B7268EF1362382E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6dbe0050-4630-47aa-b014-c51b46aff902 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1582&$top=879&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1584&$top=877&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1586&$top=875&$maxpagesize=2"}' + headers: + apim-request-id: 12896062-c931-47cb-879f-6ea8367672fd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:49 GMT + etag: '"EA3477B7DD928CAEF1AB2739A9F1D9510EC8A6BFD5462CCFDD1F0AA6948E2FCB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 12896062-c931-47cb-879f-6ea8367672fd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1584&$top=877&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1586&$top=875&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1588&$top=873&$maxpagesize=2"}' + headers: + apim-request-id: c8f2eefd-4c3f-488c-86bb-484207bb628d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:50 GMT + etag: '"A2E858574CD76396A9A86705A5610375727362D42DB9025CF0282333EBD67E28"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c8f2eefd-4c3f-488c-86bb-484207bb628d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1586&$top=875&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1588&$top=873&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1590&$top=871&$maxpagesize=2"}' + headers: + apim-request-id: 515a78f2-4ef7-4970-b0c8-19b719fe3201 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:50 GMT + etag: '"DEE8ACEA8FBA9DD1C8EAAF9D31EC695760C5B0852105D2CEB43B01396BC29F3E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 515a78f2-4ef7-4970-b0c8-19b719fe3201 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1588&$top=873&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1590&$top=871&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1592&$top=869&$maxpagesize=2"}' + headers: + apim-request-id: 339154c2-773b-4049-9f45-201e8586257e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:50 GMT + etag: '"B0D247EE4A9BC88ED99E4C8722FE9F1023E5C4147E7B0A4886168F4324F49CD1"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 339154c2-773b-4049-9f45-201e8586257e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1590&$top=871&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1592&$top=869&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1594&$top=867&$maxpagesize=2"}' + headers: + apim-request-id: a566661a-9400-469c-b670-6858eb290a67 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:50 GMT + etag: '"5E5CBF0C2CD084438485CCE8CCB6DE5FD18A1944077169A6A7647EEC209683F1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a566661a-9400-469c-b670-6858eb290a67 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1592&$top=869&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1594&$top=867&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1596&$top=865&$maxpagesize=2"}' + headers: + apim-request-id: fe1f3195-2c0c-402c-b213-48c6933a71b3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:50 GMT + etag: '"AFA4C60E2EE617E4E3507B2D7D47D5857F08B71C0CAA0E9F4783FC2B9721CDEC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fe1f3195-2c0c-402c-b213-48c6933a71b3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1594&$top=867&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1596&$top=865&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1598&$top=863&$maxpagesize=2"}' + headers: + apim-request-id: 5bd2c4df-7ee9-490d-a05c-dae889cbb888 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:51 GMT + etag: '"B97170B7966AD533F6D31CC139BF5B74D6F8CD5E6869574CF7E4F9A9E14D051E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5bd2c4df-7ee9-490d-a05c-dae889cbb888 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1596&$top=865&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1598&$top=863&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=861&$maxpagesize=2"}' + headers: + apim-request-id: 246eba0c-1999-46f2-b3bc-ff439d0dba1d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:51 GMT + etag: '"DF2DDC8C02FA76A9E6FCE586676294C6B141A2C7B8194813F1AA2CC72D502B21"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 246eba0c-1999-46f2-b3bc-ff439d0dba1d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1598&$top=863&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=861&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1602&$top=859&$maxpagesize=2"}' + headers: + apim-request-id: 6af94ecd-a671-4578-9a5a-53f2fa65c751 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:51 GMT + etag: '"04341A15474CE388677122B5C710468B6BDAE84D30DB8F5B4B841F8C2EB13DDC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6af94ecd-a671-4578-9a5a-53f2fa65c751 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1600&$top=861&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1602&$top=859&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1604&$top=857&$maxpagesize=2"}' + headers: + apim-request-id: 8542de1f-3f1b-418c-8ed8-bfc2832bf4c7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:51 GMT + etag: '"E20DCB5259E6E253F1E05E6B4D8324FB1533CA7F1DA486CE44707133332FE468"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8542de1f-3f1b-418c-8ed8-bfc2832bf4c7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1602&$top=859&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1604&$top=857&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1606&$top=855&$maxpagesize=2"}' + headers: + apim-request-id: ec201567-1633-47b7-96c1-4c55cf5bd972 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:51 GMT + etag: '"1470EE254EDA89BC031CBB21B97FD3EFFCD97409C5A2AE9248B4BBB5F2326DB3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ec201567-1633-47b7-96c1-4c55cf5bd972 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1604&$top=857&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1606&$top=855&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1608&$top=853&$maxpagesize=2"}' + headers: + apim-request-id: a92c8548-cfaa-44e9-9ff0-b3a067929148 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:52 GMT + etag: '"E2D094EFB6719589C048AD77CABD0D08A14E4AD7A9CE75094C04825F869F6A33"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a92c8548-cfaa-44e9-9ff0-b3a067929148 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1606&$top=855&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1608&$top=853&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1610&$top=851&$maxpagesize=2"}' + headers: + apim-request-id: 3aea8dcc-902a-4b1a-b3ce-1edd0fbe901e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:52 GMT + etag: '"691F69A0DFA88F250487DFE1E5220E339851F37803BC3EA942D68B4DAB44472C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3aea8dcc-902a-4b1a-b3ce-1edd0fbe901e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1608&$top=853&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1610&$top=851&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1612&$top=849&$maxpagesize=2"}' + headers: + apim-request-id: 6d714d74-de3e-4850-ae94-7d8625f8bd03 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:52 GMT + etag: '"CAAB4B284654C32A921E4A6F046DE17D4D43D84C8A75F5F85285BFF31D8D378A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6d714d74-de3e-4850-ae94-7d8625f8bd03 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1610&$top=851&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1612&$top=849&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1614&$top=847&$maxpagesize=2"}' + headers: + apim-request-id: 2a8f6753-cbf6-4c03-94d5-90cfed732f11 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:52 GMT + etag: '"D28A4C14FCE572B40D6CE7FE3F94029EA4AD82D2B5181859DAA76A0E93317177"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2a8f6753-cbf6-4c03-94d5-90cfed732f11 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1612&$top=849&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1614&$top=847&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1616&$top=845&$maxpagesize=2"}' + headers: + apim-request-id: 07ba5827-222a-4cc9-b2d8-73461db12203 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:52 GMT + etag: '"84FCCF0A9B9F11EF368FED422457309329C11F05C4EFCF9F7AE5B000E5D57868"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 07ba5827-222a-4cc9-b2d8-73461db12203 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1614&$top=847&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1616&$top=845&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1618&$top=843&$maxpagesize=2"}' + headers: + apim-request-id: 80d26cd4-1c8e-4b15-9cb0-9f047069927f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:52 GMT + etag: '"2D05BE89AD6BBCFF10128C62147092DD5E480A410F681CA34E5A2B5138A3FD4B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 80d26cd4-1c8e-4b15-9cb0-9f047069927f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1616&$top=845&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1618&$top=843&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1620&$top=841&$maxpagesize=2"}' + headers: + apim-request-id: 189a1456-3542-4b16-bf40-29014ffeaa95 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:53 GMT + etag: '"D07F147C2D2A6FCF94E276E202CB2B3C47078BF7FA164591A3031F30912CF834"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 189a1456-3542-4b16-bf40-29014ffeaa95 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1618&$top=843&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1620&$top=841&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1622&$top=839&$maxpagesize=2"}' + headers: + apim-request-id: bd94c583-3393-46f2-9ed4-0453036a3dd0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:53 GMT + etag: '"4A9919B566D3F657FA42C2D3F1470B629B458444BF8D044497CA97C61A31991B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bd94c583-3393-46f2-9ed4-0453036a3dd0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1620&$top=841&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1622&$top=839&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1624&$top=837&$maxpagesize=2"}' + headers: + apim-request-id: c8d5c4d3-716e-49d0-b9e4-7caf290c4f4e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:53 GMT + etag: '"3136E07D4893B87DD5B5DD7B164B80F3619DFB738496F642D681D897AB425D0D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c8d5c4d3-716e-49d0-b9e4-7caf290c4f4e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1622&$top=839&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1624&$top=837&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1626&$top=835&$maxpagesize=2"}' + headers: + apim-request-id: 17510019-c7be-46aa-9958-9754872c7eb0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:53 GMT + etag: '"E2EF67042CD5BC9A605EB8889347D6ED0069552767ABB53AE35BFAF25CBEB932"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 17510019-c7be-46aa-9958-9754872c7eb0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1624&$top=837&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1626&$top=835&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1628&$top=833&$maxpagesize=2"}' + headers: + apim-request-id: 64629184-d6c0-4947-99a0-315512dc7730 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:53 GMT + etag: '"3939193320B0F0E537FD0E364D7481230E582F685D552B82E958161F1F0EA37C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 64629184-d6c0-4947-99a0-315512dc7730 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1626&$top=835&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1628&$top=833&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1630&$top=831&$maxpagesize=2"}' + headers: + apim-request-id: 17b2fa24-5ed9-4c03-88d6-6ab8d5b0be89 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:54 GMT + etag: '"64D62805531ABF261423E994F552CF6A5C274117C918A3F42D52E0DA72F8B5BD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 17b2fa24-5ed9-4c03-88d6-6ab8d5b0be89 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1628&$top=833&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1630&$top=831&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1632&$top=829&$maxpagesize=2"}' + headers: + apim-request-id: 9dc5885c-6a44-4dee-831a-06dfa6b4da0c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:54 GMT + etag: '"208CC96B9026B7204AC037591DE1C5FFECE3D0C2D35FC9E55CF23CBB4D094413"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9dc5885c-6a44-4dee-831a-06dfa6b4da0c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1630&$top=831&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1632&$top=829&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1634&$top=827&$maxpagesize=2"}' + headers: + apim-request-id: 0aae735d-e7ec-4f61-9f84-8c0688d6532c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:54 GMT + etag: '"E86FC736D33D7DFBE64CA4B89AE9FB2943472F2BA8540593EBD5EA0BDA5EF82E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0aae735d-e7ec-4f61-9f84-8c0688d6532c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1632&$top=829&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1634&$top=827&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1636&$top=825&$maxpagesize=2"}' + headers: + apim-request-id: 5d2b3719-edcb-4ca6-8175-c9c05adef162 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:54 GMT + etag: '"2A1D931450DB22B66457CB205B7CAA6CF2C3D99C83293CEEB1B3D284611D63BC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5d2b3719-edcb-4ca6-8175-c9c05adef162 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1634&$top=827&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1636&$top=825&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1638&$top=823&$maxpagesize=2"}' + headers: + apim-request-id: efa5ad20-e2a5-4393-b7a1-3cde6b75d3d9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:54 GMT + etag: '"BC2ECCB115539C31CAF903749009DA2DCB7CCF41DF30CE9A8C0B17E941F2A4D2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: efa5ad20-e2a5-4393-b7a1-3cde6b75d3d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1636&$top=825&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1638&$top=823&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1640&$top=821&$maxpagesize=2"}' + headers: + apim-request-id: 000d9a69-e56c-4285-9544-aaa3b5bc9492 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:54 GMT + etag: '"53BF0D8F8C62A068E482B78F4ACA710B9484E470C6BD9591D4FDA70C71CDB1F2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 000d9a69-e56c-4285-9544-aaa3b5bc9492 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1638&$top=823&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1640&$top=821&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1642&$top=819&$maxpagesize=2"}' + headers: + apim-request-id: 6f1efcd2-ecf6-4878-b5ac-f39f2018a8ac + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:55 GMT + etag: '"F0D20059283D9F5E6809A397CF2AA8487A960828047F373ED798DDD448C6DB78"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6f1efcd2-ecf6-4878-b5ac-f39f2018a8ac + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1640&$top=821&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1642&$top=819&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1644&$top=817&$maxpagesize=2"}' + headers: + apim-request-id: 31081204-a7c3-4379-9be1-5725c8009625 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:55 GMT + etag: '"1CE61018543E61F4FA12FFFD940E9BE80684AB3B25DC8515CBE9390915EF64DC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 31081204-a7c3-4379-9be1-5725c8009625 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1642&$top=819&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1644&$top=817&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1646&$top=815&$maxpagesize=2"}' + headers: + apim-request-id: e45eec47-8141-42f3-83b5-f26da7310795 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:55 GMT + etag: '"28B89C54918775AFA2A3148E2DDA0D9A5D3248165A3D5908C0989B62266AB44D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e45eec47-8141-42f3-83b5-f26da7310795 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1644&$top=817&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1646&$top=815&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1648&$top=813&$maxpagesize=2"}' + headers: + apim-request-id: 2fc63230-b6e5-44e9-bdee-fed05c2885ab + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:55 GMT + etag: '"A668ECAB68223FD2899EF7D35C3B140FBD6F67900BAFA4CE5FFFAE7D2AEB9746"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2fc63230-b6e5-44e9-bdee-fed05c2885ab + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1646&$top=815&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1648&$top=813&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=811&$maxpagesize=2"}' + headers: + apim-request-id: f3e16661-b981-4dd5-a5e6-6154b3c41430 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:55 GMT + etag: '"80153983F0138389F2BA7C1FB762C0B44804AC97EB48531A0BF41D90945D9E37"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f3e16661-b981-4dd5-a5e6-6154b3c41430 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1648&$top=813&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=811&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1652&$top=809&$maxpagesize=2"}' + headers: + apim-request-id: 84e6cba6-7519-458c-a69e-75ee6d87ee50 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:56 GMT + etag: '"040BDFAB8418CAF1F67022D9D5A9AA1227901407846E0CA61E3293C74FA411F9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 84e6cba6-7519-458c-a69e-75ee6d87ee50 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1650&$top=811&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1652&$top=809&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1654&$top=807&$maxpagesize=2"}' + headers: + apim-request-id: d384bcb9-20fb-4edd-9977-80c3d17c19e1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:56 GMT + etag: '"CC6611C1EACAE5FA72D3C4B341A4B0CA7DCEFD537F810E432F19B53E0C707779"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d384bcb9-20fb-4edd-9977-80c3d17c19e1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1652&$top=809&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1654&$top=807&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1656&$top=805&$maxpagesize=2"}' + headers: + apim-request-id: 39a0a455-8966-406b-b88b-bd1e2ec890f2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:56 GMT + etag: '"6EFF8ED7CA5B65F7124D67DEBB27611E35285238BCE9C50DB9A4D7FD073DF7FF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 39a0a455-8966-406b-b88b-bd1e2ec890f2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1654&$top=807&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1656&$top=805&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1658&$top=803&$maxpagesize=2"}' + headers: + apim-request-id: d3cabf0a-ff5f-4543-8f20-9d406f2d8ebf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:56 GMT + etag: '"C4221442C768B9BDF096C05E016ECC7EFB174FBBB151499306D8B3232EC19A37"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d3cabf0a-ff5f-4543-8f20-9d406f2d8ebf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1656&$top=805&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1658&$top=803&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1660&$top=801&$maxpagesize=2"}' + headers: + apim-request-id: a19101bc-5c27-450a-9437-a526cf365a9a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:56 GMT + etag: '"77FCBA328056A5E9B9651AA126EA082DF25F36D0B8480FC74F351A4263518729"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a19101bc-5c27-450a-9437-a526cf365a9a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1658&$top=803&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1660&$top=801&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1662&$top=799&$maxpagesize=2"}' + headers: + apim-request-id: 4899bbbf-e1ef-48bd-b39b-49b119f0b1a8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:56 GMT + etag: '"31D561A74B020AA738D224161E461881FF3A2677086C4EF34E965008EE45730C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4899bbbf-e1ef-48bd-b39b-49b119f0b1a8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1660&$top=801&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1662&$top=799&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1664&$top=797&$maxpagesize=2"}' + headers: + apim-request-id: 0f1919bc-3d8d-443e-a3cd-7a98486787b9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:57 GMT + etag: '"813D6926C87CEBC5291364A0E975BF6B1922FCE0E0D30C7C7A3535FDA04ABDFB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0f1919bc-3d8d-443e-a3cd-7a98486787b9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1662&$top=799&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1664&$top=797&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1666&$top=795&$maxpagesize=2"}' + headers: + apim-request-id: 7b1bdde0-3295-45a5-85d8-6c9f8ed41060 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:57 GMT + etag: '"2E1D3E21BBD72F39603345168596E2DF7407AC2EC71479DF04AC31B7874B54CD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7b1bdde0-3295-45a5-85d8-6c9f8ed41060 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1664&$top=797&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1666&$top=795&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1668&$top=793&$maxpagesize=2"}' + headers: + apim-request-id: 01c37108-390f-4e73-82b7-2140a7645bca + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:57 GMT + etag: '"9B948B86CD6DD4ABA8721C540161104CF4581613191C69D10D7E2B7A41C4D088"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 01c37108-390f-4e73-82b7-2140a7645bca + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1666&$top=795&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1668&$top=793&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1670&$top=791&$maxpagesize=2"}' + headers: + apim-request-id: 41c33a42-70fd-4ca9-9a31-fc6298b9d4c6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:57 GMT + etag: '"0F0D41D1C1D51DCE6321FB6A9A98635F05CF8086DB4F8819EA65068B6BE51C73"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 41c33a42-70fd-4ca9-9a31-fc6298b9d4c6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1668&$top=793&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1670&$top=791&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1672&$top=789&$maxpagesize=2"}' + headers: + apim-request-id: 128aae84-9357-48c0-ae27-a27c23aaba30 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:57 GMT + etag: '"DDB348EE546C338EC938F0111B4878FEE50067A4DF3C13988533E01993BCADBC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 128aae84-9357-48c0-ae27-a27c23aaba30 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1670&$top=791&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1672&$top=789&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1674&$top=787&$maxpagesize=2"}' + headers: + apim-request-id: 4fd316b8-b327-4621-ac24-d6733237e5a2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:58 GMT + etag: '"318CE8A6A4F9BAF668E106BC03F2EF6B205713C756E74FF455D51633D58B1937"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4fd316b8-b327-4621-ac24-d6733237e5a2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1672&$top=789&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1674&$top=787&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1676&$top=785&$maxpagesize=2"}' + headers: + apim-request-id: 48e7ffa1-4489-4214-b393-ddd48631a41a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:58 GMT + etag: '"7A1F12050BBC0C57E8DF70FF1FBCBF8256F9884534663B42B9F2D031BDBC1454"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 48e7ffa1-4489-4214-b393-ddd48631a41a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1674&$top=787&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1676&$top=785&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1678&$top=783&$maxpagesize=2"}' + headers: + apim-request-id: f6d85306-bdfd-46e2-b79e-03a5a62539de + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:58 GMT + etag: '"84FF85D6FD227EE0041F620674CC2840C10BEB014D3F3A3979439DE4B90FE8E1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f6d85306-bdfd-46e2-b79e-03a5a62539de + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1676&$top=785&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1678&$top=783&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1680&$top=781&$maxpagesize=2"}' + headers: + apim-request-id: d52f020d-ffd5-48e5-b953-0d88a57b7669 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:58 GMT + etag: '"0A4D4CA2F80FAC86BDF80051AE97D79D6E4DC2C6EAAA2A5570534F8926D899B4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d52f020d-ffd5-48e5-b953-0d88a57b7669 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1678&$top=783&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1680&$top=781&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1682&$top=779&$maxpagesize=2"}' + headers: + apim-request-id: 20ae0a7d-c0e6-4baf-993c-e9224effee0a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:58 GMT + etag: '"9C078A01CC8E7FA05EA6575F0DBE604C9328F70C524D08AC3B6C4CACFCBAE9D7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 20ae0a7d-c0e6-4baf-993c-e9224effee0a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1680&$top=781&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1682&$top=779&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1684&$top=777&$maxpagesize=2"}' + headers: + apim-request-id: 65812359-a691-4612-bab2-24ae9391370a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:58 GMT + etag: '"1981ED1BD5BCC62B3B11873EF3FB946B99550E5DAE56B7E130CDB2A1ABDFAB8D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 65812359-a691-4612-bab2-24ae9391370a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1682&$top=779&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1684&$top=777&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1686&$top=775&$maxpagesize=2"}' + headers: + apim-request-id: 3e0c11ee-bc51-434c-bd6b-6cb98f7f8d7d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:59 GMT + etag: '"938C4DCC1505F0A307C0D909BFFC9431AB574394135AEAE07772E5B2227D5BA7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3e0c11ee-bc51-434c-bd6b-6cb98f7f8d7d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1684&$top=777&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1686&$top=775&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1688&$top=773&$maxpagesize=2"}' + headers: + apim-request-id: 8987d061-f10e-4d60-b696-4d11dae17f7f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:59 GMT + etag: '"075CA0DDF026382325BA0D15F4E4663BE5B4A468E8F98B1FD4718B14C419D50C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8987d061-f10e-4d60-b696-4d11dae17f7f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1686&$top=775&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1688&$top=773&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1690&$top=771&$maxpagesize=2"}' + headers: + apim-request-id: 29867d09-41e0-40cb-a2a3-dcf4235b0925 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:59 GMT + etag: '"310227CCC053DCB73351FA9F5F4F79157D31475EBCFEE1F215DF6A7F84452CB0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 29867d09-41e0-40cb-a2a3-dcf4235b0925 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1688&$top=773&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1690&$top=771&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1692&$top=769&$maxpagesize=2"}' + headers: + apim-request-id: 40be3888-4aa2-4b2c-8144-e6f0e87fb4ac + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:59 GMT + etag: '"415A5752CC1ED7AC0A5EB22EE8F387908807C2BA65D6F8FC62B8B4D5E042960A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 40be3888-4aa2-4b2c-8144-e6f0e87fb4ac + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1690&$top=771&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1692&$top=769&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1694&$top=767&$maxpagesize=2"}' + headers: + apim-request-id: ce0ab43b-d06f-4fb4-ae6e-5fee974dd70e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:01:59 GMT + etag: '"126AA42623522395B75F27F495CD05CEE253CCD223C6963EBF3EC119A4F7701B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ce0ab43b-d06f-4fb4-ae6e-5fee974dd70e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1692&$top=769&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1694&$top=767&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1696&$top=765&$maxpagesize=2"}' + headers: + apim-request-id: 434030d1-fd8f-48b0-bc29-f2bff06d2984 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:00 GMT + etag: '"CB193E4B5CCF990D4328C68205ED62DF175F7D16B5A22E00D45E2EF469BE119C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 434030d1-fd8f-48b0-bc29-f2bff06d2984 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1694&$top=767&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1696&$top=765&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1698&$top=763&$maxpagesize=2"}' + headers: + apim-request-id: dbb0104a-fd44-4bfa-a59f-456d407b6698 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:00 GMT + etag: '"AB71BF23A688AD33829F06D6710518B7AAA37C826E7EB0084E548F00FD7A1929"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dbb0104a-fd44-4bfa-a59f-456d407b6698 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1696&$top=765&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1698&$top=763&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=761&$maxpagesize=2"}' + headers: + apim-request-id: c63b8ad2-e900-4a86-97e0-a24ccdfd3d47 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:00 GMT + etag: '"67DE6C7A0EB5DEE9B258D39B4EBCF8E012CD9FA5818417EE26EDEB2677847E6F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c63b8ad2-e900-4a86-97e0-a24ccdfd3d47 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1698&$top=763&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=761&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1702&$top=759&$maxpagesize=2"}' + headers: + apim-request-id: 304a0275-9872-4bf9-9e08-3506383bc9ea + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:00 GMT + etag: '"6A3DF0954FE094894292BDA3D8B10067FD43708E2EEF6434E61A3A959EEE4967"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 304a0275-9872-4bf9-9e08-3506383bc9ea + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1700&$top=761&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1702&$top=759&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1704&$top=757&$maxpagesize=2"}' + headers: + apim-request-id: c7bbb773-bf43-4e12-96f9-1d52f6fef99b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:00 GMT + etag: '"12390D29144E687EE544668806F6D92B9A20E53D32C468CB63CD41BCD44F705A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c7bbb773-bf43-4e12-96f9-1d52f6fef99b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1702&$top=759&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1704&$top=757&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1706&$top=755&$maxpagesize=2"}' + headers: + apim-request-id: 133ce0e5-d636-44b7-9522-0d9693a77bba + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:01 GMT + etag: '"A5AFE093FD93E5581C6FEB857D8167A8286EF0FF5F4ECB3671E63B934F981641"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 133ce0e5-d636-44b7-9522-0d9693a77bba + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1704&$top=757&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1706&$top=755&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1708&$top=753&$maxpagesize=2"}' + headers: + apim-request-id: bfe36278-d8d4-44a6-90d3-6ac791f8b9b6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:01 GMT + etag: '"98F790F907744302BFA52568FB18321EF416822FE2BDF9178D47550C7C84BFA2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bfe36278-d8d4-44a6-90d3-6ac791f8b9b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1706&$top=755&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1708&$top=753&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1710&$top=751&$maxpagesize=2"}' + headers: + apim-request-id: 5c7cbfdc-ef40-461d-85d3-92660aa66925 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:01 GMT + etag: '"124D53EBC239F0DD094DCE8275D0980B3395F39FC7FC327AA7EB380C6C654F59"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5c7cbfdc-ef40-461d-85d3-92660aa66925 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1708&$top=753&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1710&$top=751&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1712&$top=749&$maxpagesize=2"}' + headers: + apim-request-id: d14c9cf5-b3eb-43c8-9f13-4dc7609816bd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:01 GMT + etag: '"A4EB01D09EA986038861D6C60F28383A075F0F08A23F34F3C774CF73E2273177"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d14c9cf5-b3eb-43c8-9f13-4dc7609816bd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1710&$top=751&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1712&$top=749&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1714&$top=747&$maxpagesize=2"}' + headers: + apim-request-id: 93405bd3-32d7-43e0-bea6-72f32dfc43aa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:01 GMT + etag: '"13378DDCFFF33A245EF13BDCFFADB72A9D20A89DB9BCCB4EF9ACBD8A86FAEBF7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 93405bd3-32d7-43e0-bea6-72f32dfc43aa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1712&$top=749&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1714&$top=747&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1716&$top=745&$maxpagesize=2"}' + headers: + apim-request-id: f97f8c15-719c-46c3-8e93-85362feb78b0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:01 GMT + etag: '"98A785681F2D79CA54F5AF589FCF81D0BE8CDF9B704D5A4803CFF2FD103F46BF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f97f8c15-719c-46c3-8e93-85362feb78b0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1714&$top=747&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1716&$top=745&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1718&$top=743&$maxpagesize=2"}' + headers: + apim-request-id: 82b35c95-3616-4151-9226-6ad73d10f2ca + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:02 GMT + etag: '"F9C7B46E9016D94273BD6AD4720E30E6CC1CA32BD8743EB3144F2DFC5B73C5C7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 82b35c95-3616-4151-9226-6ad73d10f2ca + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1716&$top=745&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1718&$top=743&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1720&$top=741&$maxpagesize=2"}' + headers: + apim-request-id: ba736cc5-4c88-4665-9afb-136f43b191aa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:02 GMT + etag: '"92E827CE4F6BB03E1EA7112F931236B69CE85BAD342D14A1E022C4FA809F11B6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ba736cc5-4c88-4665-9afb-136f43b191aa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1718&$top=743&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1720&$top=741&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1722&$top=739&$maxpagesize=2"}' + headers: + apim-request-id: d53c6dcd-45ad-4e69-bc31-63d351c57a67 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:02 GMT + etag: '"4B74F3B325533AFBA628E9083E25278CE620E2D878DA01D9E06F458C4BB0AE13"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d53c6dcd-45ad-4e69-bc31-63d351c57a67 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1720&$top=741&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1722&$top=739&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1724&$top=737&$maxpagesize=2"}' + headers: + apim-request-id: 9f1c0ae9-b76c-4ea8-9676-1de3d983a588 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:02 GMT + etag: '"5AFA0132D79207A186FFA56F94B03E3D7336F0220242B2CEADB270348507CFE3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9f1c0ae9-b76c-4ea8-9676-1de3d983a588 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1722&$top=739&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1724&$top=737&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1726&$top=735&$maxpagesize=2"}' + headers: + apim-request-id: 59c78904-8cea-4635-b3ab-38a3e0502e83 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:02 GMT + etag: '"6542267049ED24E5440C0F520712C49726045E040B4AA603DCF1C7881375281A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 59c78904-8cea-4635-b3ab-38a3e0502e83 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1724&$top=737&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1726&$top=735&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1728&$top=733&$maxpagesize=2"}' + headers: + apim-request-id: 84941a9b-078c-45f0-af51-713a253dfbcf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:03 GMT + etag: '"B6AA2ED67ECC343FB277035D8A6F8DD915D4DD79FF0D2397709AE29E069D9DD7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 84941a9b-078c-45f0-af51-713a253dfbcf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1726&$top=735&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1728&$top=733&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1730&$top=731&$maxpagesize=2"}' + headers: + apim-request-id: a8321b69-2c7f-4e38-9768-fabbd10c6243 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:03 GMT + etag: '"1AAEA035BD7F7BE8AC009E9FFF274BB49F08282A83153322B20CF2112338D3C1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a8321b69-2c7f-4e38-9768-fabbd10c6243 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1728&$top=733&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1730&$top=731&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1732&$top=729&$maxpagesize=2"}' + headers: + apim-request-id: c7f5fa1f-b9bd-48a9-af80-92b48a83a2b5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:03 GMT + etag: '"B94305E61C9F7E697EB61A8FA19049EA354532DA50CAA6960C6C29227C25E325"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c7f5fa1f-b9bd-48a9-af80-92b48a83a2b5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1730&$top=731&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1732&$top=729&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1734&$top=727&$maxpagesize=2"}' + headers: + apim-request-id: 23409d55-f71d-4eb9-b690-3cfbd2324382 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:03 GMT + etag: '"B94782C7034FECADE2084E2D5AE774EE207A73D0D3282772D5A120E9ED9CBBD3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 23409d55-f71d-4eb9-b690-3cfbd2324382 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1732&$top=729&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1734&$top=727&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1736&$top=725&$maxpagesize=2"}' + headers: + apim-request-id: fc10e9c3-6280-44d1-b46a-b2a5d360d98c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:03 GMT + etag: '"E4B40726D0DC72FD072F1DD49972BC3B137A66FDB381518D6703B2F8DFA75F26"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fc10e9c3-6280-44d1-b46a-b2a5d360d98c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1734&$top=727&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1736&$top=725&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1738&$top=723&$maxpagesize=2"}' + headers: + apim-request-id: c4158114-8e86-4509-93af-e5d2b4a9dc1c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:03 GMT + etag: '"A31FD71D257D06953E8EAD5392641ED06FA4272939B9E018AD55347514B1299F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c4158114-8e86-4509-93af-e5d2b4a9dc1c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1736&$top=725&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1738&$top=723&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1740&$top=721&$maxpagesize=2"}' + headers: + apim-request-id: b683460d-6bb0-4383-b171-49c7259072df + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:04 GMT + etag: '"03040B8B2C41404AA5090C082F49F999EA59DF2239A9A76A936F94188DB40613"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b683460d-6bb0-4383-b171-49c7259072df + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1738&$top=723&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1740&$top=721&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1742&$top=719&$maxpagesize=2"}' + headers: + apim-request-id: 294365f4-234c-437d-9067-ac6ec2849d7e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:04 GMT + etag: '"2FB9F5D5975E56B5DA57728DAD63274A232CC2CD69B40BCF2341A2FE9435446D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 294365f4-234c-437d-9067-ac6ec2849d7e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1740&$top=721&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1742&$top=719&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1744&$top=717&$maxpagesize=2"}' + headers: + apim-request-id: 254dc7ee-6687-40b5-b842-3ac35d2b4b8c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:04 GMT + etag: '"9F87E5097FE4B42959A5DFD042E0767F87729EBBB723F709E09627A15D7F255E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 254dc7ee-6687-40b5-b842-3ac35d2b4b8c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1742&$top=719&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1744&$top=717&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1746&$top=715&$maxpagesize=2"}' + headers: + apim-request-id: d8304e18-180f-4ac1-b8e7-528d2a0abd7e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:04 GMT + etag: '"05195284A4A34D6AA8CEA8C4C72B71549E68BF2F2CAFCAE84D36A088F6B6CC3D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d8304e18-180f-4ac1-b8e7-528d2a0abd7e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1744&$top=717&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1746&$top=715&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1748&$top=713&$maxpagesize=2"}' + headers: + apim-request-id: 0d505216-2035-4419-b685-3738e5546006 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:04 GMT + etag: '"C0E975BEA5E388AB6E1CFE6885BAF588AC7B822EA4BD9A30B608252CB8B7618B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0d505216-2035-4419-b685-3738e5546006 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1746&$top=715&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1748&$top=713&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=711&$maxpagesize=2"}' + headers: + apim-request-id: 44323caa-7c2a-49e8-a0bd-07a8e2b3a51d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:05 GMT + etag: '"6AC340F8AABD9062D9E5E3CE5268F5411EF1252274B3BC94FD9AABDB20011282"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 44323caa-7c2a-49e8-a0bd-07a8e2b3a51d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1748&$top=713&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=711&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1752&$top=709&$maxpagesize=2"}' + headers: + apim-request-id: 1c55bfed-5d0f-4234-9fca-6ec40d4bc4ec + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:05 GMT + etag: '"00AF2F215150A04AD0DE00BCEF3CDFE4168AA97AEFA9BB378536E71AAD4839AF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1c55bfed-5d0f-4234-9fca-6ec40d4bc4ec + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1750&$top=711&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1752&$top=709&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1754&$top=707&$maxpagesize=2"}' + headers: + apim-request-id: 4055a7da-cb68-4a6a-a68d-5f94d8ebc754 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:05 GMT + etag: '"C5A785B2669F337A924B9B8D22A125D152DC2E18BD9FECF1CB0E0FDF117AFCF8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4055a7da-cb68-4a6a-a68d-5f94d8ebc754 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1752&$top=709&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1754&$top=707&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1756&$top=705&$maxpagesize=2"}' + headers: + apim-request-id: 87b0453d-7256-4fd9-ae87-c222f6ba1128 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:05 GMT + etag: '"CCA2955233CAB96738E50550E5D65C451A769D0B2E1EF00AB18D2D5B455FDC2C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 87b0453d-7256-4fd9-ae87-c222f6ba1128 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1754&$top=707&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1756&$top=705&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1758&$top=703&$maxpagesize=2"}' + headers: + apim-request-id: a9295d97-461e-4246-a3a9-0050d8feaa70 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:05 GMT + etag: '"C3902A4F155C653D5C080A7B37E2E210DDA66F362AA5DF08878417FE454238B0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a9295d97-461e-4246-a3a9-0050d8feaa70 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1756&$top=705&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1758&$top=703&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1760&$top=701&$maxpagesize=2"}' + headers: + apim-request-id: a19c2cfe-4ece-4320-bba1-4135919b37fc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:05 GMT + etag: '"B8085D52E74E4411C1E33C525B8AED7BC65C00437E74504B7F15D8E5F6E69A94"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a19c2cfe-4ece-4320-bba1-4135919b37fc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1758&$top=703&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1760&$top=701&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1762&$top=699&$maxpagesize=2"}' + headers: + apim-request-id: 58723abc-18d9-4d03-9162-d15ee582fa2a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:06 GMT + etag: '"2FE42C2F9C485BF4AE716A51B1D4E37F4455318C783976A6BFE72F2737891F62"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 58723abc-18d9-4d03-9162-d15ee582fa2a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1760&$top=701&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1762&$top=699&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1764&$top=697&$maxpagesize=2"}' + headers: + apim-request-id: ca0f8d94-87e5-4b57-ba02-001b63ef0db3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:06 GMT + etag: '"F79767298AF302E1CB3AD5BC8FB470F53F740FF17E16325EE6EB6569844DE645"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ca0f8d94-87e5-4b57-ba02-001b63ef0db3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1762&$top=699&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1764&$top=697&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1766&$top=695&$maxpagesize=2"}' + headers: + apim-request-id: ca4d422b-ff23-45c6-aec7-a808216ab902 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:06 GMT + etag: '"63DE90D7CB5A867C7DD5DAAF3240DDB104810349921342BA89F4A0B713A7395D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ca4d422b-ff23-45c6-aec7-a808216ab902 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1764&$top=697&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1766&$top=695&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1768&$top=693&$maxpagesize=2"}' + headers: + apim-request-id: ac92fc67-9a4a-4cdd-ae56-a90648cc71a8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:06 GMT + etag: '"D255ED96659A38E4E8BEFB7373CD2FB1F34F9DA0293A09B853C684F0E3F165FC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ac92fc67-9a4a-4cdd-ae56-a90648cc71a8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1766&$top=695&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1768&$top=693&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1770&$top=691&$maxpagesize=2"}' + headers: + apim-request-id: 9c08afdd-185a-4951-a4a7-3c484687bcae + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:06 GMT + etag: '"C711F0786EAD2B6E285A060BA6AEFC8D1F82BF8DC4180274E7021CD89FECD7AE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9c08afdd-185a-4951-a4a7-3c484687bcae + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1768&$top=693&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1770&$top=691&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1772&$top=689&$maxpagesize=2"}' + headers: + apim-request-id: 66c33d83-13b2-4be4-91af-8001331ffc98 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:07 GMT + etag: '"D90C134FCAC8CAA29849E5FA76504549A77C85BFD0DF59B59355667A7FD5891D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 66c33d83-13b2-4be4-91af-8001331ffc98 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1770&$top=691&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1772&$top=689&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1774&$top=687&$maxpagesize=2"}' + headers: + apim-request-id: 9eb8d2cd-fdc3-4f86-8b3e-2255699fb0c9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:07 GMT + etag: '"4D3C9A7964EDC2ACCC6DCC5115AD628CA861D03F4E99F826E7802CA11A8A52E8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9eb8d2cd-fdc3-4f86-8b3e-2255699fb0c9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1772&$top=689&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1774&$top=687&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1776&$top=685&$maxpagesize=2"}' + headers: + apim-request-id: 5ae3cdd9-e13d-43a7-ac41-0359c7960ea5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:07 GMT + etag: '"F955805240EF53BA85043B92A92C1492F6E4396C62072837597FC013FB61303A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5ae3cdd9-e13d-43a7-ac41-0359c7960ea5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1774&$top=687&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1776&$top=685&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1778&$top=683&$maxpagesize=2"}' + headers: + apim-request-id: 7f052ed8-6090-4db6-b45d-6a4df3c001b8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:07 GMT + etag: '"0C19DAC67324E53E99CF7ECBE3AFB0AD821306192650C4DA1B2A4348B38799E0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7f052ed8-6090-4db6-b45d-6a4df3c001b8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1776&$top=685&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1778&$top=683&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1780&$top=681&$maxpagesize=2"}' + headers: + apim-request-id: db8137c2-87ab-4bc3-bd26-0b9936a1c87a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:07 GMT + etag: '"DA02F40679F8185557C08725A3B85D07E2081BB8AE35A70E3DFA328296C313B4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: db8137c2-87ab-4bc3-bd26-0b9936a1c87a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1778&$top=683&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1780&$top=681&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1782&$top=679&$maxpagesize=2"}' + headers: + apim-request-id: 815b5e43-b9c5-4803-afd6-1476aa962037 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:07 GMT + etag: '"463C079476C46361281A2F47BB54884B3332CF1F22098922047F95ED9AAA7028"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 815b5e43-b9c5-4803-afd6-1476aa962037 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1780&$top=681&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1782&$top=679&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1784&$top=677&$maxpagesize=2"}' + headers: + apim-request-id: 356fd586-9959-455b-902e-34114385d136 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:08 GMT + etag: '"AE045F268F7AEA00BA70CAB9386AB0E3F492CC7C3DBD414CD18EACFC18FC4F5E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 356fd586-9959-455b-902e-34114385d136 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1782&$top=679&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1784&$top=677&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1786&$top=675&$maxpagesize=2"}' + headers: + apim-request-id: 5886bab9-6abd-4ea8-bacc-6a15497fbf4f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:08 GMT + etag: '"7F8C6D33EA0B25C2A4D1B8F9C58BB61A59A148D211D04036182F76A63A802188"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5886bab9-6abd-4ea8-bacc-6a15497fbf4f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1784&$top=677&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1786&$top=675&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1788&$top=673&$maxpagesize=2"}' + headers: + apim-request-id: 2b4b4a2f-2b94-4016-8828-f1987da9b2bb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:08 GMT + etag: '"F3354A36983EBECA5D650ACE90917EBA90B3FC53F0F33FF2BAE413D855BD8D32"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2b4b4a2f-2b94-4016-8828-f1987da9b2bb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1786&$top=675&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1788&$top=673&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1790&$top=671&$maxpagesize=2"}' + headers: + apim-request-id: 283012f2-859f-4248-9b8f-32b8d5f8755a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:08 GMT + etag: '"F40C4653A247CD09EEC90A15179760E4A2C010216F6A71C5FA93D3246FE1ACDB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 283012f2-859f-4248-9b8f-32b8d5f8755a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1788&$top=673&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1790&$top=671&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1792&$top=669&$maxpagesize=2"}' + headers: + apim-request-id: ce3edad6-3d77-4e17-be56-0849249e5dbe + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:08 GMT + etag: '"9644774ACF68D199C8D64606FD3E8BE6A741C23E9CAA6F1D4DB90FC4934BDD08"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ce3edad6-3d77-4e17-be56-0849249e5dbe + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1790&$top=671&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1792&$top=669&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1794&$top=667&$maxpagesize=2"}' + headers: + apim-request-id: 948bbcbf-2c1c-4c0a-ab2f-b93cdf78aa33 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:09 GMT + etag: '"65D013252E85FE9B6F87B3D960E70F2BB90C93F50375410C50F7A9E781FAE01C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 948bbcbf-2c1c-4c0a-ab2f-b93cdf78aa33 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1792&$top=669&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1794&$top=667&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1796&$top=665&$maxpagesize=2"}' + headers: + apim-request-id: e17ce391-9608-4222-8312-fe6e7b032e4b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:09 GMT + etag: '"3970D91C1B5CB1078CF1ECD6DEBE4D3AADC35063F2E5ED3EA738E87286C4112A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e17ce391-9608-4222-8312-fe6e7b032e4b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1794&$top=667&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1796&$top=665&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1798&$top=663&$maxpagesize=2"}' + headers: + apim-request-id: 667de181-8f13-4302-b7e3-0255f95c6e9f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:09 GMT + etag: '"7BDD44320A89DFF3A29EC99839A78FC835A8A178A4B9E1343892A497D00205CB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 667de181-8f13-4302-b7e3-0255f95c6e9f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1796&$top=665&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1798&$top=663&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=661&$maxpagesize=2"}' + headers: + apim-request-id: 845e58a9-c431-4321-8708-68ed40fbe84f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:09 GMT + etag: '"8F8E07BF85B3CF4879099DDD7AA7439C201826E984445E1B2C095950A74D9CB0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 845e58a9-c431-4321-8708-68ed40fbe84f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1798&$top=663&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=661&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1802&$top=659&$maxpagesize=2"}' + headers: + apim-request-id: 6e2e6922-0c98-4f72-825d-4263cbfa1e2b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:09 GMT + etag: '"087B0A9BD33D8EA1CC2A4F9A9E02559CF5433DAD118F76191FA1BAD7B4C020E4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6e2e6922-0c98-4f72-825d-4263cbfa1e2b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1800&$top=661&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1802&$top=659&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1804&$top=657&$maxpagesize=2"}' + headers: + apim-request-id: a4d5aa8c-6f0e-41f1-9310-5b944a55f8a6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:10 GMT + etag: '"40F1DC09D3A53A005E9DFDFECD29AC61A3738EAAD7E9A94B1F6E5FF276D64BC3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a4d5aa8c-6f0e-41f1-9310-5b944a55f8a6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1802&$top=659&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1804&$top=657&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1806&$top=655&$maxpagesize=2"}' + headers: + apim-request-id: d8f576d6-29a9-42a9-9371-6165e5c9251d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:10 GMT + etag: '"18293BAE34C62B8DFC3B92F2512DEFD154BBC1D095559AF2D6FC686CEF4B370B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d8f576d6-29a9-42a9-9371-6165e5c9251d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1804&$top=657&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1806&$top=655&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1808&$top=653&$maxpagesize=2"}' + headers: + apim-request-id: 93f5d64f-1300-40f4-a820-ad6270f19c1c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:10 GMT + etag: '"144EEA12E7178D30E818B3A8C8DDF99144E1A3D2629C0BC64FEDEFE69AD3540B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 93f5d64f-1300-40f4-a820-ad6270f19c1c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1806&$top=655&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1808&$top=653&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1810&$top=651&$maxpagesize=2"}' + headers: + apim-request-id: 045d33ab-600e-43f2-9e9d-16cfc0162d96 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:10 GMT + etag: '"EFA95A65B5FB39211AD17AD44FC93C811278E167B42D482F3D48E74E2B9236FC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 045d33ab-600e-43f2-9e9d-16cfc0162d96 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1808&$top=653&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1810&$top=651&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1812&$top=649&$maxpagesize=2"}' + headers: + apim-request-id: f5502142-0feb-4523-ad15-8c9b6e143959 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:10 GMT + etag: '"B33A9140C14214580DE3BC54BD8C868D1AD4E5D72E3D1571D7D8BF288015BD73"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f5502142-0feb-4523-ad15-8c9b6e143959 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1810&$top=651&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1812&$top=649&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1814&$top=647&$maxpagesize=2"}' + headers: + apim-request-id: 197bf527-67ac-4764-bd71-93c633321f5e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:10 GMT + etag: '"160C41D018418755D8A76887B2AE815399205413D7EBFFF043DEA443C04A19C2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 197bf527-67ac-4764-bd71-93c633321f5e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1812&$top=649&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1814&$top=647&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1816&$top=645&$maxpagesize=2"}' + headers: + apim-request-id: 85f49ec3-c6f8-480e-b376-59d314bf3958 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:11 GMT + etag: '"974E68DA2A5E1018C19932D38FC2E149D8506B7DFCD3BF6FE8C4965B5A768155"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 85f49ec3-c6f8-480e-b376-59d314bf3958 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1814&$top=647&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1816&$top=645&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1818&$top=643&$maxpagesize=2"}' + headers: + apim-request-id: 1fb8d87d-f4bd-435d-8c69-b97574b42a6f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:11 GMT + etag: '"45A1F4D9151F3A91BDCC2EFFDA9F21379D3765937A4B1C33CF21548FABF72C02"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1fb8d87d-f4bd-435d-8c69-b97574b42a6f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1816&$top=645&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1818&$top=643&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1820&$top=641&$maxpagesize=2"}' + headers: + apim-request-id: 069a82d7-ce61-46e6-b89c-7b782a659125 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:11 GMT + etag: '"3FE70C9F1E2BAA71AC2ED43FBD4AFE2BDE7390D954271E79C8153C277C8E9A71"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 069a82d7-ce61-46e6-b89c-7b782a659125 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1818&$top=643&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1820&$top=641&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1822&$top=639&$maxpagesize=2"}' + headers: + apim-request-id: 8e71218a-da5f-4edc-b61b-3884853624ad + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:11 GMT + etag: '"4529F45D6A013BEF39FC67DBAE6AD4EAC40BA4640BDB8FD4693066C83EA54056"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8e71218a-da5f-4edc-b61b-3884853624ad + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1820&$top=641&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1822&$top=639&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1824&$top=637&$maxpagesize=2"}' + headers: + apim-request-id: 32746bb0-ea40-4b7e-a8a0-553fe7e3d80c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:11 GMT + etag: '"142BFE643BD917ECF31D1C8EE2203765DFF992A0D529A9E56FDB65670701DB14"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 32746bb0-ea40-4b7e-a8a0-553fe7e3d80c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1822&$top=639&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1824&$top=637&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1826&$top=635&$maxpagesize=2"}' + headers: + apim-request-id: 28742557-0d44-4f05-ab3b-1b58acc74d92 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:12 GMT + etag: '"374800D6DE84CE0FA0C3536BCE6B4DA4BBA3DCFFC5A0CE036A47F21D7449020E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 28742557-0d44-4f05-ab3b-1b58acc74d92 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1824&$top=637&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1826&$top=635&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1828&$top=633&$maxpagesize=2"}' + headers: + apim-request-id: ddcd27ac-e954-4155-bdca-4a4fe8feb966 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:12 GMT + etag: '"9A8035FE08060D9072CAA1AC6E554F4CCF07B523196992394C1F0DB9CC10BA5B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ddcd27ac-e954-4155-bdca-4a4fe8feb966 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1826&$top=635&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1828&$top=633&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1830&$top=631&$maxpagesize=2"}' + headers: + apim-request-id: 464c5f04-fd7f-4334-b4b2-2c82092b4901 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:12 GMT + etag: '"B15D541FD7B1743D2211723E21C92D89828D78A5AF299F49EDB6CC4AD74DAFDF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 464c5f04-fd7f-4334-b4b2-2c82092b4901 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1828&$top=633&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1830&$top=631&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1832&$top=629&$maxpagesize=2"}' + headers: + apim-request-id: 611391c9-bdea-49fa-a13e-dd22e424ee74 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:12 GMT + etag: '"DEA134C5762040F82CBBE24D3A592C0D5852EDC744E0A040A7254F9E8A45EFE1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 611391c9-bdea-49fa-a13e-dd22e424ee74 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1830&$top=631&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1832&$top=629&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1834&$top=627&$maxpagesize=2"}' + headers: + apim-request-id: edc50956-4939-46c3-b4ce-948d4e3758f2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:12 GMT + etag: '"7A7C3B7C5F9FBDFDD094F10793A4203EE2FBE98B4D223F64B81602DD4A734927"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: edc50956-4939-46c3-b4ce-948d4e3758f2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1832&$top=629&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1834&$top=627&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1836&$top=625&$maxpagesize=2"}' + headers: + apim-request-id: a4ba2685-0446-4080-8fbe-057fca70de49 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:12 GMT + etag: '"42405699DEA7DF3C305F17F9D568175CEF97E1BF037DC5B1738BE3CAD39E2B9A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a4ba2685-0446-4080-8fbe-057fca70de49 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1834&$top=627&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1836&$top=625&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1838&$top=623&$maxpagesize=2"}' + headers: + apim-request-id: 87ca1802-3661-44bb-980f-a003f137da6e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:13 GMT + etag: '"6F8FA4772A12399995872C6683EA602701581509BE95E16CC92AE5BB4EAA4A69"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 87ca1802-3661-44bb-980f-a003f137da6e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1836&$top=625&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1838&$top=623&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1840&$top=621&$maxpagesize=2"}' + headers: + apim-request-id: 02d3f71d-0ba1-4544-aa68-87e3c86ee531 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:13 GMT + etag: '"06B9397CEDF1CC2C221906B86D861E0DEA9E9D99806CCDD7A311EFFCD103F234"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 02d3f71d-0ba1-4544-aa68-87e3c86ee531 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1838&$top=623&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1840&$top=621&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1842&$top=619&$maxpagesize=2"}' + headers: + apim-request-id: bb7a1f8b-76f1-4d7b-9619-18b69f98409a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:13 GMT + etag: '"5F75F7C6340B872DDD625479A3FF4DBD803A8731E824EAB70998AE9E1296BC90"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bb7a1f8b-76f1-4d7b-9619-18b69f98409a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1840&$top=621&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1842&$top=619&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1844&$top=617&$maxpagesize=2"}' + headers: + apim-request-id: 376b7970-1694-4994-8c2b-14a768d667e5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:13 GMT + etag: '"EFEC28F0E8EBC69B9075C149B00C52AABEF39F85AB5896EB8EA34D7D4B2ED52C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 376b7970-1694-4994-8c2b-14a768d667e5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1842&$top=619&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1844&$top=617&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1846&$top=615&$maxpagesize=2"}' + headers: + apim-request-id: 3aaa5c90-3e2b-442b-9afc-5c304c6e6c2b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:13 GMT + etag: '"F3CF49BADCC7360CA7D436706CA96B38F2CDF1CDDC7EC498F53CA913C7755B88"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3aaa5c90-3e2b-442b-9afc-5c304c6e6c2b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1844&$top=617&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1846&$top=615&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1848&$top=613&$maxpagesize=2"}' + headers: + apim-request-id: 284e83d2-aa40-4d98-b5bf-bd6f7bf63e3e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:14 GMT + etag: '"0A290D9DE73F3BAD5B671CB6A51A7DE84E4475AE34A8D34B1D29A0217DA7F9B7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 284e83d2-aa40-4d98-b5bf-bd6f7bf63e3e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1846&$top=615&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1848&$top=613&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=611&$maxpagesize=2"}' + headers: + apim-request-id: db5ccea7-3fe3-4092-9bbe-d10bf8c133ea + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:14 GMT + etag: '"86ECED10FBE65BE61825BD573B9B0BD8266065754988692D4935769D1441C371"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: db5ccea7-3fe3-4092-9bbe-d10bf8c133ea + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1848&$top=613&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=611&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1852&$top=609&$maxpagesize=2"}' + headers: + apim-request-id: 1190dacf-2d18-40ef-af2e-0d8b70e8f5df + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:14 GMT + etag: '"6921114E517BB1ACFA01949215E975A29163AB055B5CCACAE2DBDF4C578C90FE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1190dacf-2d18-40ef-af2e-0d8b70e8f5df + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1850&$top=611&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1852&$top=609&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1854&$top=607&$maxpagesize=2"}' + headers: + apim-request-id: 2e362c12-5dc0-4e02-803e-6c3ddfc19a11 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:14 GMT + etag: '"E637FC4E97B5071ECF8C22E411505CA37883CE2C69602721B79548A83F888AA4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2e362c12-5dc0-4e02-803e-6c3ddfc19a11 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1852&$top=609&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1854&$top=607&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1856&$top=605&$maxpagesize=2"}' + headers: + apim-request-id: 7c2a8ff2-ff05-48b3-a705-58d054ab4dd7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:14 GMT + etag: '"1BE327F4295B5D8D481BFBA5694D7287AD305D1BDEED984B033A723509FA130B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7c2a8ff2-ff05-48b3-a705-58d054ab4dd7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1854&$top=607&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1856&$top=605&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1858&$top=603&$maxpagesize=2"}' + headers: + apim-request-id: 68b7d632-b8e8-4531-880d-c37d3b77fdc4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:15 GMT + etag: '"F81093348DCE27CFB752155AA124BFF297EB5E76D9C54BB08B2B1A512EFC89C5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 68b7d632-b8e8-4531-880d-c37d3b77fdc4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1856&$top=605&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1858&$top=603&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1860&$top=601&$maxpagesize=2"}' + headers: + apim-request-id: 10a00888-f61d-4f41-bb14-9a40b402e3b1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:15 GMT + etag: '"01671088689980127AE4555AB48CE80DE27A0AEAACBEEE380FB3D8B15A264668"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 10a00888-f61d-4f41-bb14-9a40b402e3b1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1858&$top=603&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1860&$top=601&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1862&$top=599&$maxpagesize=2"}' + headers: + apim-request-id: 9b7d346c-2663-4a5c-86ea-d83c73e815dc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:15 GMT + etag: '"C2AAC41DC067017C960BF472FA5721BE44514D8BAA2B896EE465EB6CF5EA3C0E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9b7d346c-2663-4a5c-86ea-d83c73e815dc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1860&$top=601&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1862&$top=599&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1864&$top=597&$maxpagesize=2"}' + headers: + apim-request-id: 87ca0be5-d3ae-4a91-bda4-4087a776233f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:15 GMT + etag: '"D1AE406DCA6035735B1010640E6982B2C6E4E738F5EC381DB7FE700DE203BA72"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 87ca0be5-d3ae-4a91-bda4-4087a776233f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1862&$top=599&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1864&$top=597&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1866&$top=595&$maxpagesize=2"}' + headers: + apim-request-id: 34b7547b-d6ca-47fd-af09-fdf548740eb4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:15 GMT + etag: '"BFEDF69F20F02AA8371D43FCA575981E5179A61788F13B2FC670B1F52B4C5998"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 34b7547b-d6ca-47fd-af09-fdf548740eb4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1864&$top=597&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1866&$top=595&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1868&$top=593&$maxpagesize=2"}' + headers: + apim-request-id: d0a51b0f-5ffe-41a5-8575-db83d32fa7a7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:16 GMT + etag: '"1DF260F5BD38F709169747A6694486400E398927096A6A8FE2E4D151535E13DD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d0a51b0f-5ffe-41a5-8575-db83d32fa7a7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1866&$top=595&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1868&$top=593&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1870&$top=591&$maxpagesize=2"}' + headers: + apim-request-id: 321d652a-650f-4d03-88d9-103812d9e827 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:16 GMT + etag: '"21139886C3DBF16AE90F0ECDC86701793F5F3DFF0960435930D7AD2297ECFBA1"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 321d652a-650f-4d03-88d9-103812d9e827 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1868&$top=593&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1870&$top=591&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1872&$top=589&$maxpagesize=2"}' + headers: + apim-request-id: d9fda78a-68a4-4c93-aaa8-70f11d3ae932 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:16 GMT + etag: '"76EA6AB7C859EDDCA0968E06BDABB058E5631D08969F2503585028730975B245"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d9fda78a-68a4-4c93-aaa8-70f11d3ae932 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1870&$top=591&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1872&$top=589&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1874&$top=587&$maxpagesize=2"}' + headers: + apim-request-id: f3137ac3-7b4d-427e-a2bb-f87280fbb6ce + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:16 GMT + etag: '"686837C2CFB40419DF4E6F5B0B99A9794D39A67493EF075A5B750FB31A6787B0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f3137ac3-7b4d-427e-a2bb-f87280fbb6ce + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1872&$top=589&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1874&$top=587&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1876&$top=585&$maxpagesize=2"}' + headers: + apim-request-id: a82fcc0b-1ddc-4068-a5ce-dbbbf5c35132 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:16 GMT + etag: '"70049725FE90BD2797730FBFADDB14436F01AAFF080D6CF07365F101ADA37E88"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a82fcc0b-1ddc-4068-a5ce-dbbbf5c35132 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1874&$top=587&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1876&$top=585&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1878&$top=583&$maxpagesize=2"}' + headers: + apim-request-id: a80ee415-e1bd-41c7-8877-d1c7b5107dee + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:16 GMT + etag: '"CDA000293BF78A8E5EDADC322B31157125AFCB86AFB5089FC3DDA1470FC1C2B2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a80ee415-e1bd-41c7-8877-d1c7b5107dee + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1876&$top=585&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1878&$top=583&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1880&$top=581&$maxpagesize=2"}' + headers: + apim-request-id: 254d6fc7-94b9-49ea-83b9-b03109386b86 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:17 GMT + etag: '"5FC48BDECBD6807126D2F3EC202AD66E5B8961029B2CD32D518D7F3A71D6E4AF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 254d6fc7-94b9-49ea-83b9-b03109386b86 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1878&$top=583&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1880&$top=581&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1882&$top=579&$maxpagesize=2"}' + headers: + apim-request-id: a08b400d-0741-47bf-9ea3-057a53f470e2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:17 GMT + etag: '"91BBDBDA3BF442F9CBB1820BDC80868F688CD346CD7E7C5DE964AEEA4504CCDD"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a08b400d-0741-47bf-9ea3-057a53f470e2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1880&$top=581&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1882&$top=579&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1884&$top=577&$maxpagesize=2"}' + headers: + apim-request-id: 57dd7377-93fe-4f8d-9b8e-93c28861f64f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:17 GMT + etag: '"3C6B29EC8CDF4F28EFF943C7A7B7AC4918699A25938CA7FBA91382A2BA2E27A2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 57dd7377-93fe-4f8d-9b8e-93c28861f64f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1882&$top=579&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1884&$top=577&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1886&$top=575&$maxpagesize=2"}' + headers: + apim-request-id: 8d1a36db-ed52-4411-87b8-86ea118b84f5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:17 GMT + etag: '"719030C7E545AF0811CE44DCA37619D396E7F4CDC91E54A012BDF94A67684722"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8d1a36db-ed52-4411-87b8-86ea118b84f5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1884&$top=577&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1886&$top=575&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1888&$top=573&$maxpagesize=2"}' + headers: + apim-request-id: 8bd7d9b0-267a-430d-b731-069064f7b5ab + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:17 GMT + etag: '"09E36BA1C830E3506F924FF1A9E6DABBF13C46E2E1300EEB26422259D25652D2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8bd7d9b0-267a-430d-b731-069064f7b5ab + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1886&$top=575&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1888&$top=573&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1890&$top=571&$maxpagesize=2"}' + headers: + apim-request-id: c2c80a19-23db-4014-b44c-8e73a5ff70e1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:18 GMT + etag: '"D505DA95BA1E69B12222633A6128F922BBB5755F993828688F44BCF9C5D68676"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c2c80a19-23db-4014-b44c-8e73a5ff70e1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1888&$top=573&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1890&$top=571&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1892&$top=569&$maxpagesize=2"}' + headers: + apim-request-id: 04f30b70-49d2-47c6-9859-ae6bd93e077a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:18 GMT + etag: '"1366BBA030E15857A74FAA1BE91A04DCFE3BD7EAEC04BD5077D9A87F8314688D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 04f30b70-49d2-47c6-9859-ae6bd93e077a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1890&$top=571&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1892&$top=569&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1894&$top=567&$maxpagesize=2"}' + headers: + apim-request-id: 410ef5c1-458d-4468-8ad6-d222501596eb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:18 GMT + etag: '"702B0EDE96D84EBFADC42948AFE3F904B511C1E13A4F571A58B55E92BC0D1E11"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 410ef5c1-458d-4468-8ad6-d222501596eb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1892&$top=569&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1894&$top=567&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1896&$top=565&$maxpagesize=2"}' + headers: + apim-request-id: 3d27c8c0-8aa3-4e46-81b7-e8f3d77ac2c3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:18 GMT + etag: '"CA580380CBE283F5BA73DAFC6425EC8437DB18DEBB2CA6405AF1ADC0A5B7F64A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3d27c8c0-8aa3-4e46-81b7-e8f3d77ac2c3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1894&$top=567&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1896&$top=565&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1898&$top=563&$maxpagesize=2"}' + headers: + apim-request-id: fb9c9940-3d2a-4579-b18d-17956ceca932 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:18 GMT + etag: '"81D0FA55F2D9951E304398D2E490DEF044ECD1DD06486FEF10738F9B089975E4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fb9c9940-3d2a-4579-b18d-17956ceca932 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1896&$top=565&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1898&$top=563&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=561&$maxpagesize=2"}' + headers: + apim-request-id: ea3bec81-f080-4f70-ac43-7d6fd522dc5b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:18 GMT + etag: '"2BADD9501C013882147F16B0051EAD6B61ED5EF3358F39AAE433A9BE883B0FCA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ea3bec81-f080-4f70-ac43-7d6fd522dc5b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1898&$top=563&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=561&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1902&$top=559&$maxpagesize=2"}' + headers: + apim-request-id: eb081d6d-7ca3-49e5-afc5-4e09d82dae2b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:19 GMT + etag: '"174A173ECA21963B357EA7C638A3372A15B9AC0B42133078646E37573DA7B662"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: eb081d6d-7ca3-49e5-afc5-4e09d82dae2b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1900&$top=561&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1902&$top=559&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1904&$top=557&$maxpagesize=2"}' + headers: + apim-request-id: c41c00a6-faa0-44c8-ac7e-351e9c0ee257 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:19 GMT + etag: '"1E616527098B033C7A5F4EC473805384CD1FDB47999BBB891FD0B0C83C518C6E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c41c00a6-faa0-44c8-ac7e-351e9c0ee257 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1902&$top=559&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1904&$top=557&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1906&$top=555&$maxpagesize=2"}' + headers: + apim-request-id: 4fcaee46-1784-4ec5-ae9a-05dae0feb21a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:19 GMT + etag: '"AD9E8E435F0F3CB61FBAE417ECB8CD49E3052BC0CB7C22D325880292F2514021"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4fcaee46-1784-4ec5-ae9a-05dae0feb21a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1904&$top=557&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1906&$top=555&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1908&$top=553&$maxpagesize=2"}' + headers: + apim-request-id: addc8354-b6e6-4556-9c1b-8af8eff09939 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:19 GMT + etag: '"804FA1285AEC5C9C6E1540FAEE356EB7344E8CCFDABCC64773684C97CE775381"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: addc8354-b6e6-4556-9c1b-8af8eff09939 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1906&$top=555&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1908&$top=553&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1910&$top=551&$maxpagesize=2"}' + headers: + apim-request-id: 40306fde-4fa8-47a9-96d5-2a2f1757e9e8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:19 GMT + etag: '"C3BBE5C09BF8FDE1E3505CF1C7D73E685544F6CB346DA8882CDA9895522274E4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 40306fde-4fa8-47a9-96d5-2a2f1757e9e8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1908&$top=553&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1910&$top=551&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1912&$top=549&$maxpagesize=2"}' + headers: + apim-request-id: d4dfc477-5760-4c8d-a2a6-4d6b2c48c8c3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:20 GMT + etag: '"F9B5F06E0213C54C0F95344C86EA9E2BFC9CE93C98A267F6A4F174A9D029E456"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d4dfc477-5760-4c8d-a2a6-4d6b2c48c8c3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1910&$top=551&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1912&$top=549&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1914&$top=547&$maxpagesize=2"}' + headers: + apim-request-id: 2420fdf0-9d4e-4c8f-a27a-9c1001a5fb63 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:20 GMT + etag: '"B00CCF09CE5005386EF4D35A9DEA7596F536C739ACD75DF1E41B610605DB1F7A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2420fdf0-9d4e-4c8f-a27a-9c1001a5fb63 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1912&$top=549&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1914&$top=547&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1916&$top=545&$maxpagesize=2"}' + headers: + apim-request-id: a7d90df6-d579-4a69-b8c3-b7f26bc10296 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:20 GMT + etag: '"1916C344F0A791B568EE771726F97C7D39198095233BB8B17654B0666BF8935F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a7d90df6-d579-4a69-b8c3-b7f26bc10296 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1914&$top=547&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1916&$top=545&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1918&$top=543&$maxpagesize=2"}' + headers: + apim-request-id: a21d01d8-2722-4da2-843c-109c14804fd8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:20 GMT + etag: '"D63029E6A78951CA15827AE3DE09D060A1319D5D0D608CFC7FDF122856121C8E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a21d01d8-2722-4da2-843c-109c14804fd8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1916&$top=545&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1918&$top=543&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1920&$top=541&$maxpagesize=2"}' + headers: + apim-request-id: 6ff79f4d-4d73-4138-b541-75379634d574 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:20 GMT + etag: '"69F95D9BF6B7138A3C0E0C1800B2CDE844C78CEB32125FE9B61564AD21AE094C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6ff79f4d-4d73-4138-b541-75379634d574 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1918&$top=543&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1920&$top=541&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1922&$top=539&$maxpagesize=2"}' + headers: + apim-request-id: 20ec4c9a-be10-46c2-a42c-804211ad6e84 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:21 GMT + etag: '"F6E484C527505809AE5051A6BA17B46F5B1A909A90E538ECA904E63F3A706BDC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 20ec4c9a-be10-46c2-a42c-804211ad6e84 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1920&$top=541&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1922&$top=539&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1924&$top=537&$maxpagesize=2"}' + headers: + apim-request-id: 74fce6b3-c898-4ce2-a0cc-4f96cb37d1d3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:21 GMT + etag: '"17CF89AB55EE053742EEECC58D3C3F213A74D5082DE1DC2552C68C9CAB499E3E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 74fce6b3-c898-4ce2-a0cc-4f96cb37d1d3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1922&$top=539&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1924&$top=537&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1926&$top=535&$maxpagesize=2"}' + headers: + apim-request-id: 04a92ce3-b15e-4e9f-b124-6ae67a1d1f60 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:21 GMT + etag: '"BE18B39889F9E8CF1C22075E252B18F49B9D8A042407B06B6A9CE053BFEF3E38"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 04a92ce3-b15e-4e9f-b124-6ae67a1d1f60 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1924&$top=537&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1926&$top=535&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1928&$top=533&$maxpagesize=2"}' + headers: + apim-request-id: 03e28ddc-a78b-41fc-bf70-b4447c72d98f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:21 GMT + etag: '"542E65BA8743A927AA9EC0830C3BF1979327F41A6A4EB27536432EE1446A843A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 03e28ddc-a78b-41fc-bf70-b4447c72d98f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1926&$top=535&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1928&$top=533&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1930&$top=531&$maxpagesize=2"}' + headers: + apim-request-id: 52f7769a-0c24-42cc-b49e-b9ccee797c1f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:22 GMT + etag: '"BDC666386A065E1DCA5F6368C3940F24C653680463CADE42BCD584878B821EBA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 52f7769a-0c24-42cc-b49e-b9ccee797c1f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1928&$top=533&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1930&$top=531&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1932&$top=529&$maxpagesize=2"}' + headers: + apim-request-id: 7b542781-e679-498d-bdcf-87564ef31d44 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:22 GMT + etag: '"BD3B44013AAAAF7D89A71B72364D40E358019FAB5E61E991164B3D320786EDF4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7b542781-e679-498d-bdcf-87564ef31d44 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1930&$top=531&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1932&$top=529&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1934&$top=527&$maxpagesize=2"}' + headers: + apim-request-id: 53bbd4fb-bad0-495b-9739-6feed7850cf6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:22 GMT + etag: '"CBBBD37062432C65374D953D31F051E786CDC060AD3EE9C8B1DD3CB89911A0C3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 53bbd4fb-bad0-495b-9739-6feed7850cf6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1932&$top=529&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1934&$top=527&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1936&$top=525&$maxpagesize=2"}' + headers: + apim-request-id: 082bf548-7ab9-49f0-b6db-ea741eacc9c3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:22 GMT + etag: '"B650D188699C3DE750ED7FD83FC72A074D365E6A309FB12FB919977EA1010EC6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 082bf548-7ab9-49f0-b6db-ea741eacc9c3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1934&$top=527&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1936&$top=525&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1938&$top=523&$maxpagesize=2"}' + headers: + apim-request-id: 66861050-5ee6-4a76-98b4-e63dab0c3eac + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:23 GMT + etag: '"C2ED8FB71735D33DC45B2D71C5AB221C1CA777DC561DC4768D57851B0A4B34B4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 66861050-5ee6-4a76-98b4-e63dab0c3eac + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1936&$top=525&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1938&$top=523&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1940&$top=521&$maxpagesize=2"}' + headers: + apim-request-id: 4806cf2d-3eb0-46ef-9a19-f40f5168f417 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:23 GMT + etag: '"4B250E310FD1833508F4878159B5E8CE6FF2A22D969A4AD90F306A55DB24A3BC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4806cf2d-3eb0-46ef-9a19-f40f5168f417 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1938&$top=523&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1940&$top=521&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1942&$top=519&$maxpagesize=2"}' + headers: + apim-request-id: ea2c4501-4c86-4f5b-83d7-d16e2392ba4d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:23 GMT + etag: '"6B931DCEE3E95081C23BF91A1C4AC0EF0AB1EF4C5BCB175A8B24F4FA3D6223F6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ea2c4501-4c86-4f5b-83d7-d16e2392ba4d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1940&$top=521&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1942&$top=519&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1944&$top=517&$maxpagesize=2"}' + headers: + apim-request-id: 423860f1-3182-4f50-a1d1-cc5e0dcbe2a6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:23 GMT + etag: '"F16F36DA53770784CF7A0B3C969B40CBC92077115DF0D8A0DDCE27CE941F030C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 423860f1-3182-4f50-a1d1-cc5e0dcbe2a6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1942&$top=519&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1944&$top=517&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1946&$top=515&$maxpagesize=2"}' + headers: + apim-request-id: 20a6bfe2-c2fd-43fe-9889-dae2d6bd5f31 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:25 GMT + etag: '"87BF016659C7363E37608C0099A23C313C8BBFBD5C0370E8AA8727E21E56CF81"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 20a6bfe2-c2fd-43fe-9889-dae2d6bd5f31 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1944&$top=517&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1946&$top=515&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1948&$top=513&$maxpagesize=2"}' + headers: + apim-request-id: 2d6b3872-db71-4705-80d3-d884323e9f9e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:25 GMT + etag: '"37D115D729892A8AE5EFBB80E3B56E487A0E3B4B96DF950C393C341D1C3161AD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2d6b3872-db71-4705-80d3-d884323e9f9e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1946&$top=515&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1948&$top=513&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=511&$maxpagesize=2"}' + headers: + apim-request-id: 50422adf-561d-49a6-8350-6ea03eacac91 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:25 GMT + etag: '"9B19338D753A6921E09A4E58630CABCCBD2B388E28D642F9DC1A29816FC9303B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 50422adf-561d-49a6-8350-6ea03eacac91 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1948&$top=513&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=511&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1952&$top=509&$maxpagesize=2"}' + headers: + apim-request-id: ed55b266-1aa5-462e-8c76-43c0f3a2f743 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:25 GMT + etag: '"5B9E0719EFD73136436DC1D61C9B3A16D37BFD05CE1297284DC95423A112CE2B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ed55b266-1aa5-462e-8c76-43c0f3a2f743 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1950&$top=511&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1952&$top=509&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1954&$top=507&$maxpagesize=2"}' + headers: + apim-request-id: 2c9dbe82-3dff-4885-9b00-8080ef1e1a2a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:25 GMT + etag: '"640EB651612C60D12A50AC90F897EFD8A154E9F93D7A6F95D1DFAEF1F51AB156"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2c9dbe82-3dff-4885-9b00-8080ef1e1a2a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1952&$top=509&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1954&$top=507&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1956&$top=505&$maxpagesize=2"}' + headers: + apim-request-id: 87dbf3fa-471a-4d9a-a6c9-1c94527e7f15 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:26 GMT + etag: '"1350B5E031D99743328F04EE032BD3CC36351EA40DFD42C685647317C7F9B086"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 87dbf3fa-471a-4d9a-a6c9-1c94527e7f15 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1954&$top=507&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1956&$top=505&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1958&$top=503&$maxpagesize=2"}' + headers: + apim-request-id: 64d4c636-22a9-44ea-8482-0a391036075d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:26 GMT + etag: '"F1E708ED059B5F73CBD52F8AE3D2D324ABD713FBF3354AA70943E92028C62866"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 64d4c636-22a9-44ea-8482-0a391036075d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1956&$top=505&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1958&$top=503&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1960&$top=501&$maxpagesize=2"}' + headers: + apim-request-id: 4bd8b012-6266-4cef-8560-cdd9a242c7c6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:26 GMT + etag: '"A40308B680D3331C20E2BD66E107B89C1346E3B30429B84B107965D4758EF415"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4bd8b012-6266-4cef-8560-cdd9a242c7c6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1958&$top=503&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1960&$top=501&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1962&$top=499&$maxpagesize=2"}' + headers: + apim-request-id: cb257117-aa35-4769-ab4d-c3d9a15a847a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:27 GMT + etag: '"E4193EC26D944E74184EDE47AE3135F833791FADE075814A7023E254240059E0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cb257117-aa35-4769-ab4d-c3d9a15a847a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1960&$top=501&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1962&$top=499&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1964&$top=497&$maxpagesize=2"}' + headers: + apim-request-id: 9062b4a9-a537-470c-a979-19fce6967758 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:27 GMT + etag: '"8AAE14F89B241BCCA2C6A85BB6A065359B99AA84AF1737F1608EEB7B25A3A12A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9062b4a9-a537-470c-a979-19fce6967758 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1962&$top=499&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1964&$top=497&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1966&$top=495&$maxpagesize=2"}' + headers: + apim-request-id: 3b75ad08-dbbe-4e66-b55e-e0e3a10282b6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:27 GMT + etag: '"372024AE25053B80ED9B5CEC10B011BA65F54D77B22A037D6ACF3033BA178818"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3b75ad08-dbbe-4e66-b55e-e0e3a10282b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1964&$top=497&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1966&$top=495&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1968&$top=493&$maxpagesize=2"}' + headers: + apim-request-id: 5b8cd97f-2b80-4642-9499-999d4a63d248 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:27 GMT + etag: '"BE299DF102239F4BF576B72F6564D8105028DADF4FD06E944738335E69B6C159"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5b8cd97f-2b80-4642-9499-999d4a63d248 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1966&$top=495&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1968&$top=493&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1970&$top=491&$maxpagesize=2"}' + headers: + apim-request-id: c2e0b64a-87e7-4f71-b086-34c01b49682a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:27 GMT + etag: '"FE77BF38270CB8E70B0895BDE91F40E1D729F82B691D4268F0BF27AFDB3035A7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c2e0b64a-87e7-4f71-b086-34c01b49682a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1968&$top=493&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1970&$top=491&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1972&$top=489&$maxpagesize=2"}' + headers: + apim-request-id: dcf1cef1-413b-4f7c-a967-b8ee8308f194 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:28 GMT + etag: '"84EF095154CACE02D411B3355A28D7512210B955038E2D61347215DC482C0972"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dcf1cef1-413b-4f7c-a967-b8ee8308f194 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1970&$top=491&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1972&$top=489&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1974&$top=487&$maxpagesize=2"}' + headers: + apim-request-id: 957bf358-108b-47d0-b078-391ea40409bc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:28 GMT + etag: '"A826B8DEB6ED17931A626EE9495E591C416A21909A966AAB7B16413340D5B7E4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 957bf358-108b-47d0-b078-391ea40409bc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1972&$top=489&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1974&$top=487&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1976&$top=485&$maxpagesize=2"}' + headers: + apim-request-id: ea732afc-9649-476a-a15c-fa61a7c4841d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:28 GMT + etag: '"7C5131A800CC3F9D09C2E9ABD21D463833381A251FBF83FFA0A095EC150CF75E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ea732afc-9649-476a-a15c-fa61a7c4841d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1974&$top=487&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1976&$top=485&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1978&$top=483&$maxpagesize=2"}' + headers: + apim-request-id: 48126fa1-2fc9-4af2-9756-9ba65c5002b2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:28 GMT + etag: '"D9894F3B3EAC89CE6085CD6DD828B78D5F5693AAB493C9D06FA1964EDEAB202A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 48126fa1-2fc9-4af2-9756-9ba65c5002b2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1976&$top=485&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1978&$top=483&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1980&$top=481&$maxpagesize=2"}' + headers: + apim-request-id: e849a505-013f-4452-bc83-9664cca35836 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:28 GMT + etag: '"06FE99D7D95541FF7CBB472A68E2E3AF55C7F10962F02605E3A709D86EBBCE46"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e849a505-013f-4452-bc83-9664cca35836 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1978&$top=483&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1980&$top=481&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1982&$top=479&$maxpagesize=2"}' + headers: + apim-request-id: 7e727b56-90cd-4510-b0fb-f3107f7cd8ff + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:29 GMT + etag: '"C9419BA0FB5C7A69075918E9A05A108A3BA67D9F667B5A15C51844F5F8E38BC3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7e727b56-90cd-4510-b0fb-f3107f7cd8ff + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1980&$top=481&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1982&$top=479&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1984&$top=477&$maxpagesize=2"}' + headers: + apim-request-id: 3d52c014-a0e5-42ef-ba13-b33825ed2fda + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:29 GMT + etag: '"63B8EA4B3D479918781C3C452198D0B7163A864D79C676B9D471A82BB9C5F953"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3d52c014-a0e5-42ef-ba13-b33825ed2fda + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1982&$top=479&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1984&$top=477&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1986&$top=475&$maxpagesize=2"}' + headers: + apim-request-id: 592ba458-f448-4058-b6cc-3fae7db63dae + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:29 GMT + etag: '"F80F538257A6E9CB0E089D1DF3C64F5CACCC63960B5EDD2D40B56381E7AD0B20"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 592ba458-f448-4058-b6cc-3fae7db63dae + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1984&$top=477&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1986&$top=475&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1988&$top=473&$maxpagesize=2"}' + headers: + apim-request-id: 9db597b3-5a1f-43bf-af24-d3df97760e3d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:29 GMT + etag: '"C2A176202E322C725703A8FA37798FA8F5077927BA3B0AD89A0DF613799368FA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9db597b3-5a1f-43bf-af24-d3df97760e3d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1986&$top=475&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1988&$top=473&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1990&$top=471&$maxpagesize=2"}' + headers: + apim-request-id: 0effc502-0259-43e5-86d7-97e5cac8e964 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:30 GMT + etag: '"7F301AE4BA4A15DFC48665A52ED0F5E7709416047E4459B70A498B85142CC911"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0effc502-0259-43e5-86d7-97e5cac8e964 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1988&$top=473&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1990&$top=471&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1992&$top=469&$maxpagesize=2"}' + headers: + apim-request-id: fab3a2cf-6f2c-4dd8-8764-9d4e379e7ae0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:30 GMT + etag: '"7DEF467A072CBA21747E4BAA5E088F6DC890008DA490E10871733C3859E6D618"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fab3a2cf-6f2c-4dd8-8764-9d4e379e7ae0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1990&$top=471&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1992&$top=469&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1994&$top=467&$maxpagesize=2"}' + headers: + apim-request-id: fcfc7e38-9553-48e4-8cfb-66a172b3c862 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:30 GMT + etag: '"4C37FD70AEA3CD969811FC27B3BD222FF8EA32BF60B9E26D8BCA5B7AB851353F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fcfc7e38-9553-48e4-8cfb-66a172b3c862 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1992&$top=469&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1994&$top=467&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1996&$top=465&$maxpagesize=2"}' + headers: + apim-request-id: f234c97f-4758-458d-ae60-548220913ac6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:30 GMT + etag: '"3BACA869D975F754808999FCAF6D7056C80A90871614EFBA1260F24768328861"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f234c97f-4758-458d-ae60-548220913ac6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1994&$top=467&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1996&$top=465&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1998&$top=463&$maxpagesize=2"}' + headers: + apim-request-id: ea73bfda-3b40-4989-a4c9-9abe24fb6570 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:31 GMT + etag: '"C6F4E79A46BEE2B6A14EEF61897A83127C8C40FA185E42D2B41CBDC5B3CB9D87"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ea73bfda-3b40-4989-a4c9-9abe24fb6570 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1996&$top=465&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1998&$top=463&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=461&$maxpagesize=2"}' + headers: + apim-request-id: 1f79f42f-de68-49cc-b595-3b4c562907bc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:31 GMT + etag: '"E7E8D68A8B99669191E53E73019EAAFC009F43EC636F553EB90072A69043A785"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1f79f42f-de68-49cc-b595-3b4c562907bc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1998&$top=463&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=461&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2002&$top=459&$maxpagesize=2"}' + headers: + apim-request-id: 00e5d429-8ba7-4ae1-913f-e1408bad01f5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:31 GMT + etag: '"A8302E02C47AD064355F7C119007F8FBF7FA2A4C141186F36A73075DA5F8AFB1"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 00e5d429-8ba7-4ae1-913f-e1408bad01f5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2000&$top=461&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2002&$top=459&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2004&$top=457&$maxpagesize=2"}' + headers: + apim-request-id: 810cf2d8-495c-49fe-801f-a16cd45a6b4b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:31 GMT + etag: '"5C4514E0291BE8A5D017D1CE2078B82A77BE667F704D8E6BE7AA46FC3840DA7B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 810cf2d8-495c-49fe-801f-a16cd45a6b4b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2002&$top=459&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2004&$top=457&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2006&$top=455&$maxpagesize=2"}' + headers: + apim-request-id: d3e5bbdd-7931-4881-9cc8-db5811b8f194 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:31 GMT + etag: '"4E0552A445285A8A61118FAEE09A75604039C869A6EFDF73151A2EF227B2082D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d3e5bbdd-7931-4881-9cc8-db5811b8f194 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2004&$top=457&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2006&$top=455&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2008&$top=453&$maxpagesize=2"}' + headers: + apim-request-id: 9c0b6f28-e8a6-4946-b355-45c7417e75d5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:32 GMT + etag: '"92182F73A03B591CB0EF7F48755A4DBF6207DBBBC22E4F7EA9D1CA9CFC15AD07"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9c0b6f28-e8a6-4946-b355-45c7417e75d5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2006&$top=455&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2008&$top=453&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2010&$top=451&$maxpagesize=2"}' + headers: + apim-request-id: 07cb6c05-3e31-43f1-baa9-f1c2dfe4ecd7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:32 GMT + etag: '"EFA427E842D2EC95468DE973A3C759A89FEED669B6CB101E912498180FE9A69B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 07cb6c05-3e31-43f1-baa9-f1c2dfe4ecd7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2008&$top=453&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2010&$top=451&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2012&$top=449&$maxpagesize=2"}' + headers: + apim-request-id: 5219c126-1ee7-4192-bf59-b25267255cab + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:32 GMT + etag: '"1EF11457ED76D0C1E09E740EE2156C902E3BF73B217F81F00D47231AB823B829"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5219c126-1ee7-4192-bf59-b25267255cab + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2010&$top=451&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2012&$top=449&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2014&$top=447&$maxpagesize=2"}' + headers: + apim-request-id: 7571b8a2-31aa-49df-a912-5cf77ef9c91d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:32 GMT + etag: '"6743FA8538A603DF2660BF057E551067E53F29902EC6116CB2E0A71E37068B60"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7571b8a2-31aa-49df-a912-5cf77ef9c91d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2012&$top=449&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2014&$top=447&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2016&$top=445&$maxpagesize=2"}' + headers: + apim-request-id: ad23458d-ba20-49d9-95ca-2c5802c06f04 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:32 GMT + etag: '"D7241D028156D2A5A1B60CA112607FBB9A8463A8C8F659E43D48B38905A570D7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ad23458d-ba20-49d9-95ca-2c5802c06f04 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2014&$top=447&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2016&$top=445&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2018&$top=443&$maxpagesize=2"}' + headers: + apim-request-id: b41e0ab0-d196-4857-96fc-d5e1746a13b1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:33 GMT + etag: '"0F4D1D2C2C326E820ACE953C2C4DE042AF62D5372AB9DC0E9743E05B2F5A0009"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b41e0ab0-d196-4857-96fc-d5e1746a13b1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2016&$top=445&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2018&$top=443&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2020&$top=441&$maxpagesize=2"}' + headers: + apim-request-id: e577fda5-44b6-4b4e-8101-68303c2bbfe5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:33 GMT + etag: '"338A3DFFCA76281944E7DA5140F596BB96DA605D3BC9708EF87B227F6AB3CCEE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e577fda5-44b6-4b4e-8101-68303c2bbfe5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2018&$top=443&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2020&$top=441&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2022&$top=439&$maxpagesize=2"}' + headers: + apim-request-id: 24e9d2f8-a240-4231-ac41-0a105a16872f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:33 GMT + etag: '"C321354488243A855573DA227425E219600B3EACB1CCCC69047AAD38574CF457"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 24e9d2f8-a240-4231-ac41-0a105a16872f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2020&$top=441&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2022&$top=439&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2024&$top=437&$maxpagesize=2"}' + headers: + apim-request-id: 3e646f30-f1ed-4355-b60d-7133d24d40de + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:33 GMT + etag: '"AE4E55D7C72142529467CF4023F48721E0A76C1575D78D473BBBCB51EA5FD7DD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3e646f30-f1ed-4355-b60d-7133d24d40de + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2022&$top=439&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2024&$top=437&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2026&$top=435&$maxpagesize=2"}' + headers: + apim-request-id: f5744cc1-9181-4369-92f6-afc6466e403c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:34 GMT + etag: '"BBE2389A343858BCEC39F80F908B771263EFF08653C6060E31D8C1F395E09DDE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f5744cc1-9181-4369-92f6-afc6466e403c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2024&$top=437&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2026&$top=435&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2028&$top=433&$maxpagesize=2"}' + headers: + apim-request-id: c86ee931-7952-429e-8cfb-ccc1d94631eb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:34 GMT + etag: '"C06EFF902E7007258B76F0FC798E94C8DBEE1DAA2ADAFF522F5DC4709E1046E6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c86ee931-7952-429e-8cfb-ccc1d94631eb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2026&$top=435&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2028&$top=433&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2030&$top=431&$maxpagesize=2"}' + headers: + apim-request-id: 4110e98c-0a62-44ed-a267-6d4de01eb1d9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:34 GMT + etag: '"041B20B83D4449501D7EBEA5E7D1FDF6984F730A7B0AFD23C1337CCED591390F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4110e98c-0a62-44ed-a267-6d4de01eb1d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2028&$top=433&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2030&$top=431&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2032&$top=429&$maxpagesize=2"}' + headers: + apim-request-id: af5804e9-f60e-4b6b-a101-f69e8486ee57 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:34 GMT + etag: '"ECC07C3BC090BA42420B83076CF18D0B873966403010D220B9E317F43BF23D63"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: af5804e9-f60e-4b6b-a101-f69e8486ee57 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2030&$top=431&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2032&$top=429&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2034&$top=427&$maxpagesize=2"}' + headers: + apim-request-id: 4ae01f9a-5711-4b58-b5c8-58d47c577903 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:34 GMT + etag: '"7B21F8592BE575BD4E699B4DF75078D0C121BA0B5ED45A6DAAD80C41E7B0045E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4ae01f9a-5711-4b58-b5c8-58d47c577903 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2032&$top=429&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2034&$top=427&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2036&$top=425&$maxpagesize=2"}' + headers: + apim-request-id: 7dfdf61c-f7d0-4353-93c6-3cd5f5042fc7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:35 GMT + etag: '"F54586B412B972EAFE189A137AAC2CD735C8CE0BD1E8FEAD6D4FB5AD8A5E06F3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7dfdf61c-f7d0-4353-93c6-3cd5f5042fc7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2034&$top=427&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2036&$top=425&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2038&$top=423&$maxpagesize=2"}' + headers: + apim-request-id: 70d67adb-754a-4c18-ae63-8cad7f4269ee + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:35 GMT + etag: '"EE46E3379E5F7ECB641278FD0396562F621E848112369FC65C9E9664F7ABA8C6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 70d67adb-754a-4c18-ae63-8cad7f4269ee + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2036&$top=425&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2038&$top=423&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2040&$top=421&$maxpagesize=2"}' + headers: + apim-request-id: 27cffa24-f9e5-4e04-b5d3-5a5cb2cb4888 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:35 GMT + etag: '"D192834BC9D8E3A0DE42BB812C75AA3DD04B3F85B54C852C01F75B1F626DBF08"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 27cffa24-f9e5-4e04-b5d3-5a5cb2cb4888 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2038&$top=423&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2040&$top=421&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2042&$top=419&$maxpagesize=2"}' + headers: + apim-request-id: 46125156-f1e7-4f97-8fb8-f3ecd3e4dab9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:35 GMT + etag: '"7CEF4DAB0EE6B13313D859574506D5CC565993F146214DD05D05FD5BEE1DB13F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 46125156-f1e7-4f97-8fb8-f3ecd3e4dab9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2040&$top=421&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2042&$top=419&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2044&$top=417&$maxpagesize=2"}' + headers: + apim-request-id: 51d2f2fd-608e-41a1-bec8-d8f78f707868 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:35 GMT + etag: '"275BD2403929E77C44E85D1CE47CA02757581F2388C6F338A1708206FDD9ADC0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 51d2f2fd-608e-41a1-bec8-d8f78f707868 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2042&$top=419&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2044&$top=417&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2046&$top=415&$maxpagesize=2"}' + headers: + apim-request-id: 6da72701-1c44-4011-9904-f67063ccdc56 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:36 GMT + etag: '"7BEFF1B289C153F744545783D87817AF19D9AC20A287EA57B9C3B36CADA50ED6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6da72701-1c44-4011-9904-f67063ccdc56 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2044&$top=417&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2046&$top=415&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2048&$top=413&$maxpagesize=2"}' + headers: + apim-request-id: 5173294f-e2c7-4e0b-8260-4505803e86d3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:36 GMT + etag: '"E341D7A2A6290EFAEDCC6FD3CAADCF5D1A2BE70D0AC0E27E56ED62952264FCEF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5173294f-e2c7-4e0b-8260-4505803e86d3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2046&$top=415&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2048&$top=413&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=411&$maxpagesize=2"}' + headers: + apim-request-id: f7126892-0bb6-42f3-9c40-9cc6d04645ed + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:36 GMT + etag: '"94B1FFD64EE75F0A4542BD464685992940FC481F293D0E3695DA70CFC0ACDB45"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f7126892-0bb6-42f3-9c40-9cc6d04645ed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2048&$top=413&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=411&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2052&$top=409&$maxpagesize=2"}' + headers: + apim-request-id: ab266976-1dd3-4170-adb9-2594b0e18146 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:36 GMT + etag: '"809071FA3F6A916D5D735A4C15037F2126C1F5495AA034D051C6CF9A54DFF669"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ab266976-1dd3-4170-adb9-2594b0e18146 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2050&$top=411&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2052&$top=409&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2054&$top=407&$maxpagesize=2"}' + headers: + apim-request-id: 58c2b882-a333-46a7-ae6c-7a15eab0538e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:36 GMT + etag: '"11E0FDBDF1520F151EF87141FF58A664D890B1026F33D5A9EFAD977EAAE59B05"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 58c2b882-a333-46a7-ae6c-7a15eab0538e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2052&$top=409&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2054&$top=407&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2056&$top=405&$maxpagesize=2"}' + headers: + apim-request-id: 651c325a-e7cd-41c2-a4bb-1908d5ad83ec + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:37 GMT + etag: '"E2DB78FF0D87E4E93BB0212ADCA5170F3A2B5B7585AC4E0EE5DD82DE2D82D4EB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 651c325a-e7cd-41c2-a4bb-1908d5ad83ec + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2054&$top=407&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2056&$top=405&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2058&$top=403&$maxpagesize=2"}' + headers: + apim-request-id: d47477b7-9934-43b7-9f07-28f4e02021d9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:37 GMT + etag: '"B9C577D67AE9980016F95A71E1D2E5418C953B171F569DE1F59C0DC48BB3D7F3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d47477b7-9934-43b7-9f07-28f4e02021d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2056&$top=405&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2058&$top=403&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2060&$top=401&$maxpagesize=2"}' + headers: + apim-request-id: c17f48c7-7270-4683-8291-c0a071117225 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:37 GMT + etag: '"7CEE77003E48C7357A6CB954183EA6F7363D980884CFC20EBD0B3730369C9520"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c17f48c7-7270-4683-8291-c0a071117225 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2058&$top=403&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2060&$top=401&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2062&$top=399&$maxpagesize=2"}' + headers: + apim-request-id: ef6d2403-0c1d-4ed1-8d22-d9d818d40d5b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:37 GMT + etag: '"3EFDB92605835A9DC39448DBA08A31786BF7B76AB7B16D916E7101C81F63AA97"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ef6d2403-0c1d-4ed1-8d22-d9d818d40d5b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2060&$top=401&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2062&$top=399&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2064&$top=397&$maxpagesize=2"}' + headers: + apim-request-id: fc47fbfb-4453-4df2-b11a-7fada2c53d00 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:37 GMT + etag: '"ACBECF05E6D43B96CA5D998CA97FDB949570871FE57A7034A3D7D92B9FF514A8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fc47fbfb-4453-4df2-b11a-7fada2c53d00 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2062&$top=399&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2064&$top=397&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2066&$top=395&$maxpagesize=2"}' + headers: + apim-request-id: 5fe4385a-4934-4757-97b1-ad170b54c0ee + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:38 GMT + etag: '"FC69CDE8043742623E9A65F08EBD910D3962F88191A0D4931D9F45472B43E220"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5fe4385a-4934-4757-97b1-ad170b54c0ee + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2064&$top=397&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2066&$top=395&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2068&$top=393&$maxpagesize=2"}' + headers: + apim-request-id: ad3551d6-dd49-434f-aeb8-9c52302f31ad + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:38 GMT + etag: '"E072DD7E437D14D9221260A9A82BDE5CFA32DF9713A4B1B6E09DB6E8C46EC2C6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ad3551d6-dd49-434f-aeb8-9c52302f31ad + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2066&$top=395&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2068&$top=393&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2070&$top=391&$maxpagesize=2"}' + headers: + apim-request-id: 1ade9fe8-3cc1-4fcd-be5e-f22431e55d9e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:38 GMT + etag: '"7BC855376660946AB83815804FA914DB4AB8578229A00A41855F4D3108C90384"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1ade9fe8-3cc1-4fcd-be5e-f22431e55d9e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2068&$top=393&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2070&$top=391&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2072&$top=389&$maxpagesize=2"}' + headers: + apim-request-id: 5dfe686b-4309-43ed-b1e7-5b78181a5efa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:38 GMT + etag: '"74F979EC0341D68B31FE9AD906812DEE75FAF99C2ECAF2643887C90CEB60068B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5dfe686b-4309-43ed-b1e7-5b78181a5efa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2070&$top=391&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2072&$top=389&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2074&$top=387&$maxpagesize=2"}' + headers: + apim-request-id: 560faa67-29f8-402d-925d-507d266357f7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:38 GMT + etag: '"B836C24F7C52AD8A8A170293A1FE2AD1392B2EB683DF09DDE4F4C6C65D9AF44B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 560faa67-29f8-402d-925d-507d266357f7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2072&$top=389&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2074&$top=387&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2076&$top=385&$maxpagesize=2"}' + headers: + apim-request-id: e7b9e009-74b3-443b-903f-42b2c3aaa9b3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:39 GMT + etag: '"132741EAE5938C1115B6E7BCC9121EE74634FDDA5F6F7B9562E66C54AECF02FF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e7b9e009-74b3-443b-903f-42b2c3aaa9b3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2074&$top=387&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2076&$top=385&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2078&$top=383&$maxpagesize=2"}' + headers: + apim-request-id: 37a01d4f-e8ba-4d26-a6f9-0a8b4f9cd72e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:39 GMT + etag: '"EA2D6AA73543ED37947093AF09C83F7938141E718C9E77403723DABD5CBFC0B7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 37a01d4f-e8ba-4d26-a6f9-0a8b4f9cd72e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2076&$top=385&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2078&$top=383&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2080&$top=381&$maxpagesize=2"}' + headers: + apim-request-id: b65ede0a-3b3a-47af-b998-8bcf6bbc06e7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:39 GMT + etag: '"D719891CF4551D22434029BA1B7AB0763D9CFB92CB8DB282A21DEDE560780368"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b65ede0a-3b3a-47af-b998-8bcf6bbc06e7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2078&$top=383&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2080&$top=381&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2082&$top=379&$maxpagesize=2"}' + headers: + apim-request-id: 44682d61-6ec0-4685-9689-69d2fe1c938e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:39 GMT + etag: '"0CD6B3F5962FD001F7DE8B7859DAA56E27A55978EB05E1A257863C540405C37B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 44682d61-6ec0-4685-9689-69d2fe1c938e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2080&$top=381&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2082&$top=379&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2084&$top=377&$maxpagesize=2"}' + headers: + apim-request-id: 2cc023d7-cfd4-4835-8120-242f6f26af5a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:39 GMT + etag: '"76AD3BD27ECF8B71275642393D5C9BB68ECE0771F1738F2226C0384B54687F77"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2cc023d7-cfd4-4835-8120-242f6f26af5a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2082&$top=379&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2084&$top=377&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2086&$top=375&$maxpagesize=2"}' + headers: + apim-request-id: 58d0d845-cb15-4200-9693-1a1aceea56db + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:40 GMT + etag: '"48AE5B6D207832BD4BA51E2566B7D3B66523C49B5B15C92E5A31B7136E96DA97"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 58d0d845-cb15-4200-9693-1a1aceea56db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2084&$top=377&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2086&$top=375&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2088&$top=373&$maxpagesize=2"}' + headers: + apim-request-id: b999b2dd-eef8-4193-a3a5-44cf40aaf026 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:40 GMT + etag: '"2F440BB4E8C29AE4C99AF56B3D532DEBB64A95E3ACC1520E56FFE7FBAF214076"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b999b2dd-eef8-4193-a3a5-44cf40aaf026 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2086&$top=375&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2088&$top=373&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2090&$top=371&$maxpagesize=2"}' + headers: + apim-request-id: 9ebd2fc1-2f8c-4132-b1dc-d77946e8332b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:40 GMT + etag: '"BF7749467D5C487D579383E64925186148552516A3EB45E74789CD9697A453EB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9ebd2fc1-2f8c-4132-b1dc-d77946e8332b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2088&$top=373&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2090&$top=371&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2092&$top=369&$maxpagesize=2"}' + headers: + apim-request-id: 90bae4d4-a310-47b9-8e01-81f0c14e6bb6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:40 GMT + etag: '"D3A196D5B8CE82AA573F8CA0A1FCF215943305B1383DBC8C5FADD92E92C5919E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 90bae4d4-a310-47b9-8e01-81f0c14e6bb6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2090&$top=371&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2092&$top=369&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2094&$top=367&$maxpagesize=2"}' + headers: + apim-request-id: 14e3a689-5268-4eb1-8d24-78757b578bf7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:40 GMT + etag: '"FDAA7B87D2E3FDBDC5D22F4F97036C5C1FC2784B30E9E3B435B57329E1E4122F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 14e3a689-5268-4eb1-8d24-78757b578bf7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2092&$top=369&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2094&$top=367&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2096&$top=365&$maxpagesize=2"}' + headers: + apim-request-id: 9077ac1d-b8b2-4cd8-9aa6-c9cab7b1e465 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:41 GMT + etag: '"79A26BC49F06C8FCD8BB1564CF14A1A4C1C3FA74391A0ACEF6F9EE215F11131E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9077ac1d-b8b2-4cd8-9aa6-c9cab7b1e465 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2094&$top=367&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2096&$top=365&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2098&$top=363&$maxpagesize=2"}' + headers: + apim-request-id: b75b781a-9abd-48dc-9e03-565d3836242d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:41 GMT + etag: '"90A34375620450E0E0AEDF5281C997625CAEA1880E4F0E6857E940FE14BF5EF0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b75b781a-9abd-48dc-9e03-565d3836242d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2096&$top=365&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2098&$top=363&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=361&$maxpagesize=2"}' + headers: + apim-request-id: 4e215beb-6d58-481c-b72b-ee0f3154a345 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:41 GMT + etag: '"EEEE1411E651ADE28375A4AB89D2671BEDC708A12C56E69AD49571F8FD04946C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4e215beb-6d58-481c-b72b-ee0f3154a345 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2098&$top=363&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=361&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2102&$top=359&$maxpagesize=2"}' + headers: + apim-request-id: 3a9eeb87-e17f-48b5-8ea1-bdfcb7bff892 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:41 GMT + etag: '"79A6CF4D52A6104BC7ABBBA11C67D14A31FEB9D9D4303C603A5F83A314F18B35"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3a9eeb87-e17f-48b5-8ea1-bdfcb7bff892 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2100&$top=361&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2102&$top=359&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2104&$top=357&$maxpagesize=2"}' + headers: + apim-request-id: b2c89664-9f41-4c21-bd2f-92cfaf22ffb7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:41 GMT + etag: '"C2F2480767CBA28F3DF1B2D4F1F55355E955180512F833F86ABFC8E4CE5BC970"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b2c89664-9f41-4c21-bd2f-92cfaf22ffb7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2102&$top=359&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2104&$top=357&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2106&$top=355&$maxpagesize=2"}' + headers: + apim-request-id: c7669185-db2f-4277-a503-3035287b9036 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:42 GMT + etag: '"35426D3B643E0C79243FB0BB5D75F64B6C02FC1C635EA1E32DCDEDB994F7BF11"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c7669185-db2f-4277-a503-3035287b9036 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2104&$top=357&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2106&$top=355&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2108&$top=353&$maxpagesize=2"}' + headers: + apim-request-id: 537e0e7d-409a-4fb5-85db-f2eab27d697c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:42 GMT + etag: '"9AC3C435337491226B12EF40A0A5AA740D00C1E49A8045AF3FF21CA5759007B9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 537e0e7d-409a-4fb5-85db-f2eab27d697c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2106&$top=355&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2108&$top=353&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2110&$top=351&$maxpagesize=2"}' + headers: + apim-request-id: 4450324b-01bb-44ba-b203-985cb97c9f0f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:42 GMT + etag: '"133916C1375EA81A8692FDBEA0EE6802E0ADCFB4468BBE76B52EFB441120CA67"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4450324b-01bb-44ba-b203-985cb97c9f0f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2108&$top=353&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2110&$top=351&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2112&$top=349&$maxpagesize=2"}' + headers: + apim-request-id: 6623e2cb-f7ef-457c-ba11-0a028f6f0da7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:42 GMT + etag: '"2843B8784236FF424D30646313C55C6D53AB08291D5EBB01DB972DCF8798C6CD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6623e2cb-f7ef-457c-ba11-0a028f6f0da7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2110&$top=351&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2112&$top=349&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2114&$top=347&$maxpagesize=2"}' + headers: + apim-request-id: 139e8989-2272-4d4b-b844-42dc7f77b046 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:43 GMT + etag: '"F7DF914D46BAF0BF0EE30A41A48F745D95AD663E0F0A69F07DF37A036BD87378"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 139e8989-2272-4d4b-b844-42dc7f77b046 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2112&$top=349&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2114&$top=347&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2116&$top=345&$maxpagesize=2"}' + headers: + apim-request-id: 0778f64c-1b45-4fe8-a1ee-e41a34c6275f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:43 GMT + etag: '"21AAD01E72063DD7500F0353EEC20800C900FD9D135F03649859AA59A8021DD0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0778f64c-1b45-4fe8-a1ee-e41a34c6275f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2114&$top=347&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2116&$top=345&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2118&$top=343&$maxpagesize=2"}' + headers: + apim-request-id: 9c465dd3-4cd0-4ab4-9490-aeba0902782b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:43 GMT + etag: '"5D812305E571C1F981FBA5065B2752985C17D4F5A4D5700693CCD0C0891034D6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9c465dd3-4cd0-4ab4-9490-aeba0902782b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2116&$top=345&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2118&$top=343&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2120&$top=341&$maxpagesize=2"}' + headers: + apim-request-id: c51bb8ab-658e-47b1-a6fc-8d2f4ae9e07e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:43 GMT + etag: '"FE1B5075291DD969F39528B9620996CCBB06F1D2732F69D06C1BBFB423799D8A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c51bb8ab-658e-47b1-a6fc-8d2f4ae9e07e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2118&$top=343&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2120&$top=341&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2122&$top=339&$maxpagesize=2"}' + headers: + apim-request-id: 830586c0-c078-4a95-84be-4b7bd755f76b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:43 GMT + etag: '"D795AE3C00B851FF02B7E42B4036371A9934922E4FFB0BB01D45125A0F088ADC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 830586c0-c078-4a95-84be-4b7bd755f76b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2120&$top=341&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2122&$top=339&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2124&$top=337&$maxpagesize=2"}' + headers: + apim-request-id: 5948f0d3-2afd-45c5-a11c-34f4255d55b0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:44 GMT + etag: '"0C9519FD16B9788051B42061B7D817FBD88995E84CF33D39AE289DE34C95397A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5948f0d3-2afd-45c5-a11c-34f4255d55b0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2122&$top=339&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2124&$top=337&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2126&$top=335&$maxpagesize=2"}' + headers: + apim-request-id: 0449026d-7e95-451e-808c-fc6ea95bc730 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:44 GMT + etag: '"7F3AC1342FBA298F7CC2E99D687F8EF68B26E4E476343B41AAC75FCC5800881E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0449026d-7e95-451e-808c-fc6ea95bc730 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2124&$top=337&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2126&$top=335&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2128&$top=333&$maxpagesize=2"}' + headers: + apim-request-id: 5c83e9e9-abfc-44ee-8266-51668feef4f6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:44 GMT + etag: '"640E639A5DD4131A9AD5C12129BD8C53E018CF33E498CF261CFB8528D9B832A5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5c83e9e9-abfc-44ee-8266-51668feef4f6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2126&$top=335&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2128&$top=333&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2130&$top=331&$maxpagesize=2"}' + headers: + apim-request-id: af2048a1-49a0-4769-9516-28235b90f736 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:44 GMT + etag: '"5D1BF5BC22F96524B458EDE7AFEA630FD866B3E33A9162FE64344D906E8A7B46"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: af2048a1-49a0-4769-9516-28235b90f736 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2128&$top=333&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2130&$top=331&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2132&$top=329&$maxpagesize=2"}' + headers: + apim-request-id: a599fafa-c638-4aae-9537-f7fbb05d9972 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:44 GMT + etag: '"4A48FC751DA44E2A5B7CBCB9680B08937B8B7DD74E4123C35779CAD4B38B8D39"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a599fafa-c638-4aae-9537-f7fbb05d9972 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2130&$top=331&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2132&$top=329&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2134&$top=327&$maxpagesize=2"}' + headers: + apim-request-id: 4652d4b7-a921-484a-81f1-33f031d38095 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:45 GMT + etag: '"72B3E70EECCF97EDE5CF57205F3E61B9379FF9151A85343B27CA36B1F3235E84"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4652d4b7-a921-484a-81f1-33f031d38095 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2132&$top=329&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2134&$top=327&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2136&$top=325&$maxpagesize=2"}' + headers: + apim-request-id: 4b126dd5-4f22-4edb-aa1f-432233de4591 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:45 GMT + etag: '"15E9F5AF8D70D75B15F0179CAB3823594C9907591829A62ACF5BAE001A88C806"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4b126dd5-4f22-4edb-aa1f-432233de4591 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2134&$top=327&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2136&$top=325&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2138&$top=323&$maxpagesize=2"}' + headers: + apim-request-id: 69242f3e-bb5a-4ba7-8810-1f3a68476218 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:45 GMT + etag: '"254745632448E3FEFD5BE87AEA57EB1C0B6467EBACFEAC2334E13F42801CAD44"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 69242f3e-bb5a-4ba7-8810-1f3a68476218 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2136&$top=325&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2138&$top=323&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2140&$top=321&$maxpagesize=2"}' + headers: + apim-request-id: b26b9f49-8206-45ab-9f62-8da2c5244d0b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:45 GMT + etag: '"212806B2A82B70E8065ECCE349AC173CB118E06ED03D9AA5D44B735C03838585"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b26b9f49-8206-45ab-9f62-8da2c5244d0b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2138&$top=323&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2140&$top=321&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2142&$top=319&$maxpagesize=2"}' + headers: + apim-request-id: 90ffc63b-62fa-4c61-9250-a7770aa84898 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:45 GMT + etag: '"98CFFE5B3F396964B3513FDD4DD8E8DEDACFE94C636E44DCB84A35EB24FE3A25"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 90ffc63b-62fa-4c61-9250-a7770aa84898 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2140&$top=321&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2142&$top=319&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2144&$top=317&$maxpagesize=2"}' + headers: + apim-request-id: 527d8e5c-0e0e-4ab2-b487-65e6d23f520f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:46 GMT + etag: '"CAA5735CA4066A53DBB2974061000B16DD041A0C1ED8C683E14B69B18FDBEFAB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 527d8e5c-0e0e-4ab2-b487-65e6d23f520f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2142&$top=319&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2144&$top=317&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2146&$top=315&$maxpagesize=2"}' + headers: + apim-request-id: aa2f71c9-b10f-48b1-8eca-500f0eba9e13 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:46 GMT + etag: '"70EA4AA26DDCB428F08700E4D6DE32837ACF0D4BB5DD97F12E409B5662FE9002"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: aa2f71c9-b10f-48b1-8eca-500f0eba9e13 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2144&$top=317&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2146&$top=315&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2148&$top=313&$maxpagesize=2"}' + headers: + apim-request-id: 5bc6eb96-16d2-4d8d-bb00-de1824257eec + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:46 GMT + etag: '"4AC7D8167DC45B95EBA7AB343D468E867EDB50A22D1D0EA7E70A9A9AE8F00F8D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5bc6eb96-16d2-4d8d-bb00-de1824257eec + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2146&$top=315&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2148&$top=313&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=311&$maxpagesize=2"}' + headers: + apim-request-id: e3d399eb-bf27-43da-88c7-cc21d9251ce2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:46 GMT + etag: '"D4CA800BCA6E6AD5B32008CBB20D5ED4A0B72187763F2DE96F3ED93AFF338152"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e3d399eb-bf27-43da-88c7-cc21d9251ce2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2148&$top=313&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=311&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2152&$top=309&$maxpagesize=2"}' + headers: + apim-request-id: 98dfecf2-9eb9-436e-9d79-a58fdc7378bd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:46 GMT + etag: '"26694FD00E23431AEC5412C856857C9288D7254A71E716935A6C4A911CFB683F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 98dfecf2-9eb9-436e-9d79-a58fdc7378bd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2150&$top=311&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2152&$top=309&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2154&$top=307&$maxpagesize=2"}' + headers: + apim-request-id: c1fed60c-4a74-449c-a095-2a18e1186870 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:47 GMT + etag: '"F776BB252E34E6CEEFE3BE7020C0B031CD9BD59AC8915B72AECA1502EA49B8DB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c1fed60c-4a74-449c-a095-2a18e1186870 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2152&$top=309&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2154&$top=307&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2156&$top=305&$maxpagesize=2"}' + headers: + apim-request-id: 79f47bb6-0bd3-4ad9-94c0-2ac60b4acbdc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:47 GMT + etag: '"173156E1F2A6C7F76DFF478635C464CC17482D486BA04E4A2D8378D2B6E12796"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 79f47bb6-0bd3-4ad9-94c0-2ac60b4acbdc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2154&$top=307&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2156&$top=305&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2158&$top=303&$maxpagesize=2"}' + headers: + apim-request-id: 208d6d3c-6609-4aa7-928d-beeeaffd6eb5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:47 GMT + etag: '"67BD76D89A124B66B9A4CC4284EE3212A7E680A72AA78E409E976A529667300D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 208d6d3c-6609-4aa7-928d-beeeaffd6eb5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2156&$top=305&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2158&$top=303&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2160&$top=301&$maxpagesize=2"}' + headers: + apim-request-id: c18ff787-cdca-4bd3-822e-efb35dd6795d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:47 GMT + etag: '"3EBEF572E72B8BB8D92639C11B01C24394A89F36B73E8230B61220EE1D65C8D6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c18ff787-cdca-4bd3-822e-efb35dd6795d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2158&$top=303&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2160&$top=301&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2162&$top=299&$maxpagesize=2"}' + headers: + apim-request-id: d333991e-5f87-467b-a734-00e909caceeb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:47 GMT + etag: '"9C4710193BEF1239644C8EBB69952E0BDB6E5FBC13992340D51229AF1C7A6758"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d333991e-5f87-467b-a734-00e909caceeb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2160&$top=301&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2162&$top=299&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2164&$top=297&$maxpagesize=2"}' + headers: + apim-request-id: 795dbeb5-5654-4f69-9ea4-8356271c9a1e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:48 GMT + etag: '"43E353827F74858AB072E8020D07592776FDB0D612E862C006C5E351A53AEB1B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 795dbeb5-5654-4f69-9ea4-8356271c9a1e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2162&$top=299&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2164&$top=297&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2166&$top=295&$maxpagesize=2"}' + headers: + apim-request-id: c1d7f0d0-ac83-4278-9108-d60d79ae2d99 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:48 GMT + etag: '"4732FF58ECCD714830C92B5687DA09B43A66E8BD6FD07AFAFBFF857E9D6A8337"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c1d7f0d0-ac83-4278-9108-d60d79ae2d99 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2164&$top=297&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2166&$top=295&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2168&$top=293&$maxpagesize=2"}' + headers: + apim-request-id: fbb6a096-fed7-4f06-8650-be37d88d9512 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:48 GMT + etag: '"DC2F1BD6AC30918CA6271490D75DAAC965E3A40CBBD8DB9AE7C7100AD2198A40"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fbb6a096-fed7-4f06-8650-be37d88d9512 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2166&$top=295&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2168&$top=293&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2170&$top=291&$maxpagesize=2"}' + headers: + apim-request-id: e57a98bc-de69-42d2-9530-22b81a04e448 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:48 GMT + etag: '"19F59E09DEF24C61548C549BF373A948649E433FDAF1FBC458585EC5FFB8D06E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e57a98bc-de69-42d2-9530-22b81a04e448 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2168&$top=293&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2170&$top=291&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2172&$top=289&$maxpagesize=2"}' + headers: + apim-request-id: f26c333b-b76e-41f2-9486-8e37ec9188d0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:48 GMT + etag: '"ED4996520063CCE868D92856986F07864D96EC3AB94BDAE7299C010D0DE6CA35"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f26c333b-b76e-41f2-9486-8e37ec9188d0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2170&$top=291&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2172&$top=289&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2174&$top=287&$maxpagesize=2"}' + headers: + apim-request-id: d772c108-0da0-4d26-9a3d-ff4fb48f2e38 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:49 GMT + etag: '"F9BED29CD16E95F074FD8A13C6398B6EE29F871C98BF6F8FCF53D021ABD46FE4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d772c108-0da0-4d26-9a3d-ff4fb48f2e38 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2172&$top=289&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2174&$top=287&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2176&$top=285&$maxpagesize=2"}' + headers: + apim-request-id: b2205826-0e02-4110-977d-10ae92ca3fdb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:49 GMT + etag: '"DD342C7CC7410EE73521A8A7251CFC9DDAA5201C96CD7C80DDD217849EE85979"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b2205826-0e02-4110-977d-10ae92ca3fdb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2174&$top=287&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2176&$top=285&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2178&$top=283&$maxpagesize=2"}' + headers: + apim-request-id: 2775f141-5bca-472a-80f6-4999a854b98a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:49 GMT + etag: '"8468611B697992591045110D108A179555C8B8098556785E4E2E4EC1452CD0F0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2775f141-5bca-472a-80f6-4999a854b98a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2176&$top=285&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2178&$top=283&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2180&$top=281&$maxpagesize=2"}' + headers: + apim-request-id: 04a80982-f30e-42cb-8fad-1b6012876f46 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:49 GMT + etag: '"3CF31A750FD9BF18C4557187F4EC6415F32F3A289CB74EDB9F813CDA4CA7E04F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 04a80982-f30e-42cb-8fad-1b6012876f46 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2178&$top=283&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2180&$top=281&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2182&$top=279&$maxpagesize=2"}' + headers: + apim-request-id: 20f10c82-eb7c-40ba-a4a2-640dad356cda + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:49 GMT + etag: '"05CEBE12B59896763F5283C953F6C832E0CE936634F6915BEF1E7053F67AF6EC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 20f10c82-eb7c-40ba-a4a2-640dad356cda + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2180&$top=281&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2182&$top=279&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2184&$top=277&$maxpagesize=2"}' + headers: + apim-request-id: e51dd80b-99c0-46ce-9905-a91e89b78422 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:50 GMT + etag: '"77ECCA4767231573DCC7405A2201F2681C9EECEB8E29CBAD4A324B7532E67B3A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e51dd80b-99c0-46ce-9905-a91e89b78422 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2182&$top=279&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2184&$top=277&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2186&$top=275&$maxpagesize=2"}' + headers: + apim-request-id: cd74bad6-7695-4dda-a495-50d98b49454f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:50 GMT + etag: '"E3679DBC90BBF435AA7100434F387B2B23C2A71ABB8CEB8D6355C53986503497"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cd74bad6-7695-4dda-a495-50d98b49454f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2184&$top=277&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2186&$top=275&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2188&$top=273&$maxpagesize=2"}' + headers: + apim-request-id: cac9d7c4-0177-47c1-b4ef-d51febd2e2ed + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:50 GMT + etag: '"0DE06008EA5CE87B68BA2F431CAE90CEF565A0AC1661D4BEAE186FE5B46C11B2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cac9d7c4-0177-47c1-b4ef-d51febd2e2ed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2186&$top=275&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2188&$top=273&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2190&$top=271&$maxpagesize=2"}' + headers: + apim-request-id: 43f5002a-5370-4971-b4ce-b93c51c9e226 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:50 GMT + etag: '"EC8A7AB754FAECDA69034F222B6ECE39002B4D23BEA2C914F49C9292E5ECF380"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 43f5002a-5370-4971-b4ce-b93c51c9e226 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2188&$top=273&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2190&$top=271&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2192&$top=269&$maxpagesize=2"}' + headers: + apim-request-id: 2cf18f92-65a4-4acf-a175-9a8ea2c78f8d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:50 GMT + etag: '"24FDFFB1516F7B599AEF6D3F56193E92FC410D9F12D971F24BF63637923CA7C5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2cf18f92-65a4-4acf-a175-9a8ea2c78f8d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2190&$top=271&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2192&$top=269&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2194&$top=267&$maxpagesize=2"}' + headers: + apim-request-id: 9fd962b0-4d68-4d52-984f-e2ba6d596c79 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:51 GMT + etag: '"0F93268A67B7779A34D8FF66D4D5A86BC07D10B0B3A090AB7C3628D2A28C85F2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9fd962b0-4d68-4d52-984f-e2ba6d596c79 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2192&$top=269&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2194&$top=267&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2196&$top=265&$maxpagesize=2"}' + headers: + apim-request-id: c08aa21e-e054-46b8-b689-e407535dfa34 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:51 GMT + etag: '"36F82C8DCD2FBC12D39C73721B495C561C79DECA7308D553360CC2CC4E4D2201"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c08aa21e-e054-46b8-b689-e407535dfa34 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2194&$top=267&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2196&$top=265&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2198&$top=263&$maxpagesize=2"}' + headers: + apim-request-id: 197cb71b-b879-45a3-9668-8bb9276cfbc2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:51 GMT + etag: '"13B58A5A911AC6861AEB2C923F77A14CA8CD8CC06AD4747D23F58C11A571326C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 197cb71b-b879-45a3-9668-8bb9276cfbc2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2196&$top=265&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2198&$top=263&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=261&$maxpagesize=2"}' + headers: + apim-request-id: 711fccd5-296f-4ce5-afed-67520ec6109e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:51 GMT + etag: '"8675B7CFF13A3C02EF63D4C7C33DA9286B398D3C7686C6568832F639454CF158"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 711fccd5-296f-4ce5-afed-67520ec6109e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2198&$top=263&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=261&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2202&$top=259&$maxpagesize=2"}' + headers: + apim-request-id: 0d0e7e86-bf11-4aea-88e0-f83ac29ac100 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:51 GMT + etag: '"2E0AB16E5350718DC93A6BA843D84575BDFA0D10CDFF48BD996895F44BA7E6BD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0d0e7e86-bf11-4aea-88e0-f83ac29ac100 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2200&$top=261&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2202&$top=259&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2204&$top=257&$maxpagesize=2"}' + headers: + apim-request-id: 03776084-da7f-49be-9619-c3d10e223081 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:51 GMT + etag: '"C484917471542950E11C1AB6FE325819C7A095F80B531576A8C14C6492C38C30"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 03776084-da7f-49be-9619-c3d10e223081 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2202&$top=259&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2204&$top=257&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2206&$top=255&$maxpagesize=2"}' + headers: + apim-request-id: 675f357a-8a3b-471f-86bd-b0d977c05697 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:52 GMT + etag: '"28635B9DD03BE08EC40AF53D7BFD115CE66CA3F1F0943E22A4A05ED44D182F6C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 675f357a-8a3b-471f-86bd-b0d977c05697 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2204&$top=257&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2206&$top=255&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2208&$top=253&$maxpagesize=2"}' + headers: + apim-request-id: af0ecb08-6f51-4f56-b1eb-0ce8af2560f7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:52 GMT + etag: '"0359F02D152C568301A31F3748FA3D1F0B5B897742F479A8D7C69CC8E05FFB55"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: af0ecb08-6f51-4f56-b1eb-0ce8af2560f7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2206&$top=255&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2208&$top=253&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2210&$top=251&$maxpagesize=2"}' + headers: + apim-request-id: 8c8d3735-07a4-46d0-a5e5-6badf0656355 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:52 GMT + etag: '"BFF60C433500CEB7064B981E9C8A670B3FCEF0197ABDC7F53FCA68052E5DBF49"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8c8d3735-07a4-46d0-a5e5-6badf0656355 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2208&$top=253&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2210&$top=251&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2212&$top=249&$maxpagesize=2"}' + headers: + apim-request-id: 49601146-8c96-49f3-aa24-38794541956e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:52 GMT + etag: '"3433A1581C0A0B7E7557CDC7487ACE3FD77B441F5BA8394205D25C90798082D9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 49601146-8c96-49f3-aa24-38794541956e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2210&$top=251&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2212&$top=249&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2214&$top=247&$maxpagesize=2"}' + headers: + apim-request-id: e7da4d78-ade8-4b47-a3d8-1b2a7eb7d885 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:52 GMT + etag: '"5FCD378278D26E129E9DFD5D3F559C40D0E0D66C4C4FCFA1999CFAF4DEC7B1CC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e7da4d78-ade8-4b47-a3d8-1b2a7eb7d885 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2212&$top=249&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2214&$top=247&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2216&$top=245&$maxpagesize=2"}' + headers: + apim-request-id: d5909a3b-2221-4cfe-b2ba-555285cbffe2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:53 GMT + etag: '"B39E409868C3DE076DC70E19F9BC702368E469D1DBE57398F6427DA23A182B08"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d5909a3b-2221-4cfe-b2ba-555285cbffe2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2214&$top=247&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2216&$top=245&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2218&$top=243&$maxpagesize=2"}' + headers: + apim-request-id: 90cfd478-c9a9-4a75-b770-19ac7e3c99e5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:53 GMT + etag: '"D4CC1EA5EAA8185BD5F424295D3CB89036846CAB9FB37F1B848973042E220D36"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 90cfd478-c9a9-4a75-b770-19ac7e3c99e5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2216&$top=245&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2218&$top=243&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2220&$top=241&$maxpagesize=2"}' + headers: + apim-request-id: 79ba42b8-3545-479a-b5c0-b79065a9f37d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:53 GMT + etag: '"0C01B511426D359BEFA4442CD538816B1BD9DF790903E131089DFE7F8BF2CC0B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 79ba42b8-3545-479a-b5c0-b79065a9f37d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2218&$top=243&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2220&$top=241&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2222&$top=239&$maxpagesize=2"}' + headers: + apim-request-id: 421c2c4e-6095-4b90-a3ea-b141e26b1f15 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:53 GMT + etag: '"A64AC99ECA4AA51B97F1BE0D0BDC2D396718839803CFE6D8F737C7467E9183C5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 421c2c4e-6095-4b90-a3ea-b141e26b1f15 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2220&$top=241&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2222&$top=239&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2224&$top=237&$maxpagesize=2"}' + headers: + apim-request-id: cc3ad236-9dae-42d0-ba5d-5255c1df1ec0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:53 GMT + etag: '"637AE68EF8FB0091F07E9BF00E9FB0E5A694BD2135E0DD9A8AA3AC0F649B6DD9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cc3ad236-9dae-42d0-ba5d-5255c1df1ec0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2222&$top=239&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2224&$top=237&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2226&$top=235&$maxpagesize=2"}' + headers: + apim-request-id: 39db4efd-6e82-407b-b412-2e684f7fd2f9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:54 GMT + etag: '"99B1B848EC94285B5249158921A3E81C72A3F2171EA8DD5D72BB895AB19757DA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 39db4efd-6e82-407b-b412-2e684f7fd2f9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2224&$top=237&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2226&$top=235&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2228&$top=233&$maxpagesize=2"}' + headers: + apim-request-id: c4e752e9-24ad-491a-ac37-e7a307de76a8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:54 GMT + etag: '"C0B4B56645B5CD09C497F797B9CCAF6714D3E8421AE2F3CE92C6AC90C57D3451"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c4e752e9-24ad-491a-ac37-e7a307de76a8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2226&$top=235&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2228&$top=233&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2230&$top=231&$maxpagesize=2"}' + headers: + apim-request-id: 0cec2f74-34f2-40dd-a962-eda9e054ed7f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:54 GMT + etag: '"64C38E05945F4FC97E4590CD1BC65BD606CA42046CCF00D73309E57B1DDC75AA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0cec2f74-34f2-40dd-a962-eda9e054ed7f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2228&$top=233&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2230&$top=231&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2232&$top=229&$maxpagesize=2"}' + headers: + apim-request-id: ea2446df-0f5b-47ab-abf1-4968e1bb8c5b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:54 GMT + etag: '"69FEBD206C5DC66ECB34DE7BE95AF6D4F03C301079BE32F3219C3ADD16C44999"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ea2446df-0f5b-47ab-abf1-4968e1bb8c5b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2230&$top=231&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2232&$top=229&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2234&$top=227&$maxpagesize=2"}' + headers: + apim-request-id: d2c210d9-9c9d-47bc-8dad-d27224345e1b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:54 GMT + etag: '"752E9BCD480EA950847C58D66400B59E76DD6D311A81BFE1EC878DAC5F6AEF9D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d2c210d9-9c9d-47bc-8dad-d27224345e1b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2232&$top=229&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2234&$top=227&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2236&$top=225&$maxpagesize=2"}' + headers: + apim-request-id: b0402543-14f6-46e9-8cfa-9799a546216a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:55 GMT + etag: '"707B0323586B6DD944AD8733CDB38AED52B2270479D19B7AD626661AE3FF4D2D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b0402543-14f6-46e9-8cfa-9799a546216a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2234&$top=227&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2236&$top=225&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2238&$top=223&$maxpagesize=2"}' + headers: + apim-request-id: 62bde378-cf52-454e-8488-8529d109a360 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:55 GMT + etag: '"10D9BA13BA1BACBBDA7A7665A65B0292937EC8481F73B9EC593F8E075A527183"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 62bde378-cf52-454e-8488-8529d109a360 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2236&$top=225&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2238&$top=223&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2240&$top=221&$maxpagesize=2"}' + headers: + apim-request-id: 7526a518-c9d9-4c75-9561-f958c35e2aa1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:55 GMT + etag: '"1DD9401CE5874F2BDD6F13CCCDC2D89B74B45394FD33DD7BBD579978CB7AA78F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7526a518-c9d9-4c75-9561-f958c35e2aa1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2238&$top=223&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2240&$top=221&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2242&$top=219&$maxpagesize=2"}' + headers: + apim-request-id: 12db8bd6-2920-4956-bfaa-226e6180fdf5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:55 GMT + etag: '"65EB35DC7B674640B8A3CC8A0588680AAFFC82CB8814E9531AD1AE1DB8E53DFE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 12db8bd6-2920-4956-bfaa-226e6180fdf5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2240&$top=221&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2242&$top=219&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2244&$top=217&$maxpagesize=2"}' + headers: + apim-request-id: 625fc156-becc-4f9f-a370-7543bff2dd73 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:55 GMT + etag: '"838EB9BBBD0D3530052AEACCC888485D59398056A0EA81EE8B62EE15B6D825CC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 625fc156-becc-4f9f-a370-7543bff2dd73 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2242&$top=219&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2244&$top=217&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2246&$top=215&$maxpagesize=2"}' + headers: + apim-request-id: cee47482-11bb-403a-a6dc-d8e2aa7128de + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:56 GMT + etag: '"D621F5CC5380A877D305C8D50ED0E525C28F906EB114CBA04875EC52F66C0787"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cee47482-11bb-403a-a6dc-d8e2aa7128de + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2244&$top=217&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2246&$top=215&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2248&$top=213&$maxpagesize=2"}' + headers: + apim-request-id: ec3c1329-d00b-4635-b5a2-e9e1901a757d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:56 GMT + etag: '"DF4B625FF6054800C3EB9C0F098C79DC32584AA3819EB65E58E0DB5525FA42F2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ec3c1329-d00b-4635-b5a2-e9e1901a757d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2246&$top=215&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2248&$top=213&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=211&$maxpagesize=2"}' + headers: + apim-request-id: 15a39c73-287c-4bdb-9fef-42487d6b81bf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:56 GMT + etag: '"3E434860613A0DFAA28D9CB767D7982A28DDF8653E61DD9C72D6A3AF668C4620"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 15a39c73-287c-4bdb-9fef-42487d6b81bf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2248&$top=213&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=211&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2252&$top=209&$maxpagesize=2"}' + headers: + apim-request-id: 046c596e-6c24-4cb2-9646-82ba81932213 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:56 GMT + etag: '"8CDE478308DEB007B3AA5626BCA6D6ED578DC717A5C889CA3801C2AFF2F404BA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 046c596e-6c24-4cb2-9646-82ba81932213 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2250&$top=211&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2252&$top=209&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2254&$top=207&$maxpagesize=2"}' + headers: + apim-request-id: 0dd73797-794f-4890-9091-b509c9f42583 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:56 GMT + etag: '"4FB92AF4D6D966F421D7A2BD9B6DB590B5AB62A2FABEF730C1EEBAAE352A491E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0dd73797-794f-4890-9091-b509c9f42583 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2252&$top=209&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2254&$top=207&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2256&$top=205&$maxpagesize=2"}' + headers: + apim-request-id: 4cfe23d0-aec1-4900-93b9-1e0f0519fe48 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:57 GMT + etag: '"2555EFE54189EFC4F52C8BDB442AFA2A0C7518339798089EDF6CC43BBCE8CECE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4cfe23d0-aec1-4900-93b9-1e0f0519fe48 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2254&$top=207&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2256&$top=205&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2258&$top=203&$maxpagesize=2"}' + headers: + apim-request-id: 51e155f0-58a2-4f63-82f3-5bc0204f922b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:57 GMT + etag: '"32351336985C0D891CE96605950995DBB47A8874EAE77512EA2723957FAFC22A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 51e155f0-58a2-4f63-82f3-5bc0204f922b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2256&$top=205&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2258&$top=203&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2260&$top=201&$maxpagesize=2"}' + headers: + apim-request-id: 8ac8a820-35c6-4c77-9dee-5397a7d029f7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:57 GMT + etag: '"DEE85C9927445CEC12F587EE63F26418CE47D6D9A3DE110A3EF9D41C86A78B45"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8ac8a820-35c6-4c77-9dee-5397a7d029f7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2258&$top=203&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2260&$top=201&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2262&$top=199&$maxpagesize=2"}' + headers: + apim-request-id: 1d9ef51f-14a5-4a21-95f1-5a4efbf80076 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:57 GMT + etag: '"BBD4A5644DD799CE3F433ED391CF445534D1C8938349E98451E7535C323D9E81"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1d9ef51f-14a5-4a21-95f1-5a4efbf80076 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2260&$top=201&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2262&$top=199&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2264&$top=197&$maxpagesize=2"}' + headers: + apim-request-id: b2fd9f70-10e2-4065-9516-240dbdee55d7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:57 GMT + etag: '"392238FFC4A4C6AFC7EC3A286CA63FEC615420DB14C5D0AB24FF1D1905A945A3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b2fd9f70-10e2-4065-9516-240dbdee55d7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2262&$top=199&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2264&$top=197&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2266&$top=195&$maxpagesize=2"}' + headers: + apim-request-id: ca98414d-8e70-4ab7-a6c4-43955677affb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:59 GMT + etag: '"0DFF447DC889304FDF8288F8BBF3BE8D4497A1FD0E9A78F37A98508582FAC3C8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ca98414d-8e70-4ab7-a6c4-43955677affb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2264&$top=197&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2266&$top=195&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2268&$top=193&$maxpagesize=2"}' + headers: + apim-request-id: 75aa9600-9739-4f60-8323-d0fd4d9dd729 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:59 GMT + etag: '"28E5805A78ACAD8441233B1564DE1BAE7AD98844D627664F09BF122F7FDF7D1E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 75aa9600-9739-4f60-8323-d0fd4d9dd729 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2266&$top=195&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2268&$top=193&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2270&$top=191&$maxpagesize=2"}' + headers: + apim-request-id: b49d9600-e5a3-4259-9be2-3898e084c710 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:59 GMT + etag: '"983A6B6D2E27B738B0AE94221F5275CBC94CD1A05E663A7C81A95AA6B1C06A90"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b49d9600-e5a3-4259-9be2-3898e084c710 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2268&$top=193&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2270&$top=191&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2272&$top=189&$maxpagesize=2"}' + headers: + apim-request-id: 5832e579-f3a9-43ee-8432-6c6b2eb6aba7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:59 GMT + etag: '"7A0E441CDA0FFFB8E532556F895CBFF7F2E6FC1E9BE497C9D90FA19B59950857"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5832e579-f3a9-43ee-8432-6c6b2eb6aba7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2270&$top=191&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2272&$top=189&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2274&$top=187&$maxpagesize=2"}' + headers: + apim-request-id: 6d900679-1003-461f-af0f-f7af405daaa1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:02:59 GMT + etag: '"E66B3B79D24DC27CFBEE56031012BB340FB805FD4AF4B195D74411E3E5037AA3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6d900679-1003-461f-af0f-f7af405daaa1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2272&$top=189&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2274&$top=187&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2276&$top=185&$maxpagesize=2"}' + headers: + apim-request-id: 138f9065-eb30-4d25-b20f-5fd9f41c606f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:00 GMT + etag: '"9464115E38B4ECFD973C3A9505BB27E9B37E1501C47F3F4500F700612FF5492D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 138f9065-eb30-4d25-b20f-5fd9f41c606f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2274&$top=187&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2276&$top=185&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2278&$top=183&$maxpagesize=2"}' + headers: + apim-request-id: 303cbc08-beba-4a91-9531-d4b773315a4c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:00 GMT + etag: '"72DCCE0E1C9E57A09B4EE0CE43AAA2BB6D3F7B5F29D8F5CEF4A4CECB3BCD0967"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 303cbc08-beba-4a91-9531-d4b773315a4c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2276&$top=185&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2278&$top=183&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2280&$top=181&$maxpagesize=2"}' + headers: + apim-request-id: 04bb7601-bc2e-4cbd-ba49-4d4fc4859590 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:00 GMT + etag: '"70BE73E0B48AEDD5A86F70F18C2B24B1E359084832D26C157D6D3914807D8DC8"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 04bb7601-bc2e-4cbd-ba49-4d4fc4859590 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2278&$top=183&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2280&$top=181&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2282&$top=179&$maxpagesize=2"}' + headers: + apim-request-id: 6a71c118-608a-4c1c-b6a7-d41629acb2b8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:00 GMT + etag: '"DC34ADE7E32AA9E3F7D7B1988848D5AE4C695644372B2CD6108FDB171DB1CB0D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6a71c118-608a-4c1c-b6a7-d41629acb2b8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2280&$top=181&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2282&$top=179&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2284&$top=177&$maxpagesize=2"}' + headers: + apim-request-id: c62265c7-0afb-483f-a491-c9f6436f2e84 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:00 GMT + etag: '"197708DC276248897BC903CA5870CCA75827ABAED2D4E5FB04A029B84DA47045"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c62265c7-0afb-483f-a491-c9f6436f2e84 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2282&$top=179&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2284&$top=177&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2286&$top=175&$maxpagesize=2"}' + headers: + apim-request-id: ba3909b9-c484-405a-8bf5-821cd5e636f2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:01 GMT + etag: '"71EC23D8650E3EBC0C3EAC72FABAB1E762BB03DF799F57BDA1AC6DC107ECF573"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ba3909b9-c484-405a-8bf5-821cd5e636f2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2284&$top=177&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2286&$top=175&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2288&$top=173&$maxpagesize=2"}' + headers: + apim-request-id: d0fa248d-1ad6-4f8b-a64a-6ff1e5e3c6be + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:01 GMT + etag: '"978CDFE693051377AC284D863B6BDB17DAFBC58B74D3B3FAA66AA2B969CF50A3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d0fa248d-1ad6-4f8b-a64a-6ff1e5e3c6be + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2286&$top=175&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2288&$top=173&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2290&$top=171&$maxpagesize=2"}' + headers: + apim-request-id: 002dfc7b-5ecf-4602-9566-11b0062b7652 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:01 GMT + etag: '"D86C36CF4107BBA45E3BCB30F3A345AC05FFAF01A0E7356A27061021D5BCBBF9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 002dfc7b-5ecf-4602-9566-11b0062b7652 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2288&$top=173&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2290&$top=171&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2292&$top=169&$maxpagesize=2"}' + headers: + apim-request-id: 4447b9da-4dff-44d9-91c5-9ad07d452558 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:01 GMT + etag: '"70E3DDABF544A1C1E5FB70B503049AB4565548FBE6F0427B5AED8815FC032CAB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4447b9da-4dff-44d9-91c5-9ad07d452558 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2290&$top=171&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2292&$top=169&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2294&$top=167&$maxpagesize=2"}' + headers: + apim-request-id: 316a963b-6d59-4312-a1b0-489f918e8b78 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:01 GMT + etag: '"5CEBFDC55B4581E15E5FDCCFBE31231CEB108E4A3732E4D7F2F5996765ABC3C5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 316a963b-6d59-4312-a1b0-489f918e8b78 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2292&$top=169&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2294&$top=167&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2296&$top=165&$maxpagesize=2"}' + headers: + apim-request-id: 01d5f5f5-efe8-4a3c-b4e9-04b46eb0506f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:02 GMT + etag: '"C425357D3246140EDE4CC6377EDEB338634CA99A89B1DD9DF1C4E15224B77AEF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 01d5f5f5-efe8-4a3c-b4e9-04b46eb0506f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2294&$top=167&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2296&$top=165&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2298&$top=163&$maxpagesize=2"}' + headers: + apim-request-id: 2f88ca09-9b10-434e-8072-444cbef2cda0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:02 GMT + etag: '"12BAB89DD72E5A44A4202C68928D9045A30CEBE9842BE9D8BDC8D21A0E4E1B9B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2f88ca09-9b10-434e-8072-444cbef2cda0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2296&$top=165&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2298&$top=163&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=161&$maxpagesize=2"}' + headers: + apim-request-id: 81903e51-17f5-4e95-a4de-eefec8d7f0ba + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:02 GMT + etag: '"445FEA26F494D09DBDC4729F394E146F7C96A5EF440B7CC53D6DE41697E4EBEE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 81903e51-17f5-4e95-a4de-eefec8d7f0ba + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2298&$top=163&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=161&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2302&$top=159&$maxpagesize=2"}' + headers: + apim-request-id: 81aa5642-f223-4465-b895-6f9ee5547d82 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:02 GMT + etag: '"7FDE14AF6DF780E8A0EDEA156831AB64AD33FCA506F4C7C71B1ECD362878BDCA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 81aa5642-f223-4465-b895-6f9ee5547d82 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2300&$top=161&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2302&$top=159&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2304&$top=157&$maxpagesize=2"}' + headers: + apim-request-id: d86e6005-83b3-4b5f-acb4-1dcf491b2789 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:02 GMT + etag: '"2FCA96BAD0624EEA02EFF336F8B9182711DA0CD7F0CE4E938B54B0A3DD5DF6BF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d86e6005-83b3-4b5f-acb4-1dcf491b2789 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2302&$top=159&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2304&$top=157&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2306&$top=155&$maxpagesize=2"}' + headers: + apim-request-id: cbb67379-7d31-41d9-b248-2284d676508b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:03 GMT + etag: '"A1CEA47E57CD0D7CAB1EA734904EEE4EBF4240855C3AC5C60DCEACE0CEF8F249"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cbb67379-7d31-41d9-b248-2284d676508b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2304&$top=157&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2306&$top=155&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2308&$top=153&$maxpagesize=2"}' + headers: + apim-request-id: fd3b6575-782f-423e-b97c-8d3d369f2859 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:03 GMT + etag: '"6A9174BB0F433917132F57C576C6E44DCEAE84E4950C33264836C9525FD8E8BE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fd3b6575-782f-423e-b97c-8d3d369f2859 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2306&$top=155&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2308&$top=153&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2310&$top=151&$maxpagesize=2"}' + headers: + apim-request-id: 1a8bddb9-c943-4c81-afd3-9e2951a65256 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:03 GMT + etag: '"1DA0ED2E47264FB86BBAEA0D61180791713E4F8A570DEEB35A21CE6601F7FB40"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1a8bddb9-c943-4c81-afd3-9e2951a65256 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2308&$top=153&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2310&$top=151&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2312&$top=149&$maxpagesize=2"}' + headers: + apim-request-id: a3b6f018-c78e-44b6-9f86-a214206bd437 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:03 GMT + etag: '"6E67BD0D5AD0FA2F84738CEEDF75A4288747E0C94BAE30B6EB3AC467C4E27F29"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a3b6f018-c78e-44b6-9f86-a214206bd437 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2310&$top=151&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2312&$top=149&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2314&$top=147&$maxpagesize=2"}' + headers: + apim-request-id: 6a7e0a02-be94-40d2-aa9e-59e1b0956ab6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:03 GMT + etag: '"ADC90F03B8C5C638CC9708AF4DA68F01BD01A7998FCC1DEEA2172A7FAAC81014"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6a7e0a02-be94-40d2-aa9e-59e1b0956ab6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2312&$top=149&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2314&$top=147&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2316&$top=145&$maxpagesize=2"}' + headers: + apim-request-id: c546dfec-81a7-437d-aeb0-ef882de26dcf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:04 GMT + etag: '"085742C38F360AB069B7CDC4478D2E376B1E8CE08E5D7F840B06B13D1F27C8FF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c546dfec-81a7-437d-aeb0-ef882de26dcf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2314&$top=147&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2316&$top=145&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2318&$top=143&$maxpagesize=2"}' + headers: + apim-request-id: 86e3e50a-cf21-4fe4-9c1e-4cf0a949e8ca + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:04 GMT + etag: '"12F1E447D97009833480486511AD38F820EB26BA51A01F967F18D463EBA33047"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 86e3e50a-cf21-4fe4-9c1e-4cf0a949e8ca + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2316&$top=145&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2318&$top=143&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2320&$top=141&$maxpagesize=2"}' + headers: + apim-request-id: ddbdd404-a648-442d-bfbe-27ac8ce66104 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:04 GMT + etag: '"A27CCE4A4EB2986AF6E2A888D28224EE5A1B9184F655E14535F1E7BE2286463C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ddbdd404-a648-442d-bfbe-27ac8ce66104 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2318&$top=143&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2320&$top=141&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2322&$top=139&$maxpagesize=2"}' + headers: + apim-request-id: 006ab519-baa5-49fe-a0f2-837b6e113788 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:04 GMT + etag: '"6B51EDAF56D889C7457A89A11A21313A1A07D7552F8719A776628A46BD669065"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 006ab519-baa5-49fe-a0f2-837b6e113788 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2320&$top=141&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2322&$top=139&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2324&$top=137&$maxpagesize=2"}' + headers: + apim-request-id: 10159a83-90a8-4294-a970-379a8bbae7d9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:04 GMT + etag: '"56EDAF607C3A9DD59E12DDD313B7DED40AEC44113CDA1824BB009CD29E8DE751"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 10159a83-90a8-4294-a970-379a8bbae7d9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2322&$top=139&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2324&$top=137&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2326&$top=135&$maxpagesize=2"}' + headers: + apim-request-id: 0b43700c-6227-45f9-8f1e-c201eae496b4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:05 GMT + etag: '"F57C83C9BB5B50797D03C30C830834EDDB4796DBC4EF456EBC1ABB1C17C4E8D0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0b43700c-6227-45f9-8f1e-c201eae496b4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2324&$top=137&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2326&$top=135&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2328&$top=133&$maxpagesize=2"}' + headers: + apim-request-id: 8c2c6785-ba70-4a89-9f2b-76f484763145 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:05 GMT + etag: '"3A7553B92314AD7ADB014B30AE8578383FF7969E161E23276DDEB7BDE0858AAF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8c2c6785-ba70-4a89-9f2b-76f484763145 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2326&$top=135&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2328&$top=133&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2330&$top=131&$maxpagesize=2"}' + headers: + apim-request-id: 3ccbf1ef-69cc-42e3-9016-469427ded4df + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:05 GMT + etag: '"859D28D8E28C18382819E516066E1A4599486E2B82087C9464379C45A2B8D843"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3ccbf1ef-69cc-42e3-9016-469427ded4df + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2328&$top=133&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2330&$top=131&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2332&$top=129&$maxpagesize=2"}' + headers: + apim-request-id: 8c224494-fda7-4e68-bcf6-9c3ff61e0cc6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:05 GMT + etag: '"0941F480E518167C69FFCD0A53E051589B5A264E79901A71D6CB3E0EB375046F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8c224494-fda7-4e68-bcf6-9c3ff61e0cc6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2330&$top=131&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2332&$top=129&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2334&$top=127&$maxpagesize=2"}' + headers: + apim-request-id: 917ccd65-1dd4-44f6-952d-d8bf81fe578f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:05 GMT + etag: '"A4F37D7E688C23E9CCC9DFE18B250C340F7D96DF5833F46F8929C7D0F8E18342"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 917ccd65-1dd4-44f6-952d-d8bf81fe578f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2332&$top=129&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2334&$top=127&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2336&$top=125&$maxpagesize=2"}' + headers: + apim-request-id: 6c7bfeb9-9c8b-493e-9612-10529f02db57 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:06 GMT + etag: '"2541A91F11A3AD718AA180319EA5665B467FE1E490551426AA5D20877B52E9DF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6c7bfeb9-9c8b-493e-9612-10529f02db57 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2334&$top=127&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2336&$top=125&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2338&$top=123&$maxpagesize=2"}' + headers: + apim-request-id: 55308b48-1af5-402c-b537-eed6dbbe1e07 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:06 GMT + etag: '"96F472FFD5A97FB94A2152E4B9792FC6E88CBEC90DF33EAE540F721AC85581AC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 55308b48-1af5-402c-b537-eed6dbbe1e07 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2336&$top=125&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2338&$top=123&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2340&$top=121&$maxpagesize=2"}' + headers: + apim-request-id: 5d8d28fb-8e0e-4f7b-be48-18f1ae4b3d09 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:06 GMT + etag: '"BFF3D43E068287019463396293A78BF10275D159EDA5D1FC1B21034E09210E83"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5d8d28fb-8e0e-4f7b-be48-18f1ae4b3d09 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2338&$top=123&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2340&$top=121&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2342&$top=119&$maxpagesize=2"}' + headers: + apim-request-id: 10ac076c-a4b2-47b8-8699-f297d246ee42 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:06 GMT + etag: '"2AD14A137EC7E580496A403FBDFDA45D93E9892DE746EEC6457E07145FC2C666"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 10ac076c-a4b2-47b8-8699-f297d246ee42 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2340&$top=121&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2342&$top=119&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2344&$top=117&$maxpagesize=2"}' + headers: + apim-request-id: 123d5953-257f-4d25-a09d-f1ce66d60271 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:07 GMT + etag: '"3C4BD47587009315880058E2D4913FEE6A5C4F15D3116385C7B41F64710740E5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 123d5953-257f-4d25-a09d-f1ce66d60271 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2342&$top=119&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2344&$top=117&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2346&$top=115&$maxpagesize=2"}' + headers: + apim-request-id: c5cc06d0-6dcc-447d-90a8-e9687b28f609 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:07 GMT + etag: '"D05424C1D3A17B2A2B631F25842E75D3AF52A34204D8A39E68CE43743BB12E83"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c5cc06d0-6dcc-447d-90a8-e9687b28f609 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2344&$top=117&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2346&$top=115&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2348&$top=113&$maxpagesize=2"}' + headers: + apim-request-id: 9fb50fd1-bb13-4a2b-b255-06c0bc9c1a9d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:07 GMT + etag: '"85CA95198533665DF9DC1D1FEA8E27D744668BA1C7789ACD949E2D1BF2DAFFA9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9fb50fd1-bb13-4a2b-b255-06c0bc9c1a9d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2346&$top=115&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2348&$top=113&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=111&$maxpagesize=2"}' + headers: + apim-request-id: f8ce771f-df96-4530-9de6-fd44d6306464 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:07 GMT + etag: '"D005A68428027421BAFE6514EC3BFE8CBD131FB56B63AFDB31972D177E7AD2DB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f8ce771f-df96-4530-9de6-fd44d6306464 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2348&$top=113&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=111&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2352&$top=109&$maxpagesize=2"}' + headers: + apim-request-id: 570dc65c-d8cd-4d4c-a523-20c1333876c2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:07 GMT + etag: '"72C5D4F33B27A2B80C0D9F154E9CDD04BFC134E94635CE1D0E33E373FCED7670"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 570dc65c-d8cd-4d4c-a523-20c1333876c2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2350&$top=111&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2352&$top=109&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2354&$top=107&$maxpagesize=2"}' + headers: + apim-request-id: 02b74c97-ecb2-4b7f-b52d-5c8e0f263d6a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:08 GMT + etag: '"652C2629912051550C9DD67CF7A58C5F1524FE5657A313972F9C54B298930C4E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 02b74c97-ecb2-4b7f-b52d-5c8e0f263d6a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2352&$top=109&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2354&$top=107&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2356&$top=105&$maxpagesize=2"}' + headers: + apim-request-id: ac79bb2a-ef3d-4ee5-9126-2f33ba6d1272 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:08 GMT + etag: '"A1EDECB14B08B8BCD4C29C871906448DFBC771D35DDAD349B57098AFC5C6B882"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ac79bb2a-ef3d-4ee5-9126-2f33ba6d1272 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2354&$top=107&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2356&$top=105&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2358&$top=103&$maxpagesize=2"}' + headers: + apim-request-id: d55cc12f-22c3-4dda-a588-e3ca5894aa88 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:08 GMT + etag: '"3DDE7032F14272072330C16785CA19ABA4EE3B3D667125A1AC8D06A4E1909B91"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d55cc12f-22c3-4dda-a588-e3ca5894aa88 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2356&$top=105&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2358&$top=103&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2360&$top=101&$maxpagesize=2"}' + headers: + apim-request-id: 4f2d29c0-376e-4487-96c8-2848d7befb25 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:08 GMT + etag: '"FEFF18530D46B24F1B7AB1F5B60DD82A5B3BF5B316D47A71DBDECFE0F31E4A47"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4f2d29c0-376e-4487-96c8-2848d7befb25 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2358&$top=103&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2360&$top=101&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2362&$top=99&$maxpagesize=2"}' + headers: + apim-request-id: 27fd8069-a109-48d5-a8f8-1cc546174835 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:09 GMT + etag: '"9121E4F89F5213676B3E4A890F6B3E4FB693717B02923CBFEDE73AE7F988C73D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 27fd8069-a109-48d5-a8f8-1cc546174835 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2360&$top=101&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2362&$top=99&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2364&$top=97&$maxpagesize=2"}' + headers: + apim-request-id: d89428ac-72d2-4423-a395-e883d05d3aa9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:09 GMT + etag: '"C881721614A5C18FB279EC18189621026760C28941D908E482F5BF4B5A253820"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d89428ac-72d2-4423-a395-e883d05d3aa9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2362&$top=99&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2364&$top=97&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2366&$top=95&$maxpagesize=2"}' + headers: + apim-request-id: 3f77677b-96a3-4674-90a3-fec754d3ca01 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:09 GMT + etag: '"145E6440B29134937EBA8337326C680767B762A832873529E4F7035230C5AEA7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3f77677b-96a3-4674-90a3-fec754d3ca01 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2364&$top=97&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2366&$top=95&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2368&$top=93&$maxpagesize=2"}' + headers: + apim-request-id: 8fbd76df-b577-4419-85af-caf5ffde46e5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:09 GMT + etag: '"073F54E87C1FF8195B09BD16F90F0C3D9CC11AF8F31693738277B8A2AF2F3386"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8fbd76df-b577-4419-85af-caf5ffde46e5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2366&$top=95&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2368&$top=93&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2370&$top=91&$maxpagesize=2"}' + headers: + apim-request-id: da5e5ad0-d477-4608-82b5-7299be1a25f2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:09 GMT + etag: '"1AAA4E36FBB0D4D0791181290E384920E467445742AB008744806EF6ACB51920"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: da5e5ad0-d477-4608-82b5-7299be1a25f2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2368&$top=93&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2370&$top=91&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2372&$top=89&$maxpagesize=2"}' + headers: + apim-request-id: 0797d109-c7f1-41ea-a156-b28d7454015f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:10 GMT + etag: '"0DA784855D9A69717CA92969D8FAFF5F051B288B53A18DCCF1088DC389A587FB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0797d109-c7f1-41ea-a156-b28d7454015f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2370&$top=91&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2372&$top=89&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2374&$top=87&$maxpagesize=2"}' + headers: + apim-request-id: 9b5330fa-15fa-4d99-8720-a2b5bdea1d9d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:10 GMT + etag: '"3455D62297B4F712B8E682B82760FF44C5ACF60665BE1EAA93F5FAA456703629"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9b5330fa-15fa-4d99-8720-a2b5bdea1d9d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2372&$top=89&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2374&$top=87&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2376&$top=85&$maxpagesize=2"}' + headers: + apim-request-id: e31959db-8a43-4a5a-af58-d9ad5c025400 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:10 GMT + etag: '"217EEE78B7C17620294B824E8FE371B1E179E083A4A8B1E31EC56B3904AF3F54"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e31959db-8a43-4a5a-af58-d9ad5c025400 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2374&$top=87&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2376&$top=85&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2378&$top=83&$maxpagesize=2"}' + headers: + apim-request-id: 0d9aa9ab-b658-42a3-9c50-0db2db23d79e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:10 GMT + etag: '"3FF19B7590E7F365CC8E6D503C6270C25A82656AAFB14C9A6DEE1E4EE5B78250"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0d9aa9ab-b658-42a3-9c50-0db2db23d79e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2376&$top=85&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2378&$top=83&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2380&$top=81&$maxpagesize=2"}' + headers: + apim-request-id: 75842722-e10a-46f0-b70f-03563bfa4658 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:11 GMT + etag: '"9ACCF991549A5387FB1B935DD1C3CE65809D2332B821092BB11424000FCB487B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 75842722-e10a-46f0-b70f-03563bfa4658 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2378&$top=83&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2380&$top=81&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2382&$top=79&$maxpagesize=2"}' + headers: + apim-request-id: 2d91ee6c-c9aa-4c8b-9292-be923661b335 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:11 GMT + etag: '"7147B22093B66624BFFC29C942CECD593D8189361F163B16AA917DB3F7FD5EEB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2d91ee6c-c9aa-4c8b-9292-be923661b335 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2380&$top=81&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2382&$top=79&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2384&$top=77&$maxpagesize=2"}' + headers: + apim-request-id: c3e409ed-b674-4e0c-bc27-668ebb800889 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:11 GMT + etag: '"D7E267F65AD160E2B9FD4DA1FF410602CA338928E13CBD27F22B67378CD22B2A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c3e409ed-b674-4e0c-bc27-668ebb800889 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2382&$top=79&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2384&$top=77&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2386&$top=75&$maxpagesize=2"}' + headers: + apim-request-id: e3518cef-8ef6-48db-aecf-b5c3d0f50348 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:11 GMT + etag: '"A19AA46D313B5A727269C5389EC93CA2DE5145462811E0A593AED0FB237591A8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e3518cef-8ef6-48db-aecf-b5c3d0f50348 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2384&$top=77&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2386&$top=75&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2388&$top=73&$maxpagesize=2"}' + headers: + apim-request-id: 5b5f63bf-571b-4aa5-a2cc-bfcbc970fad6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:11 GMT + etag: '"562FEE74B9652A5D105DA80BFFE99F139492D8A1EA1F4290E8B35D9DB3B65E7F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5b5f63bf-571b-4aa5-a2cc-bfcbc970fad6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2386&$top=75&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2388&$top=73&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2390&$top=71&$maxpagesize=2"}' + headers: + apim-request-id: 5ca05ab9-c0d8-482a-9f5f-521b443ba5db + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:12 GMT + etag: '"F7A5E3C0B0B2E65ABC2209687C47191AB6B63612BC6BFB307327DD43AC6F4B74"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5ca05ab9-c0d8-482a-9f5f-521b443ba5db + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2388&$top=73&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2390&$top=71&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2392&$top=69&$maxpagesize=2"}' + headers: + apim-request-id: ba2b797e-2c06-4057-bad5-b4d258ca4fdb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:12 GMT + etag: '"38D490B2BD2419F2E6D4F38B17438B8C2B9B846A5E170944CE2C8D0CE5F94422"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ba2b797e-2c06-4057-bad5-b4d258ca4fdb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2390&$top=71&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2392&$top=69&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2394&$top=67&$maxpagesize=2"}' + headers: + apim-request-id: 117df5d0-2e29-46c2-9ac9-bd6f1b5e8eb2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:12 GMT + etag: '"A810B2A33DB19FAC5B157A510126D074506884EF141DB8AEB4A1D7D954F79CEA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 117df5d0-2e29-46c2-9ac9-bd6f1b5e8eb2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2392&$top=69&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2394&$top=67&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2396&$top=65&$maxpagesize=2"}' + headers: + apim-request-id: 8f07c429-1e34-4c9e-8b79-c621386e902c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:12 GMT + etag: '"0E7F1A0958123FED65C08CF6FB7F3409F1FF2FC98CC0005357780D2DC48C0C5D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8f07c429-1e34-4c9e-8b79-c621386e902c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2394&$top=67&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2396&$top=65&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2398&$top=63&$maxpagesize=2"}' + headers: + apim-request-id: 3d0db2a4-e648-47ed-adfe-b572ce13a459 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:12 GMT + etag: '"6E63C5CF77DD0CBD40B33DBB461B9F8999DD880411E587E5816BAE0B6549556F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3d0db2a4-e648-47ed-adfe-b572ce13a459 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2396&$top=65&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2398&$top=63&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=61&$maxpagesize=2"}' + headers: + apim-request-id: 74a5c0e6-aafa-4a54-ae5c-0542e538615d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:13 GMT + etag: '"324D57BB4999AA49ED8268F9F68169ECDB2B58E476746584006EC5425499E8CF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 74a5c0e6-aafa-4a54-ae5c-0542e538615d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2398&$top=63&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=61&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2402&$top=59&$maxpagesize=2"}' + headers: + apim-request-id: 9588890b-3796-43af-9b11-0e0830486170 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:13 GMT + etag: '"B2FE5825F02D615B50B2EFE1E68B8930FE8F0144BA70BA886D5A764A811B96C2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9588890b-3796-43af-9b11-0e0830486170 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2400&$top=61&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2402&$top=59&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2404&$top=57&$maxpagesize=2"}' + headers: + apim-request-id: 17af6a59-a5ee-4f9f-bb13-cb66505bdbad + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:13 GMT + etag: '"C6F7FF4059B1EEB6A82A2B5480F188C968BD6C3EE989943F5473EB1E5CDC51BA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 17af6a59-a5ee-4f9f-bb13-cb66505bdbad + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2402&$top=59&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2404&$top=57&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2406&$top=55&$maxpagesize=2"}' + headers: + apim-request-id: bd301e21-8ee3-4982-a327-d5834cc69e91 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:13 GMT + etag: '"7BD86AE1D03602840D259802E1D9D8A341D255674AAA2E7858A780279CAC42B1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bd301e21-8ee3-4982-a327-d5834cc69e91 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2404&$top=57&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2406&$top=55&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2408&$top=53&$maxpagesize=2"}' + headers: + apim-request-id: bbd46fc6-78c8-49f9-aaf8-29a95511e079 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:13 GMT + etag: '"8B7B9B0FC7C68F6E88E919F14C3B6F698164CF050F09DD3C50668EA05DDAAA01"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bbd46fc6-78c8-49f9-aaf8-29a95511e079 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2406&$top=55&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2408&$top=53&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2410&$top=51&$maxpagesize=2"}' + headers: + apim-request-id: 13ca6996-9a4d-4c78-83a2-2506c7017cdc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:14 GMT + etag: '"6F88DE449C5DB0A8A0075F422E8FE105B3BFA223296687F519129EAE80794970"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 13ca6996-9a4d-4c78-83a2-2506c7017cdc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2408&$top=53&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2410&$top=51&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2412&$top=49&$maxpagesize=2"}' + headers: + apim-request-id: 954aa72b-1088-4d5a-b6be-6b2922e8023c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:14 GMT + etag: '"5F2435B720175425F2BFAD43EAEBB12E2552FF36E77C6C71B50A919FED02A621"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 954aa72b-1088-4d5a-b6be-6b2922e8023c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2410&$top=51&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2412&$top=49&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2414&$top=47&$maxpagesize=2"}' + headers: + apim-request-id: b7b4d7d9-c4fd-4b0e-b3ae-b5438fbc1baf + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:14 GMT + etag: '"541420B251BB466B8674D598A48E6F4C9226424366B8D06935F8D4E219C23399"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b7b4d7d9-c4fd-4b0e-b3ae-b5438fbc1baf + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2412&$top=49&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2414&$top=47&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2416&$top=45&$maxpagesize=2"}' + headers: + apim-request-id: 4018c39d-94cc-4924-aaca-1de0f54bbd8c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:14 GMT + etag: '"90852B257277FEC370B83A016D675EBAFE84671ACCF9D38325F0D16DF9975842"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4018c39d-94cc-4924-aaca-1de0f54bbd8c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2414&$top=47&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2416&$top=45&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2418&$top=43&$maxpagesize=2"}' + headers: + apim-request-id: 300096c1-d341-4c42-a2dc-e91a5fb7a85b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:14 GMT + etag: '"BECC7F6E1F70FD3B1C7FE210254A224A57304BB2A4453BB440316F5A7CE458F0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 300096c1-d341-4c42-a2dc-e91a5fb7a85b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2416&$top=45&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2418&$top=43&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2420&$top=41&$maxpagesize=2"}' + headers: + apim-request-id: c4b73f89-4631-4d5d-bcae-7ba5ce6b6421 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:15 GMT + etag: '"5B6BA4B79AD7CC754F795599C8FEF2B1F2550618FB7F1A90F29884C7C83D6DDC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c4b73f89-4631-4d5d-bcae-7ba5ce6b6421 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2418&$top=43&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2420&$top=41&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2422&$top=39&$maxpagesize=2"}' + headers: + apim-request-id: 575bfba5-c9d9-4825-9d7f-5330dd57d28d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:15 GMT + etag: '"9BF225685167594CBF68C83170CBA86509B87C85EFB4AC560D9B599EE163AC4E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 575bfba5-c9d9-4825-9d7f-5330dd57d28d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2420&$top=41&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2422&$top=39&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2424&$top=37&$maxpagesize=2"}' + headers: + apim-request-id: f458b44a-b2ab-4463-b6b0-5bdc1823e4e4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:15 GMT + etag: '"C730F1D38BEF805AEECB4CE0EA865934DA76FDF5E6CF30B5F3B04FB25C9BFD72"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f458b44a-b2ab-4463-b6b0-5bdc1823e4e4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2422&$top=39&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2424&$top=37&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2426&$top=35&$maxpagesize=2"}' + headers: + apim-request-id: 52d4d63b-d286-45d3-919c-957c59d1a7f6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:15 GMT + etag: '"F947CBFFC03D9B3AFAB8EA33CD2499F15A34EB79AD59AC2B7AC74CFCD2F0FA28"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 52d4d63b-d286-45d3-919c-957c59d1a7f6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2424&$top=37&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2426&$top=35&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2428&$top=33&$maxpagesize=2"}' + headers: + apim-request-id: 6921a32a-65be-41a2-9c52-6171b6bacc08 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:16 GMT + etag: '"57B30653D27E8625EA64D53F231AB9C3200C5B8E121C5DA8EFC58985B9AB1F5A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6921a32a-65be-41a2-9c52-6171b6bacc08 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2426&$top=35&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2428&$top=33&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2430&$top=31&$maxpagesize=2"}' + headers: + apim-request-id: 0b73387b-d03d-43ad-8e72-892c54321244 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:16 GMT + etag: '"0A34B39027FF4D89316F46E2AC7A8DBEE8A2F6A93BD9DF8EE421453C104A14D3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0b73387b-d03d-43ad-8e72-892c54321244 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2428&$top=33&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2430&$top=31&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2432&$top=29&$maxpagesize=2"}' + headers: + apim-request-id: 4ccee2bf-8de8-43ce-9989-076e0d72c9fa + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:16 GMT + etag: '"1D36E2D96316A68B4E8EDA7100176D90CAFB2C5460712BD809F3F3D5E7789238"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4ccee2bf-8de8-43ce-9989-076e0d72c9fa + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2430&$top=31&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2432&$top=29&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2434&$top=27&$maxpagesize=2"}' + headers: + apim-request-id: bbc3f851-873e-427c-af1e-ac5c127abe8a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:16 GMT + etag: '"332C6B1F64D14302C2E84F787C1AA60A921EA0297E61DD031BDB8AC732BE5672"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bbc3f851-873e-427c-af1e-ac5c127abe8a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2432&$top=29&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2434&$top=27&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2436&$top=25&$maxpagesize=2"}' + headers: + apim-request-id: 06d5b6c8-ab2b-4108-9630-0b769cd7af86 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:17 GMT + etag: '"681FB9F0E40C8058F918EF577704B6098FA74402146273E6D11056AB87CED591"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 06d5b6c8-ab2b-4108-9630-0b769cd7af86 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2434&$top=27&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2436&$top=25&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2438&$top=23&$maxpagesize=2"}' + headers: + apim-request-id: 989912e9-0dea-445d-97b2-1a1e932f55b6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:17 GMT + etag: '"2A0A1375D7477B0076A49123C2F7484DF9207970E10E6FD308E1D47B1329FCD5"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 989912e9-0dea-445d-97b2-1a1e932f55b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2436&$top=25&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2438&$top=23&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2440&$top=21&$maxpagesize=2"}' + headers: + apim-request-id: 101e2fe0-7a01-44c7-ba26-8739074ab609 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:17 GMT + etag: '"136B1387BF5D5BFE87C21B12F1BC7AA0E5EF484472DB83A6D505E5F3B5E239AB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 101e2fe0-7a01-44c7-ba26-8739074ab609 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2438&$top=23&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2440&$top=21&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2442&$top=19&$maxpagesize=2"}' + headers: + apim-request-id: 95b78cd0-66fb-46ff-b264-1e809900c8f1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:17 GMT + etag: '"A5240656D0A9A4E02CB024FCE3DA03E96E1F34CB0B08C9912DD83AEA593C72F2"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 95b78cd0-66fb-46ff-b264-1e809900c8f1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2440&$top=21&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2442&$top=19&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2444&$top=17&$maxpagesize=2"}' + headers: + apim-request-id: b6bb5995-9e2e-4d45-bdaa-919d0e136c3d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:17 GMT + etag: '"8AF2BE3E2DF8860D73E91E3CB4385D750AAF39CCC5A1395CE3CF0F37359A1BFE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b6bb5995-9e2e-4d45-bdaa-919d0e136c3d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2442&$top=19&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2444&$top=17&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2446&$top=15&$maxpagesize=2"}' + headers: + apim-request-id: f8f40e8a-8aa0-4786-a06f-1c1ecd13f0ea + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:18 GMT + etag: '"91808F4127C90BCDE3B8D682516E98483CEBEA7E46526DDBC858626521B77730"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f8f40e8a-8aa0-4786-a06f-1c1ecd13f0ea + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2444&$top=17&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2446&$top=15&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2448&$top=13&$maxpagesize=2"}' + headers: + apim-request-id: ecba8fb8-5e41-4e3e-84c5-3010d5c2ce49 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:18 GMT + etag: '"CC641D5D8D3EEFA6724C2435CD89EC15D2673CBB62571ED955513D9BCF1B107C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ecba8fb8-5e41-4e3e-84c5-3010d5c2ce49 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2446&$top=15&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2448&$top=13&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2450&$top=11&$maxpagesize=2"}' + headers: + apim-request-id: 13b34fd9-0f63-47bb-a988-908e7144647a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:18 GMT + etag: '"A1498C770880C696A19768AB40361B8528C31400D6288F1C4DE56FA3EF1B9A47"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 13b34fd9-0f63-47bb-a988-908e7144647a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2448&$top=13&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2450&$top=11&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2452&$top=9&$maxpagesize=2"}' + headers: + apim-request-id: 6f5f9e18-290a-4570-8cf8-f834e171fbda + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:18 GMT + etag: '"371FDB0402AAED3942A4B5ADA6214A736394AC4009AE875DE009B2B48BF58E21"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6f5f9e18-290a-4570-8cf8-f834e171fbda + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2450&$top=11&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2452&$top=9&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2454&$top=7&$maxpagesize=2"}' + headers: + apim-request-id: a3e92a58-fbdf-4764-b86b-5dcd2d1d9375 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:18 GMT + etag: '"823DEC59297EEC4FDC65620271F9888A36AB63955344C85FEB423579F61499A0"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a3e92a58-fbdf-4764-b86b-5dcd2d1d9375 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2452&$top=9&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2454&$top=7&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2456&$top=5&$maxpagesize=2"}' + headers: + apim-request-id: 04eb5690-4e4e-4390-80f2-856e39c550a2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:19 GMT + etag: '"C6E7972932E786B0D6FC66275389B92560840F23C124C2E40A5BBB7E318B3441"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 04eb5690-4e4e-4390-80f2-856e39c550a2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2454&$top=7&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2456&$top=5&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2458&$top=3&$maxpagesize=2"}' + headers: + apim-request-id: 017283a3-4689-43df-bc51-1b59885328a3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:19 GMT + etag: '"3E54ADF26AAD60F513F3FABD17AEA9F3381FF0540A101865FB0D306A02531E0B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 017283a3-4689-43df-bc51-1b59885328a3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2456&$top=5&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2458&$top=3&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2460&$top=1&$maxpagesize=2"}' + headers: + apim-request-id: e16cb485-557b-4235-b41a-6424b26bc455 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:19 GMT + etag: '"4E17BCA8B8658979955F6D50FB5D3CFC485943DE6D2CDEB4A1C1F5BBF6E0B16A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e16cb485-557b-4235-b41a-6424b26bc455 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2458&$top=3&$maxpagesize=2 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2460&$top=1&$maxpagesize=2 + response: + body: + string: '{"value":[{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: 83a3405a-cb1a-4328-b2aa-6a4a0caa309b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:19 GMT + etag: '"4F9726C7084CEDCFB7A5FDD97801A1F62B6767FC48E3DA134B7501268ACBF15E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 83a3405a-cb1a-4328-b2aa-6a4a0caa309b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2460&$top=1&$maxpagesize=2 +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_with_skip.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_with_skip.yaml new file mode 100644 index 000000000000..f417c18793b1 --- /dev/null +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_list_submitted_jobs_async.test_list_submitted_jobs_with_skip.yaml @@ -0,0 +1,5514 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:20 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9b3159e7-0e74-4cf1-b710-4c77a684087f?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:21 GMT + etag: + - '"0x8D910D261C0EBEC"' + last-modified: + - Thu, 06 May 2021 21:03:21 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9b3159e7-0e74-4cf1-b710-4c77a684087f/a1360fef-9aa5-4693-b5dc-b1937245dbf7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:21 GMT + etag: + - '"0x8D910D261E4F183"' + last-modified: + - Thu, 06 May 2021 21:03:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9b3159e7-0e74-4cf1-b710-4c77a684087f/5bab0632-88f4-491c-a442-80514a55f9e9.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:22 GMT + etag: + - '"0x8D910D2620921FD"' + last-modified: + - Thu, 06 May 2021 21:03:22 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:22 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target5dc3d648-f056-4294-b7d6-dc75359a8889?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:22 GMT + etag: + - '"0x8D910D262988194"' + last-modified: + - Thu, 06 May 2021 21:03:23 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9b3159e7-0e74-4cf1-b710-4c77a684087f?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5dc3d648-f056-4294-b7d6-dc75359a8889?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: bef7d1d2-dc04-4a3c-a143-17696b8dd0e1 + content-length: '0' + date: Thu, 06 May 2021 21:03:23 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/31294d05-59e9-427e-944b-db3a43804720 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bef7d1d2-dc04-4a3c-a143-17696b8dd0e1 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/31294d05-59e9-427e-944b-db3a43804720 + response: + body: + string: '{"id":"31294d05-59e9-427e-944b-db3a43804720","createdDateTimeUtc":"2021-05-06T21:03:24.147877Z","lastActionDateTimeUtc":"2021-05-06T21:03:24.1478774Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: e52e48fb-4e33-49bd-ab42-17b9a719bdb0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:23 GMT + etag: '"5C9C344BE1E891DE61C3A5180EB4847C4321686CEAE1C1D556D3E81AAD723683"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e52e48fb-4e33-49bd-ab42-17b9a719bdb0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/31294d05-59e9-427e-944b-db3a43804720 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:24 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcccf60f58-b212-4d6b-aad6-a510b24cd1b9?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:25 GMT + etag: + - '"0x8D910D263CA6F4C"' + last-modified: + - Thu, 06 May 2021 21:03:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcccf60f58-b212-4d6b-aad6-a510b24cd1b9/2fde3941-a04b-441a-b07f-de0da997587a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:25 GMT + etag: + - '"0x8D910D263EEDC3A"' + last-modified: + - Thu, 06 May 2021 21:03:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcccf60f58-b212-4d6b-aad6-a510b24cd1b9/4703cdf5-22cb-4587-ae8a-9e4542c1d634.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:25 GMT + etag: + - '"0x8D910D264130C9B"' + last-modified: + - Thu, 06 May 2021 21:03:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:25 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetfd0da5e1-977d-46fb-b07d-7222bd3d009c?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:25 GMT + etag: + - '"0x8D910D264A65ACD"' + last-modified: + - Thu, 06 May 2021 21:03:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcccf60f58-b212-4d6b-aad6-a510b24cd1b9?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetfd0da5e1-977d-46fb-b07d-7222bd3d009c?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 0066eb61-cf92-46e1-b625-a62f768e1ff4 + content-length: '0' + date: Thu, 06 May 2021 21:03:26 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0523864c-52b3-4e7f-b2c3-61f857800ebb + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0066eb61-cf92-46e1-b625-a62f768e1ff4 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0523864c-52b3-4e7f-b2c3-61f857800ebb + response: + body: + string: '{"id":"0523864c-52b3-4e7f-b2c3-61f857800ebb","createdDateTimeUtc":"2021-05-06T21:03:26.9408557Z","lastActionDateTimeUtc":"2021-05-06T21:03:26.940856Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 806ef643-be88-458e-aeea-9e91a7e36ce4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:26 GMT + etag: '"5571BEFA04E739A2D44C3E98E5461464DCAA2D5F419B7249977EBBAB148B3045"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 806ef643-be88-458e-aeea-9e91a7e36ce4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0523864c-52b3-4e7f-b2c3-61f857800ebb +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:27 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src1f7f7927-b4ed-4651-a3af-a794aed05d3d?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:27 GMT + etag: + - '"0x8D910D2655F2D45"' + last-modified: + - Thu, 06 May 2021 21:03:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src1f7f7927-b4ed-4651-a3af-a794aed05d3d/046d5f8a-4113-4533-850b-40c94ca9a00f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:27 GMT + etag: + - '"0x8D910D265835A40"' + last-modified: + - Thu, 06 May 2021 21:03:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src1f7f7927-b4ed-4651-a3af-a794aed05d3d/e635a8d9-6ea6-43a3-85ab-4e79989e0a33.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:27 GMT + etag: + - '"0x8D910D265A986E4"' + last-modified: + - Thu, 06 May 2021 21:03:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:28 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target8b4901b8-be2d-46e9-9ce2-73f3e00689d9?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:29 GMT + etag: + - '"0x8D910D2663965C5"' + last-modified: + - Thu, 06 May 2021 21:03:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src1f7f7927-b4ed-4651-a3af-a794aed05d3d?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target8b4901b8-be2d-46e9-9ce2-73f3e00689d9?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: fc0dd997-56c3-4e7c-8c5c-050cd8a6e00d + content-length: '0' + date: Thu, 06 May 2021 21:03:28 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/70abb984-dd0c-4e40-8628-ce387bc80f73 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fc0dd997-56c3-4e7c-8c5c-050cd8a6e00d + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/70abb984-dd0c-4e40-8628-ce387bc80f73 + response: + body: + string: '{"id":"70abb984-dd0c-4e40-8628-ce387bc80f73","createdDateTimeUtc":"2021-05-06T21:03:29.5926807Z","lastActionDateTimeUtc":"2021-05-06T21:03:29.5926811Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 17607b34-8541-489f-99ad-f306824bba47 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:29 GMT + etag: '"F22B5DFC0DC09EEC4F6DDAE195057F17B27B9CDFA4819E02DC49439A645A3294"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 17607b34-8541-489f-99ad-f306824bba47 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/70abb984-dd0c-4e40-8628-ce387bc80f73 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:29 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3b531fa6-6274-4b9f-806f-ffccedb82802?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:30 GMT + etag: + - '"0x8D910D266FB5254"' + last-modified: + - Thu, 06 May 2021 21:03:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:30 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3b531fa6-6274-4b9f-806f-ffccedb82802/04c4a972-6ed6-40c5-8232-cb3e3b759d93.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:30 GMT + etag: + - '"0x8D910D26720DADD"' + last-modified: + - Thu, 06 May 2021 21:03:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src3b531fa6-6274-4b9f-806f-ffccedb82802/1620de08-9091-4076-add3-93ed20496f34.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:30 GMT + etag: + - '"0x8D910D26748B563"' + last-modified: + - Thu, 06 May 2021 21:03:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:31 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetdce85c0b-9109-4a62-a74b-2318faaaba9e?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:32 GMT + etag: + - '"0x8D910D267D72F52"' + last-modified: + - Thu, 06 May 2021 21:03:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3b531fa6-6274-4b9f-806f-ffccedb82802?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetdce85c0b-9109-4a62-a74b-2318faaaba9e?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 6146aa0e-ac58-4118-9ecf-168724e0f9a9 + content-length: '0' + date: Thu, 06 May 2021 21:03:32 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/630c5d77-b4f7-4148-93b6-7b70c36be404 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6146aa0e-ac58-4118-9ecf-168724e0f9a9 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/630c5d77-b4f7-4148-93b6-7b70c36be404 + response: + body: + string: '{"id":"630c5d77-b4f7-4148-93b6-7b70c36be404","createdDateTimeUtc":"2021-05-06T21:03:32.286981Z","lastActionDateTimeUtc":"2021-05-06T21:03:32.2869813Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 7a5cd71b-583f-4e5a-a6f0-db32eb52c50d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:32 GMT + etag: '"0D49C2B1905A58024DFD1B9C4CFBD6CC98D4AF846F02BABD61E47131A8DD2FCC"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7a5cd71b-583f-4e5a-a6f0-db32eb52c50d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/630c5d77-b4f7-4148-93b6-7b70c36be404 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:32 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src0e163d30-d759-4d54-8727-c70e9398ed96?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:32 GMT + etag: + - '"0x8D910D268971B9B"' + last-modified: + - Thu, 06 May 2021 21:03:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:33 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src0e163d30-d759-4d54-8727-c70e9398ed96/e3a97364-4d11-4a60-b8a2-65487d4100eb.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:32 GMT + etag: + - '"0x8D910D268BE5B37"' + last-modified: + - Thu, 06 May 2021 21:03:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:33 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src0e163d30-d759-4d54-8727-c70e9398ed96/540c86e3-0a43-4d3e-956f-bf616ffff5e1.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:33 GMT + etag: + - '"0x8D910D268E5241E"' + last-modified: + - Thu, 06 May 2021 21:03:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:34 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target2efec72c-5e6c-4de7-922e-edb43d9af348?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:34 GMT + etag: + - '"0x8D910D269752108"' + last-modified: + - Thu, 06 May 2021 21:03:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src0e163d30-d759-4d54-8727-c70e9398ed96?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2efec72c-5e6c-4de7-922e-edb43d9af348?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: bc1ea71f-caab-431b-8611-16a5a9caf70a + content-length: '0' + date: Thu, 06 May 2021 21:03:34 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/efb5b85d-4c87-4a14-a8e3-5bdbca7c56ef + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bc1ea71f-caab-431b-8611-16a5a9caf70a + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/efb5b85d-4c87-4a14-a8e3-5bdbca7c56ef + response: + body: + string: '{"id":"efb5b85d-4c87-4a14-a8e3-5bdbca7c56ef","createdDateTimeUtc":"2021-05-06T21:03:35.0078181Z","lastActionDateTimeUtc":"2021-05-06T21:03:35.0078184Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 3a0a1f62-7957-4fab-9faf-6189d46368f6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:35 GMT + etag: '"69B038EC3C78C3DF63D73C925DDFC4F03343D6DD35342482D1877628BA31075F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3a0a1f62-7957-4fab-9faf-6189d46368f6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/efb5b85d-4c87-4a14-a8e3-5bdbca7c56ef +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:35 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc8699a02-5cd1-48b3-8fdd-68941134bd38?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:36 GMT + etag: + - '"0x8D910D26A35E753"' + last-modified: + - Thu, 06 May 2021 21:03:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:36 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc8699a02-5cd1-48b3-8fdd-68941134bd38/853e539b-29ed-4d41-a380-d562a30099ac.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:36 GMT + etag: + - '"0x8D910D26A5B185F"' + last-modified: + - Thu, 06 May 2021 21:03:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:36 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcc8699a02-5cd1-48b3-8fdd-68941134bd38/73e2095b-d555-428a-898e-b0eebb9d56ef.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:36 GMT + etag: + - '"0x8D910D26A7F96F2"' + last-modified: + - Thu, 06 May 2021 21:03:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:36 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target102b7563-9a03-42c4-89a4-e178d974e658?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:36 GMT + etag: + - '"0x8D910D26B140800"' + last-modified: + - Thu, 06 May 2021 21:03:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc8699a02-5cd1-48b3-8fdd-68941134bd38?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target102b7563-9a03-42c4-89a4-e178d974e658?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: c5456079-6e34-4372-80fe-9d67b18c31be + content-length: '0' + date: Thu, 06 May 2021 21:03:37 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8e6f59e6-2ed2-42b1-a34d-d69fa027fde0 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c5456079-6e34-4372-80fe-9d67b18c31be + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8e6f59e6-2ed2-42b1-a34d-d69fa027fde0 + response: + body: + string: '{"id":"8e6f59e6-2ed2-42b1-a34d-d69fa027fde0","createdDateTimeUtc":"2021-05-06T21:03:37.7256229Z","lastActionDateTimeUtc":"2021-05-06T21:03:37.7256232Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 40b2451a-cdb7-47e3-a0ca-b55d6490b614 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:37 GMT + etag: '"4E1169B9EC438E734E097E15363A2C9A1DE9F79E8C24C2961F60CF9F7E60114D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 40b2451a-cdb7-47e3-a0ca-b55d6490b614 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8e6f59e6-2ed2-42b1-a34d-d69fa027fde0 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:37 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce5884901-92fc-4fdc-9ad3-79a9cf040c65?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:37 GMT + etag: + - '"0x8D910D26BD4869E"' + last-modified: + - Thu, 06 May 2021 21:03:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:38 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce5884901-92fc-4fdc-9ad3-79a9cf040c65/4bf77e5a-40b6-4801-b4ea-d0c71c1f8309.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:38 GMT + etag: + - '"0x8D910D26BFA6DD3"' + last-modified: + - Thu, 06 May 2021 21:03:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:39 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srce5884901-92fc-4fdc-9ad3-79a9cf040c65/54ccc279-8e02-4edb-8d10-7b24e8f8ad2a.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:38 GMT + etag: + - '"0x8D910D26C2136BE"' + last-modified: + - Thu, 06 May 2021 21:03:39 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:39 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target44a57f0a-247e-4c6b-8e9a-4792af685348?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:39 GMT + etag: + - '"0x8D910D26CB4845A"' + last-modified: + - Thu, 06 May 2021 21:03:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce5884901-92fc-4fdc-9ad3-79a9cf040c65?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target44a57f0a-247e-4c6b-8e9a-4792af685348?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 0a94d6e3-2085-479d-9e7d-38ab4d7be5af + content-length: '0' + date: Thu, 06 May 2021 21:03:40 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/69f7e7d4-1e2b-4444-8892-4c77fc318e52 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0a94d6e3-2085-479d-9e7d-38ab4d7be5af + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69f7e7d4-1e2b-4444-8892-4c77fc318e52 + response: + body: + string: '{"id":"69f7e7d4-1e2b-4444-8892-4c77fc318e52","createdDateTimeUtc":"2021-05-06T21:03:40.4495291Z","lastActionDateTimeUtc":"2021-05-06T21:03:40.4495294Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 9e1c539d-5f30-4682-9eb8-913f620cec9e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:40 GMT + etag: '"6E419C6F5C9B6F1E06AACBF102B05F152D2865420D2B7AB3905FFBFD35480BB1"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9e1c539d-5f30-4682-9eb8-913f620cec9e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/69f7e7d4-1e2b-4444-8892-4c77fc318e52 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:40 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9f7ea618-9bc6-45f9-bacc-c5bfba9a532c?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:41 GMT + etag: + - '"0x8D910D26D703254"' + last-modified: + - Thu, 06 May 2021 21:03:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:41 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9f7ea618-9bc6-45f9-bacc-c5bfba9a532c/673ac443-fd88-4104-b1f8-94063dbe93ec.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:41 GMT + etag: + - '"0x8D910D26D957CFA"' + last-modified: + - Thu, 06 May 2021 21:03:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:41 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src9f7ea618-9bc6-45f9-bacc-c5bfba9a532c/39ad7f38-fa1a-4851-8dc8-9a18b28441ca.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:41 GMT + etag: + - '"0x8D910D26DBCE241"' + last-modified: + - Thu, 06 May 2021 21:03:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:42 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target83c814a0-9ecd-483c-9816-86638d4b9f93?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:42 GMT + etag: + - '"0x8D910D26E49BBB8"' + last-modified: + - Thu, 06 May 2021 21:03:42 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9f7ea618-9bc6-45f9-bacc-c5bfba9a532c?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target83c814a0-9ecd-483c-9816-86638d4b9f93?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '484' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: f6240bbc-0b35-4c28-b6ff-909353111f87 + content-length: '0' + date: Thu, 06 May 2021 21:03:42 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8a8fd341-a775-4c2e-91a1-a126c68a214a + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f6240bbc-0b35-4c28-b6ff-909353111f87 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8a8fd341-a775-4c2e-91a1-a126c68a214a + response: + body: + string: '{"id":"8a8fd341-a775-4c2e-91a1-a126c68a214a","createdDateTimeUtc":"2021-05-06T21:03:43.0997116Z","lastActionDateTimeUtc":"2021-05-06T21:03:43.0997119Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 72993700-cd1c-45eb-8166-f3695672cc09 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:42 GMT + etag: '"1DCDE4C078F77E06C1E3721EA59D8D0381E755A86C16DED95864A65CA6AE31B6"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 72993700-cd1c-45eb-8166-f3695672cc09 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8a8fd341-a775-4c2e-91a1-a126c68a214a +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:43 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5d74997a-62e8-4e89-98a0-703225cc0be3?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:44 GMT + etag: + - '"0x8D910D26F0C523B"' + last-modified: + - Thu, 06 May 2021 21:03:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:44 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5d74997a-62e8-4e89-98a0-703225cc0be3/668cca5b-e364-49a1-9ae7-1f4adbf70f38.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:44 GMT + etag: + - '"0x8D910D26F3064D2"' + last-modified: + - Thu, 06 May 2021 21:03:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:44 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/src5d74997a-62e8-4e89-98a0-703225cc0be3/e6016e80-9972-484d-a897-15a419c34cb7.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:44 GMT + etag: + - '"0x8D910D26F544700"' + last-modified: + - Thu, 06 May 2021 21:03:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:44 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/targetc0a5fb4e-a462-4184-8681-f001d581da0b?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:44 GMT + etag: + - '"0x8D910D26FEAF6AF"' + last-modified: + - Thu, 06 May 2021 21:03:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5d74997a-62e8-4e89-98a0-703225cc0be3?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc0a5fb4e-a462-4184-8681-f001d581da0b?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '486' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: 6e247661-1a3d-4cf7-b7b4-c8022c82fc43 + content-length: '0' + date: Thu, 06 May 2021 21:03:45 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/edd525e0-ccf8-42d0-9ab3-34b50a70b999 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6e247661-1a3d-4cf7-b7b4-c8022c82fc43 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/edd525e0-ccf8-42d0-9ab3-34b50a70b999 + response: + body: + string: '{"id":"edd525e0-ccf8-42d0-9ab3-34b50a70b999","createdDateTimeUtc":"2021-05-06T21:03:45.8358177Z","lastActionDateTimeUtc":"2021-05-06T21:03:45.835818Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 3c7c5ea4-e849-4036-8a18-8e8cdc395379 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:45 GMT + etag: '"4464873EA756DFB45DA3C3E8903E1665E12197EB4D239B034A321182A2E4115B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3c7c5ea4-e849-4036-8a18-8e8cdc395379 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/edd525e0-ccf8-42d0-9ab3-34b50a70b999 +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:46 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb3e17100-e128-415b-8543-4ee810e8bac6?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:46 GMT + etag: + - '"0x8D910D270AABB92"' + last-modified: + - Thu, 06 May 2021 21:03:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb3e17100-e128-415b-8543-4ee810e8bac6/68d97621-2cc3-4519-b743-c132fc62934d.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:46 GMT + etag: + - '"0x8D910D270CEA899"' + last-modified: + - Thu, 06 May 2021 21:03:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: This is written in english. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '27' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Thu, 06 May 2021 21:03:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/srcb3e17100-e128-415b-8543-4ee810e8bac6/68f57f9d-55f8-4f4b-90d1-7b98959d400f.txt + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - mYgA0QpY6baiB+xZp8Hk+A== + date: + - Thu, 06 May 2021 21:03:46 GMT + etag: + - '"0x8D910D270F34E49"' + last-modified: + - Thu, 06 May 2021 21:03:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - NB4xBtawP6g= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 06 May 2021 21:03:47 GMT + x-ms-version: + - '2020-06-12' + method: PUT + uri: https://redacted.blob.core.windows.net/target13646cfe-c498-43d6-8637-9927b0ab5233?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 06 May 2021 21:03:47 GMT + etag: + - '"0x8D910D271872D54"' + last-modified: + - Thu, 06 May 2021 21:03:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-06-12' + status: + code: 201 + message: Created +- request: + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb3e17100-e128-415b-8543-4ee810e8bac6?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target13646cfe-c498-43d6-8637-9927b0ab5233?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}]}' + headers: + Accept: + - application/json + Content-Length: + - '488' + Content-Type: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches + response: + body: + string: '' + headers: + apim-request-id: ea8d9021-4a5b-4268-861d-0abb38690fc5 + content-length: '0' + date: Thu, 06 May 2021 21:03:48 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c111ec4d-2b7f-4860-937e-6ebd5050c8f1 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ea8d9021-4a5b-4268-861d-0abb38690fc5 + status: + code: 202 + message: Accepted + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c111ec4d-2b7f-4860-937e-6ebd5050c8f1 + response: + body: + string: '{"id":"c111ec4d-2b7f-4860-937e-6ebd5050c8f1","createdDateTimeUtc":"2021-05-06T21:03:48.614413Z","lastActionDateTimeUtc":"2021-05-06T21:03:48.6144133Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 2e608824-7da9-40a9-b232-c4f7187fbcf6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:48 GMT + etag: '"A18C724CA208463D93F1C77B54D7DF863FE9474C1094965627D6B65619327311"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2e608824-7da9-40a9-b232-c4f7187fbcf6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c111ec4d-2b7f-4860-937e-6ebd5050c8f1 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=0 + response: + body: + string: '{"value":[{"id":"c111ec4d-2b7f-4860-937e-6ebd5050c8f1","createdDateTimeUtc":"2021-05-06T21:03:48.614413Z","lastActionDateTimeUtc":"2021-05-06T21:03:48.6144133Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"edd525e0-ccf8-42d0-9ab3-34b50a70b999","createdDateTimeUtc":"2021-05-06T21:03:45.8358177Z","lastActionDateTimeUtc":"2021-05-06T21:03:48.4540904Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a8fd341-a775-4c2e-91a1-a126c68a214a","createdDateTimeUtc":"2021-05-06T21:03:43.0997116Z","lastActionDateTimeUtc":"2021-05-06T21:03:45.3632227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69f7e7d4-1e2b-4444-8892-4c77fc318e52","createdDateTimeUtc":"2021-05-06T21:03:40.4495291Z","lastActionDateTimeUtc":"2021-05-06T21:03:44.6681637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e6f59e6-2ed2-42b1-a34d-d69fa027fde0","createdDateTimeUtc":"2021-05-06T21:03:37.7256229Z","lastActionDateTimeUtc":"2021-05-06T21:03:41.420639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"efb5b85d-4c87-4a14-a8e3-5bdbca7c56ef","createdDateTimeUtc":"2021-05-06T21:03:35.0078181Z","lastActionDateTimeUtc":"2021-05-06T21:03:38.9198271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"630c5d77-b4f7-4148-93b6-7b70c36be404","createdDateTimeUtc":"2021-05-06T21:03:32.286981Z","lastActionDateTimeUtc":"2021-05-06T21:03:35.4660949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"70abb984-dd0c-4e40-8628-ce387bc80f73","createdDateTimeUtc":"2021-05-06T21:03:29.5926807Z","lastActionDateTimeUtc":"2021-05-06T21:03:32.9246546Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0523864c-52b3-4e7f-b2c3-61f857800ebb","createdDateTimeUtc":"2021-05-06T21:03:26.9408557Z","lastActionDateTimeUtc":"2021-05-06T21:03:30.3652183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31294d05-59e9-427e-944b-db3a43804720","createdDateTimeUtc":"2021-05-06T21:03:24.147877Z","lastActionDateTimeUtc":"2021-05-06T21:03:27.6952335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75ecb4fe-5de4-47a8-8b50-90e53ce440f0","createdDateTimeUtc":"2021-05-06T20:59:28.4047813Z","lastActionDateTimeUtc":"2021-05-06T20:59:30.9844082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c019799-b8d8-4cfd-8bce-eca46b238d68","createdDateTimeUtc":"2021-05-06T20:59:25.6789126Z","lastActionDateTimeUtc":"2021-05-06T20:59:27.9455469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bca7f36-f3fd-4c26-bbce-a279d5610c42","createdDateTimeUtc":"2021-05-06T20:59:22.9690782Z","lastActionDateTimeUtc":"2021-05-06T20:59:26.8725757Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"968914e8-2d0d-4c9b-833b-403f2b07f6dd","createdDateTimeUtc":"2021-05-06T20:59:20.2920313Z","lastActionDateTimeUtc":"2021-05-06T20:59:27.0663636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce338428-7949-4c70-8822-f3bb311a1038","createdDateTimeUtc":"2021-05-06T20:59:17.5841951Z","lastActionDateTimeUtc":"2021-05-06T20:59:27.0533447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a4f5555-35fb-474c-8922-0008ffcd494b","createdDateTimeUtc":"2021-05-06T20:59:00.7075172Z","lastActionDateTimeUtc":"2021-05-06T20:59:03.1154272Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e87a8292-4ddf-4cac-8202-e5730c6ac695","createdDateTimeUtc":"2021-05-06T20:58:58.1025028Z","lastActionDateTimeUtc":"2021-05-06T20:59:01.5470346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82ef605d-508b-4a19-9110-fe42b96821bf","createdDateTimeUtc":"2021-05-06T20:58:55.4656903Z","lastActionDateTimeUtc":"2021-05-06T20:59:01.6275304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"13b69fe6-9f91-423d-9512-643db7332a70","createdDateTimeUtc":"2021-05-06T20:58:38.9863162Z","lastActionDateTimeUtc":"2021-05-06T20:58:41.5510814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"894f7cd0-05c2-4094-9d24-a1a70a731125","createdDateTimeUtc":"2021-05-06T20:58:36.2463614Z","lastActionDateTimeUtc":"2021-05-06T20:58:38.4372218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf4b572f-7707-4c4d-943c-cf18f40a39ab","createdDateTimeUtc":"2021-05-06T20:58:33.5701587Z","lastActionDateTimeUtc":"2021-05-06T20:58:36.5001712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b2fca25-8bf1-4431-8bc1-1a7babddc9a2","createdDateTimeUtc":"2021-05-06T20:58:19.0337516Z","lastActionDateTimeUtc":"2021-05-06T20:58:21.8144695Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7e4cd5d1-e661-48af-a391-ad95d730b900","createdDateTimeUtc":"2021-05-06T20:58:16.5051919Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.7950799Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2746f514-19d1-4536-9945-77fe255d40d2","createdDateTimeUtc":"2021-05-06T20:58:14.0274925Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.6398519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec30fae6-fba2-4a8e-828b-916d756e2e58","createdDateTimeUtc":"2021-05-06T20:58:11.4798699Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.4816552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"807faa20-00cb-4fd5-b544-c2dc39400ff8","createdDateTimeUtc":"2021-05-06T20:58:09.0174165Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.3253271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:58:01.2382957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:51.4943893Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:44.4905271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:37.4676643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1109c823-471e-4942-9d7f-f257db54611c","createdDateTimeUtc":"2021-05-06T20:57:29.4018947Z","lastActionDateTimeUtc":"2021-05-06T20:57:31.729452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee05021f-bce7-4c0e-b00f-7eb1cb54225b","createdDateTimeUtc":"2021-05-06T20:57:26.3856659Z","lastActionDateTimeUtc":"2021-05-06T20:57:28.692327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"994ae2f8-f8a2-402b-836e-6b4ae5f219b7","createdDateTimeUtc":"2021-05-06T20:57:23.6823591Z","lastActionDateTimeUtc":"2021-05-06T20:57:26.203164Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d73f47d7-8a61-467a-8d35-951391ec7429","createdDateTimeUtc":"2021-05-06T20:57:20.9908459Z","lastActionDateTimeUtc":"2021-05-06T20:57:25.6382834Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:57:01.1209204Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:54.0787865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15dd871e-9bac-4f5c-85b1-0cd334b4d2bb","createdDateTimeUtc":"2021-05-06T20:56:45.5040606Z","lastActionDateTimeUtc":"2021-05-06T20:56:47.1540091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:40.0552132Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:32.3788307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:25.6398593Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:14.9686929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:07.9680961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:56:00.883148Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:53.9401603Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25f69e11-fcc6-4bf5-b617-b029d533cd2c","createdDateTimeUtc":"2021-05-06T20:55:47.9352446Z","lastActionDateTimeUtc":"2021-05-06T20:55:51.2881259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05748afd-3609-4e61-ba24-79defa5516b1","createdDateTimeUtc":"2021-05-06T20:55:45.1927224Z","lastActionDateTimeUtc":"2021-05-06T20:55:48.1845579Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49eaa9cb-96e9-4b06-a36e-7c12685cd1d8","createdDateTimeUtc":"2021-05-06T20:55:42.3561935Z","lastActionDateTimeUtc":"2021-05-06T20:55:45.2155183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3491bd7b-faee-4cbf-988c-9e9dff6b5214","createdDateTimeUtc":"2021-05-06T20:55:25.5887053Z","lastActionDateTimeUtc":"2021-05-06T20:55:30.2964062Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a71f70b-97ab-4af6-858d-c7fb29a04365","createdDateTimeUtc":"2021-05-06T20:55:22.1332246Z","lastActionDateTimeUtc":"2021-05-06T20:55:26.8061623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e317b832-94ee-49aa-9bd0-93fbff05be0c","createdDateTimeUtc":"2021-05-06T20:55:18.586865Z","lastActionDateTimeUtc":"2021-05-06T20:55:23.2186936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2421&$maxpagesize=50"}' + headers: + apim-request-id: 60fcc42a-5dc3-4283-909d-802cdb9318fd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:48 GMT + etag: '"2632B4BC9CC02883AC5C55160D6B103ACF86175F8B77BFBD70C3E5B1574450C6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 60fcc42a-5dc3-4283-909d-802cdb9318fd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=0 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=50&$top=2421&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"6bd767a7-bb87-49cb-b588-18ed193a8c85","createdDateTimeUtc":"2021-05-06T20:55:15.1851317Z","lastActionDateTimeUtc":"2021-05-06T20:55:19.8840932Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8792cce1-19ea-4d45-9232-6739e9930a20","createdDateTimeUtc":"2021-05-06T20:55:11.6049885Z","lastActionDateTimeUtc":"2021-05-06T20:55:18.6714173Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"61dcde6e-cc80-4dd5-966d-837ba83e0ecb","createdDateTimeUtc":"2021-05-06T20:54:39.714637Z","lastActionDateTimeUtc":"2021-05-06T20:54:43.1491955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a078c47e-81d5-48a2-9bd0-2bb06781ed31","createdDateTimeUtc":"2021-05-06T20:54:37.0750245Z","lastActionDateTimeUtc":"2021-05-06T20:54:40.170261Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3d0ea5b8-4028-4368-9055-1909b1a48879","createdDateTimeUtc":"2021-05-06T20:54:34.4125052Z","lastActionDateTimeUtc":"2021-05-06T20:54:37.4692205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"984488d1-d483-4e43-a3bd-03c0ee927395","createdDateTimeUtc":"2021-05-06T20:54:31.7380529Z","lastActionDateTimeUtc":"2021-05-06T20:54:34.3520813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fa48f36-547c-4994-8457-59fb9e8409f7","createdDateTimeUtc":"2021-05-06T20:54:29.0375092Z","lastActionDateTimeUtc":"2021-05-06T20:54:32.4424323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bc07d0-942c-4273-992e-53ed54f806ed","createdDateTimeUtc":"2021-05-06T20:54:26.3866081Z","lastActionDateTimeUtc":"2021-05-06T20:54:29.33425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45f5e5e7-ae1e-44b3-adc4-6913cd5c8413","createdDateTimeUtc":"2021-05-06T20:54:23.7599762Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9593749d-938a-421f-a569-22abf0a93dad","createdDateTimeUtc":"2021-05-06T20:54:21.060224Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.115287Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a679740-861b-4230-a782-30c632a0f98a","createdDateTimeUtc":"2021-05-06T20:54:18.389999Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"704284cb-eef3-4719-a645-34bb5d3570ec","createdDateTimeUtc":"2021-05-06T20:54:15.7426458Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.5490811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:31.7799976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:28.6916857Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:27.2981028Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7455463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7237955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.6065399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.5123621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.0499248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2371&$maxpagesize=50"}' + headers: + apim-request-id: 399f7395-cf14-4ce9-b8c3-890cc71dd856 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:48 GMT + etag: '"64AFA31F7C0F9D8880777317B00E1B49868F53EFDC81FDB5BC6FE2F9593B0D00"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 399f7395-cf14-4ce9-b8c3-890cc71dd856 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=50&$top=2421&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=100&$top=2371&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2321&$maxpagesize=50"}' + headers: + apim-request-id: 828d1370-75cf-4e53-a7e4-9dc9fcaefd6d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:48 GMT + etag: '"F9E16218C0E302EBC0D552116339A5D586EFE9B47C9983448CE8A4B73FADDA33"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 828d1370-75cf-4e53-a7e4-9dc9fcaefd6d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=100&$top=2371&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=150&$top=2321&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2271&$maxpagesize=50"}' + headers: + apim-request-id: 31851dc5-be5f-4ef9-a1ce-67dfc6cb0b1e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:49 GMT + etag: '"BD083D6457A78586E4751D84ADAD7DEE5F9B93B37E15CB81AA2622B37E7B835E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 31851dc5-be5f-4ef9-a1ce-67dfc6cb0b1e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=150&$top=2321&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=200&$top=2271&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2221&$maxpagesize=50"}' + headers: + apim-request-id: 467d592c-707f-403a-a506-feb386aa9dbb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:49 GMT + etag: '"1EDC72DA171319E68DD54FF32F9F77EA68BC1BB4E395057006B92DF5633D2107"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 467d592c-707f-403a-a506-feb386aa9dbb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=200&$top=2271&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=250&$top=2221&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2171&$maxpagesize=50"}' + headers: + apim-request-id: 596e1a51-b31c-4b66-bfc9-d957bf53a83d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:49 GMT + etag: '"3046A2E7351240A6288DAA6AF89C7B044E3BA2E211F4F5CF2A710B3E8BC00420"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 596e1a51-b31c-4b66-bfc9-d957bf53a83d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=250&$top=2221&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=300&$top=2171&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2121&$maxpagesize=50"}' + headers: + apim-request-id: 0ba5f4df-0838-4aac-a6e0-8f0afaf7747c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:50 GMT + etag: '"5BBFA7A30E6F71114445B7E374CDCF8670FF89C789BC7C93CF8E41779536E368"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0ba5f4df-0838-4aac-a6e0-8f0afaf7747c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=300&$top=2171&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=350&$top=2121&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2071&$maxpagesize=50"}' + headers: + apim-request-id: ea8851c4-7baf-4f71-913e-aff35dbc33b6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:50 GMT + etag: '"8B2A80DF8C11A2FF16215D00968AE7FD3338ACAB7B85F01EAB75D68B5BEA3B5A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ea8851c4-7baf-4f71-913e-aff35dbc33b6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=350&$top=2121&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=400&$top=2071&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=2021&$maxpagesize=50"}' + headers: + apim-request-id: 1d2c92f1-c536-4789-bfb1-5fea8da3ebed + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:50 GMT + etag: '"990FF8799893EC6B4B5DA521737D0FBB57FE4AB12A3F27836F97D8651E81A1D6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1d2c92f1-c536-4789-bfb1-5fea8da3ebed + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=400&$top=2071&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=450&$top=2021&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1971&$maxpagesize=50"}' + headers: + apim-request-id: 59abe0aa-585c-4319-9702-b2b2a3947b75 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:51 GMT + etag: '"A25135587E170C39A4DD4BA882EEF6D8DE180EFF2D19446B4BA411CA2C425AC0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 59abe0aa-585c-4319-9702-b2b2a3947b75 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=450&$top=2021&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=500&$top=1971&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1921&$maxpagesize=50"}' + headers: + apim-request-id: 56442418-d3b3-4b88-80e9-836e684fa052 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:51 GMT + etag: '"97CE3FB6BD7C8BE4F93103655908A7ABC1833C20C3B6E4BF91947525A22B942D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 56442418-d3b3-4b88-80e9-836e684fa052 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=500&$top=1971&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=550&$top=1921&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1871&$maxpagesize=50"}' + headers: + apim-request-id: 03cdf158-2c17-4c7e-96e7-565630faf5f7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:51 GMT + etag: '"AA3F7D9331F77A3F290644D207E73E456C62C2F724894F4F485AC1E4F4AC104F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 03cdf158-2c17-4c7e-96e7-565630faf5f7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=550&$top=1921&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=600&$top=1871&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1821&$maxpagesize=50"}' + headers: + apim-request-id: a4915954-fa85-41d1-a731-cf79b47dd96d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:51 GMT + etag: '"8BBE7AF91077D08B3491C00F46CE261D4D9EA8608BA7602FC91F82351A56D3F6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a4915954-fa85-41d1-a731-cf79b47dd96d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=600&$top=1871&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=650&$top=1821&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1771&$maxpagesize=50"}' + headers: + apim-request-id: 955ebaf9-da04-4dcc-ad31-6e93fab635b2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:52 GMT + etag: '"0773FDB4F21FFB1B4E9AAA7F50021607C83B43C0E73611483F3FCA00CEA1B72D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 955ebaf9-da04-4dcc-ad31-6e93fab635b2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=650&$top=1821&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=700&$top=1771&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1721&$maxpagesize=50"}' + headers: + apim-request-id: d08fce61-b5e6-448e-91d0-36fcc98ffbbd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:52 GMT + etag: '"448DAA57C46B0365EFBCDA05A9F06FC7629AB311186937C271390834982CDF78"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d08fce61-b5e6-448e-91d0-36fcc98ffbbd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=700&$top=1771&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=750&$top=1721&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1671&$maxpagesize=50"}' + headers: + apim-request-id: 3b91a6d4-175b-48a6-9c21-6ee5709ed02c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:52 GMT + etag: '"86C8D2D3698F0F94517488AFD1F10D346B72E94AE99FF8A56FB3BFCD9B03DB3E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3b91a6d4-175b-48a6-9c21-6ee5709ed02c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=750&$top=1721&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=800&$top=1671&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1621&$maxpagesize=50"}' + headers: + apim-request-id: d5723c70-c5ee-4b56-8af1-f7aea7936640 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:52 GMT + etag: '"2082AC140622DDEE0E9859F40284A325C2BA2AAF9CAD5087C2C9AF6160E76EB7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d5723c70-c5ee-4b56-8af1-f7aea7936640 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=800&$top=1671&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=850&$top=1621&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1571&$maxpagesize=50"}' + headers: + apim-request-id: 035157e6-974a-46b2-b835-58dfdb64c96e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:53 GMT + etag: '"19A2A2A526A4F1743E4236212092D3B8B564B0D93334E8E2088FEBAEE03F6865"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 035157e6-974a-46b2-b835-58dfdb64c96e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=850&$top=1621&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=900&$top=1571&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1521&$maxpagesize=50"}' + headers: + apim-request-id: f1d0fa6e-83a1-4a0a-8f95-8847d71a1ae4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:53 GMT + etag: '"57DC1A6932F4603087BB911095E5CDB5CC33BE3596C9D1203389054F96A6A21B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f1d0fa6e-83a1-4a0a-8f95-8847d71a1ae4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=900&$top=1571&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=950&$top=1521&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1471&$maxpagesize=50"}' + headers: + apim-request-id: 4f6aba6b-f7a8-4045-bc5b-347829eaaa8a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:53 GMT + etag: '"424AAD3712E30E162F224266E13C3C8BDBCBD44FA1E0F5560A0B01ECF34F0051"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4f6aba6b-f7a8-4045-bc5b-347829eaaa8a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=950&$top=1521&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1000&$top=1471&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1421&$maxpagesize=50"}' + headers: + apim-request-id: 69fa37e8-4384-40bf-baaa-59c6edeb9a20 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:54 GMT + etag: '"3A028FFEAD4F0DA814E2216E168120D8F329560F0EE22A7B8E694FE56D34542A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 69fa37e8-4384-40bf-baaa-59c6edeb9a20 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1000&$top=1471&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1050&$top=1421&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1371&$maxpagesize=50"}' + headers: + apim-request-id: 0e5eb421-0a41-4ccd-8282-5538ede0269e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:54 GMT + etag: '"F4343EE3983967F4C3851B695036E67A065E7F961E609084E511BE6EB7246811"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0e5eb421-0a41-4ccd-8282-5538ede0269e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1050&$top=1421&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1100&$top=1371&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1321&$maxpagesize=50"}' + headers: + apim-request-id: 5dc72455-c122-4427-bb03-49ad3b6f6ef9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:54 GMT + etag: '"463D5D0689200FA0D98875730FB97EF4E83A694DA9A05BF3019B7C06E7D2BC7D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5dc72455-c122-4427-bb03-49ad3b6f6ef9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1100&$top=1371&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1150&$top=1321&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1271&$maxpagesize=50"}' + headers: + apim-request-id: a324d1d7-b5d8-40f1-98e7-4520393c7a79 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:54 GMT + etag: '"270C19E257E123C0968F14621BD11FC9FD9C2678EBB49384ECC69D8236F0FA73"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a324d1d7-b5d8-40f1-98e7-4520393c7a79 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1150&$top=1321&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1200&$top=1271&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1221&$maxpagesize=50"}' + headers: + apim-request-id: f83943e8-31bd-49a5-8f16-99fffa10af4c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:55 GMT + etag: '"C9099BA641E857538D83878CCAA4E8014A8678F967C41804D8D10F4D1155FC4B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f83943e8-31bd-49a5-8f16-99fffa10af4c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1200&$top=1271&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1250&$top=1221&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1171&$maxpagesize=50"}' + headers: + apim-request-id: 835be96f-9e7c-4a1b-bbe1-df85f14c70ff + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:55 GMT + etag: '"9F525C8D7234E374B1C4265F0C2D07253C0DF6A54A0EC28A1C044F8A958540CE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 835be96f-9e7c-4a1b-bbe1-df85f14c70ff + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1250&$top=1221&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1300&$top=1171&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1121&$maxpagesize=50"}' + headers: + apim-request-id: 18c60997-8752-4a93-9d00-b9cdad47c13a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:55 GMT + etag: '"F8008400EDD81528712DDF402A4CF0AF588280785D4DB2F8FC033FA1070B8481"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 18c60997-8752-4a93-9d00-b9cdad47c13a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1300&$top=1171&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1350&$top=1121&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1071&$maxpagesize=50"}' + headers: + apim-request-id: f627b002-b2a8-45a9-82d7-0dc4da1e35f8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:55 GMT + etag: '"D1FC26B83ABFA5932C869D10B8A866BCBAA6B16BD5F4304A4C1C77633A122AA5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f627b002-b2a8-45a9-82d7-0dc4da1e35f8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1350&$top=1121&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1400&$top=1071&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=1021&$maxpagesize=50"}' + headers: + apim-request-id: 0bba6d1b-c716-49a3-ae13-9f0d3fd2e680 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:56 GMT + etag: '"3C134AD80FBE4F8ACD7F1B4A088534DCAC71DC75CF2A7919780E1D7440FD7258"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0bba6d1b-c716-49a3-ae13-9f0d3fd2e680 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1400&$top=1071&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1450&$top=1021&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=971&$maxpagesize=50"}' + headers: + apim-request-id: 2395d425-947d-4127-bca9-8a9bd6bb9b4e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:56 GMT + etag: '"F679EB7E22792A9A5398B10C095137F228E2265438CA6D5F75C16ADDB449FCFE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2395d425-947d-4127-bca9-8a9bd6bb9b4e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1450&$top=1021&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1500&$top=971&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=921&$maxpagesize=50"}' + headers: + apim-request-id: 90cde5f5-75f5-4e5d-83af-388896aa7772 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:56 GMT + etag: '"CE44901BDF576E6626D4F7743FF405B93E5A836F95DCCDA5B204C9758944C1F3"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 90cde5f5-75f5-4e5d-83af-388896aa7772 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1500&$top=971&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1550&$top=921&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=871&$maxpagesize=50"}' + headers: + apim-request-id: 736f4f2d-ab60-4e43-b6e4-4d21ed959b08 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:57 GMT + etag: '"07A1C3E89FCA9A6709F31BBED1B74E2DC30979D0311A160295C60BC0CE895C39"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 736f4f2d-ab60-4e43-b6e4-4d21ed959b08 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1550&$top=921&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1600&$top=871&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=821&$maxpagesize=50"}' + headers: + apim-request-id: 4e604c0f-4eb6-401b-9b21-24444b4ceac0 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:57 GMT + etag: '"C795853D652FF0261E9009E03E0A3923EE26D1F4C33EC7D7214123E6E74C6F65"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 4e604c0f-4eb6-401b-9b21-24444b4ceac0 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1600&$top=871&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1650&$top=821&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=771&$maxpagesize=50"}' + headers: + apim-request-id: 7877cda5-d2a6-4f99-a5c2-67542eacc2a1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:57 GMT + etag: '"133D93951DE1DBF04F824F8F62EF47A3E5A38A6FC0D05EA2CF86D8FE62D7A9FE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7877cda5-d2a6-4f99-a5c2-67542eacc2a1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1650&$top=821&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1700&$top=771&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=721&$maxpagesize=50"}' + headers: + apim-request-id: 27078bdc-2f11-4449-ba39-bb43991ce533 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:57 GMT + etag: '"A659109909ADE3D6EC105E1B845D171FDB7AC60668E65CE5972F9F6953DC8341"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 27078bdc-2f11-4449-ba39-bb43991ce533 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1700&$top=771&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1750&$top=721&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=671&$maxpagesize=50"}' + headers: + apim-request-id: c2be2fd0-07b7-49cb-ae51-8b7f14c6b624 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:58 GMT + etag: '"1B0640BC236F900FE1F70DD58EE20B92881E072726D1B925C7460F7CE0661446"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c2be2fd0-07b7-49cb-ae51-8b7f14c6b624 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1750&$top=721&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1800&$top=671&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=621&$maxpagesize=50"}' + headers: + apim-request-id: 7a02d191-3300-4fa9-b295-f1caf421822e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:58 GMT + etag: '"FE8501A81B7B1488BDBE0E55F6FC2EA44321511154615775897C3EB4857F2A82"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7a02d191-3300-4fa9-b295-f1caf421822e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1800&$top=671&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1850&$top=621&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=571&$maxpagesize=50"}' + headers: + apim-request-id: 6b94b19c-7a40-4f61-81c4-25148955c791 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:58 GMT + etag: '"B702FEAFB32D9501DFFBC97E85BB4E67A19354BD295287180A387A28973D9185"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6b94b19c-7a40-4f61-81c4-25148955c791 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1850&$top=621&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1900&$top=571&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=521&$maxpagesize=50"}' + headers: + apim-request-id: 19546b72-833b-4135-bce5-2e3ab1ae5c65 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:59 GMT + etag: '"2E403384C011A81E7A92EE2F4C9711E98D9FD675A95E0B7C2D189BB2BDD0B327"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 19546b72-833b-4135-bce5-2e3ab1ae5c65 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1900&$top=571&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1950&$top=521&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=471&$maxpagesize=50"}' + headers: + apim-request-id: 157d7f8c-c2ea-4041-abbb-126727b92d49 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:59 GMT + etag: '"F210BA41B62009A2875F1655F1BC3B27377D3586A1EC2D1A46F92B780457FCE5"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 157d7f8c-c2ea-4041-abbb-126727b92d49 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1950&$top=521&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2000&$top=471&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=421&$maxpagesize=50"}' + headers: + apim-request-id: f8097b26-5d1b-4b56-8a13-fef678a092a2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:59 GMT + etag: '"75270AF0DD21C167C7D1029676F46C4A1218D9C26CCC532F209ED39898C1CF05"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f8097b26-5d1b-4b56-8a13-fef678a092a2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2000&$top=471&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2050&$top=421&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=371&$maxpagesize=50"}' + headers: + apim-request-id: dd857119-a5b0-4fbd-b6c4-aecd3b5a5b01 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:03:59 GMT + etag: '"B1E9076DAC22E42C2C00167EFD464E7421D4096E176949503EC9E0A1B7FAACFF"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dd857119-a5b0-4fbd-b6c4-aecd3b5a5b01 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2050&$top=421&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2100&$top=371&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=321&$maxpagesize=50"}' + headers: + apim-request-id: 400a45b4-1012-436f-849a-f9ce8406ecf5 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:00 GMT + etag: '"62FFE87989B500EC6AC2A0B508AC2260A7F01D72F05DE76AA0266434AE3A5A92"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 400a45b4-1012-436f-849a-f9ce8406ecf5 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2100&$top=371&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2150&$top=321&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=271&$maxpagesize=50"}' + headers: + apim-request-id: 269efaae-4a9b-43ee-9cac-c69a6e742138 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:00 GMT + etag: '"BF4D4ADF097100A24C2F1D13E89F446F16350FA0510D63BBB68A6D6F0936F337"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 269efaae-4a9b-43ee-9cac-c69a6e742138 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2150&$top=321&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2200&$top=271&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=221&$maxpagesize=50"}' + headers: + apim-request-id: 5a5e2f35-e9ca-4b92-9f40-934682967deb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:00 GMT + etag: '"EF9E3B817BC6F44A89643B1146848E183176F20EA7E1C9C9C04E383531101864"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5a5e2f35-e9ca-4b92-9f40-934682967deb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2200&$top=271&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2250&$top=221&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=171&$maxpagesize=50"}' + headers: + apim-request-id: 06f1c8d5-9549-4dcc-96e8-cfb689133901 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:01 GMT + etag: '"4234372AC6C8A5508C0E3BE117B0C644B8BE0B8F262C1788A64934C359AE5482"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 06f1c8d5-9549-4dcc-96e8-cfb689133901 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2250&$top=221&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2300&$top=171&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=121&$maxpagesize=50"}' + headers: + apim-request-id: b119a3c4-37a2-46ef-b78d-fb10f4c61b8e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:01 GMT + etag: '"7F5DAD3BE8A85B05C13649E95A72E60068D6B84BEB695CC950FBEF7F377FA4D6"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b119a3c4-37a2-46ef-b78d-fb10f4c61b8e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2300&$top=171&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2350&$top=121&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=71&$maxpagesize=50"}' + headers: + apim-request-id: e4178461-b3f1-4efb-9cbb-5de65a58fbb9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:01 GMT + etag: '"9F14F7DC98EC2A12190D95A1DA11D4237A99A3FBEE1E8106DF077B8E9887D8AC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e4178461-b3f1-4efb-9cbb-5de65a58fbb9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2350&$top=121&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2400&$top=71&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2450&$top=21&$maxpagesize=50"}' + headers: + apim-request-id: d8e2a6ab-d0f5-48ec-9e1e-4c001d35e32f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:02 GMT + etag: '"1DD943C2DDB9D2C566B220EA867E43EB1411B2B634DAEB62080199601F604313"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d8e2a6ab-d0f5-48ec-9e1e-4c001d35e32f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2400&$top=71&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2450&$top=21&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: 18ddd480-f41e-4ba0-9d05-6205d1952ebb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:02 GMT + etag: '"8FADA998A31B7875C06897FC473B6EEDB845E404EE865B5A5BBC9EC66AAB6961"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 18ddd480-f41e-4ba0-9d05-6205d1952ebb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2450&$top=21&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=5 + response: + body: + string: '{"value":[{"id":"efb5b85d-4c87-4a14-a8e3-5bdbca7c56ef","createdDateTimeUtc":"2021-05-06T21:03:35.0078181Z","lastActionDateTimeUtc":"2021-05-06T21:03:38.9198271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"630c5d77-b4f7-4148-93b6-7b70c36be404","createdDateTimeUtc":"2021-05-06T21:03:32.286981Z","lastActionDateTimeUtc":"2021-05-06T21:03:35.4660949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"70abb984-dd0c-4e40-8628-ce387bc80f73","createdDateTimeUtc":"2021-05-06T21:03:29.5926807Z","lastActionDateTimeUtc":"2021-05-06T21:03:32.9246546Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0523864c-52b3-4e7f-b2c3-61f857800ebb","createdDateTimeUtc":"2021-05-06T21:03:26.9408557Z","lastActionDateTimeUtc":"2021-05-06T21:03:30.3652183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31294d05-59e9-427e-944b-db3a43804720","createdDateTimeUtc":"2021-05-06T21:03:24.147877Z","lastActionDateTimeUtc":"2021-05-06T21:03:27.6952335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75ecb4fe-5de4-47a8-8b50-90e53ce440f0","createdDateTimeUtc":"2021-05-06T20:59:28.4047813Z","lastActionDateTimeUtc":"2021-05-06T20:59:30.9844082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c019799-b8d8-4cfd-8bce-eca46b238d68","createdDateTimeUtc":"2021-05-06T20:59:25.6789126Z","lastActionDateTimeUtc":"2021-05-06T20:59:27.9455469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bca7f36-f3fd-4c26-bbce-a279d5610c42","createdDateTimeUtc":"2021-05-06T20:59:22.9690782Z","lastActionDateTimeUtc":"2021-05-06T20:59:26.8725757Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"968914e8-2d0d-4c9b-833b-403f2b07f6dd","createdDateTimeUtc":"2021-05-06T20:59:20.2920313Z","lastActionDateTimeUtc":"2021-05-06T20:59:27.0663636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce338428-7949-4c70-8822-f3bb311a1038","createdDateTimeUtc":"2021-05-06T20:59:17.5841951Z","lastActionDateTimeUtc":"2021-05-06T20:59:27.0533447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a4f5555-35fb-474c-8922-0008ffcd494b","createdDateTimeUtc":"2021-05-06T20:59:00.7075172Z","lastActionDateTimeUtc":"2021-05-06T20:59:03.1154272Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e87a8292-4ddf-4cac-8202-e5730c6ac695","createdDateTimeUtc":"2021-05-06T20:58:58.1025028Z","lastActionDateTimeUtc":"2021-05-06T20:59:01.5470346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82ef605d-508b-4a19-9110-fe42b96821bf","createdDateTimeUtc":"2021-05-06T20:58:55.4656903Z","lastActionDateTimeUtc":"2021-05-06T20:59:01.6275304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"13b69fe6-9f91-423d-9512-643db7332a70","createdDateTimeUtc":"2021-05-06T20:58:38.9863162Z","lastActionDateTimeUtc":"2021-05-06T20:58:41.5510814Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"894f7cd0-05c2-4094-9d24-a1a70a731125","createdDateTimeUtc":"2021-05-06T20:58:36.2463614Z","lastActionDateTimeUtc":"2021-05-06T20:58:38.4372218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf4b572f-7707-4c4d-943c-cf18f40a39ab","createdDateTimeUtc":"2021-05-06T20:58:33.5701587Z","lastActionDateTimeUtc":"2021-05-06T20:58:36.5001712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b2fca25-8bf1-4431-8bc1-1a7babddc9a2","createdDateTimeUtc":"2021-05-06T20:58:19.0337516Z","lastActionDateTimeUtc":"2021-05-06T20:58:21.8144695Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7e4cd5d1-e661-48af-a391-ad95d730b900","createdDateTimeUtc":"2021-05-06T20:58:16.5051919Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.7950799Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2746f514-19d1-4536-9945-77fe255d40d2","createdDateTimeUtc":"2021-05-06T20:58:14.0274925Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.6398519Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec30fae6-fba2-4a8e-828b-916d756e2e58","createdDateTimeUtc":"2021-05-06T20:58:11.4798699Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.4816552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"807faa20-00cb-4fd5-b544-c2dc39400ff8","createdDateTimeUtc":"2021-05-06T20:58:09.0174165Z","lastActionDateTimeUtc":"2021-05-06T20:58:19.3253271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4bc00374-b3d2-44b8-b1cf-7d154dde3988","createdDateTimeUtc":"2021-05-06T20:57:57.4057238Z","lastActionDateTimeUtc":"2021-05-06T20:58:01.2382957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cc455f7-d1e9-4315-8e10-419a015eade0","createdDateTimeUtc":"2021-05-06T20:57:50.0681456Z","lastActionDateTimeUtc":"2021-05-06T20:57:51.4943893Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42e3fbab-32df-431e-8e3d-3b66e0819764","createdDateTimeUtc":"2021-05-06T20:57:42.6455652Z","lastActionDateTimeUtc":"2021-05-06T20:57:44.4905271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1bde9877-50bd-4c4e-9ff7-11b4410f29f3","createdDateTimeUtc":"2021-05-06T20:57:35.4432321Z","lastActionDateTimeUtc":"2021-05-06T20:57:37.4676643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1109c823-471e-4942-9d7f-f257db54611c","createdDateTimeUtc":"2021-05-06T20:57:29.4018947Z","lastActionDateTimeUtc":"2021-05-06T20:57:31.729452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee05021f-bce7-4c0e-b00f-7eb1cb54225b","createdDateTimeUtc":"2021-05-06T20:57:26.3856659Z","lastActionDateTimeUtc":"2021-05-06T20:57:28.692327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"994ae2f8-f8a2-402b-836e-6b4ae5f219b7","createdDateTimeUtc":"2021-05-06T20:57:23.6823591Z","lastActionDateTimeUtc":"2021-05-06T20:57:26.203164Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d73f47d7-8a61-467a-8d35-951391ec7429","createdDateTimeUtc":"2021-05-06T20:57:20.9908459Z","lastActionDateTimeUtc":"2021-05-06T20:57:25.6382834Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4439275-8f04-4a6a-a5e7-071206cbd01f","createdDateTimeUtc":"2021-05-06T20:56:58.8902063Z","lastActionDateTimeUtc":"2021-05-06T20:57:01.1209204Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5430b39-1f05-4e25-baff-967baa57f03e","createdDateTimeUtc":"2021-05-06T20:56:51.5958822Z","lastActionDateTimeUtc":"2021-05-06T20:56:54.0787865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15dd871e-9bac-4f5c-85b1-0cd334b4d2bb","createdDateTimeUtc":"2021-05-06T20:56:45.5040606Z","lastActionDateTimeUtc":"2021-05-06T20:56:47.1540091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76a151d1-928d-44bb-883e-1e96f1efc75e","createdDateTimeUtc":"2021-05-06T20:56:38.1354335Z","lastActionDateTimeUtc":"2021-05-06T20:56:40.0552132Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9061db81-1ed0-4825-97db-a2e811c6c3c2","createdDateTimeUtc":"2021-05-06T20:56:30.8665605Z","lastActionDateTimeUtc":"2021-05-06T20:56:32.3788307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c493079-e70c-4b12-a191-6e0d8ac1a257","createdDateTimeUtc":"2021-05-06T20:56:21.3293028Z","lastActionDateTimeUtc":"2021-05-06T20:56:25.6398593Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fdf80ecf-184c-432e-a083-c042a1efdb59","createdDateTimeUtc":"2021-05-06T20:56:12.9797544Z","lastActionDateTimeUtc":"2021-05-06T20:56:14.9686929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"66239416-6882-4454-aac6-ef4ecd254002","createdDateTimeUtc":"2021-05-06T20:56:05.6282764Z","lastActionDateTimeUtc":"2021-05-06T20:56:07.9680961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"403694e3-f4f5-4def-826a-047021532273","createdDateTimeUtc":"2021-05-06T20:55:58.2530792Z","lastActionDateTimeUtc":"2021-05-06T20:56:00.883148Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"202661bf-4549-49cb-8d76-b4b1cb0dd853","createdDateTimeUtc":"2021-05-06T20:55:51.0158756Z","lastActionDateTimeUtc":"2021-05-06T20:55:53.9401603Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25f69e11-fcc6-4bf5-b617-b029d533cd2c","createdDateTimeUtc":"2021-05-06T20:55:47.9352446Z","lastActionDateTimeUtc":"2021-05-06T20:55:51.2881259Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05748afd-3609-4e61-ba24-79defa5516b1","createdDateTimeUtc":"2021-05-06T20:55:45.1927224Z","lastActionDateTimeUtc":"2021-05-06T20:55:48.1845579Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"49eaa9cb-96e9-4b06-a36e-7c12685cd1d8","createdDateTimeUtc":"2021-05-06T20:55:42.3561935Z","lastActionDateTimeUtc":"2021-05-06T20:55:45.2155183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3491bd7b-faee-4cbf-988c-9e9dff6b5214","createdDateTimeUtc":"2021-05-06T20:55:25.5887053Z","lastActionDateTimeUtc":"2021-05-06T20:55:30.2964062Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8a71f70b-97ab-4af6-858d-c7fb29a04365","createdDateTimeUtc":"2021-05-06T20:55:22.1332246Z","lastActionDateTimeUtc":"2021-05-06T20:55:26.8061623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e317b832-94ee-49aa-9bd0-93fbff05be0c","createdDateTimeUtc":"2021-05-06T20:55:18.586865Z","lastActionDateTimeUtc":"2021-05-06T20:55:23.2186936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6bd767a7-bb87-49cb-b588-18ed193a8c85","createdDateTimeUtc":"2021-05-06T20:55:15.1851317Z","lastActionDateTimeUtc":"2021-05-06T20:55:19.8840932Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8792cce1-19ea-4d45-9232-6739e9930a20","createdDateTimeUtc":"2021-05-06T20:55:11.6049885Z","lastActionDateTimeUtc":"2021-05-06T20:55:18.6714173Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"61dcde6e-cc80-4dd5-966d-837ba83e0ecb","createdDateTimeUtc":"2021-05-06T20:54:39.714637Z","lastActionDateTimeUtc":"2021-05-06T20:54:43.1491955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a078c47e-81d5-48a2-9bd0-2bb06781ed31","createdDateTimeUtc":"2021-05-06T20:54:37.0750245Z","lastActionDateTimeUtc":"2021-05-06T20:54:40.170261Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3d0ea5b8-4028-4368-9055-1909b1a48879","createdDateTimeUtc":"2021-05-06T20:54:34.4125052Z","lastActionDateTimeUtc":"2021-05-06T20:54:37.4692205Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=55&$top=2416&$maxpagesize=50"}' + headers: + apim-request-id: 33782fa8-fdaa-4040-9297-94083b63ec83 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:02 GMT + etag: '"F7E5469B303C0BEAC6B48C5FC7FCD6C7942E71E02A028D8062A57BC25189EC7F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 33782fa8-fdaa-4040-9297-94083b63ec83 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=5 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=55&$top=2416&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"984488d1-d483-4e43-a3bd-03c0ee927395","createdDateTimeUtc":"2021-05-06T20:54:31.7380529Z","lastActionDateTimeUtc":"2021-05-06T20:54:34.3520813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fa48f36-547c-4994-8457-59fb9e8409f7","createdDateTimeUtc":"2021-05-06T20:54:29.0375092Z","lastActionDateTimeUtc":"2021-05-06T20:54:32.4424323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bc07d0-942c-4273-992e-53ed54f806ed","createdDateTimeUtc":"2021-05-06T20:54:26.3866081Z","lastActionDateTimeUtc":"2021-05-06T20:54:29.33425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45f5e5e7-ae1e-44b3-adc4-6913cd5c8413","createdDateTimeUtc":"2021-05-06T20:54:23.7599762Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120584Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9593749d-938a-421f-a569-22abf0a93dad","createdDateTimeUtc":"2021-05-06T20:54:21.060224Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.115287Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a679740-861b-4230-a782-30c632a0f98a","createdDateTimeUtc":"2021-05-06T20:54:18.389999Z","lastActionDateTimeUtc":"2021-05-06T20:54:27.5120641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"704284cb-eef3-4719-a645-34bb5d3570ec","createdDateTimeUtc":"2021-05-06T20:54:15.7426458Z","lastActionDateTimeUtc":"2021-05-06T20:54:24.5490811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7aa4b855-b152-4ca0-b411-29315804b5d6","createdDateTimeUtc":"2021-05-06T20:50:29.027644Z","lastActionDateTimeUtc":"2021-05-06T20:50:31.7799976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e6dabf1-2164-49fc-b28e-a4402507b57c","createdDateTimeUtc":"2021-05-06T20:50:26.3335298Z","lastActionDateTimeUtc":"2021-05-06T20:50:28.6916857Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39eef974-4ce8-44b6-8a56-a0f983f9efe7","createdDateTimeUtc":"2021-05-06T20:50:23.6063307Z","lastActionDateTimeUtc":"2021-05-06T20:50:27.2981028Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"376d9f56-edee-4906-a070-dc3f56f83b29","createdDateTimeUtc":"2021-05-06T20:50:20.8499122Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7455463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5adc00b1-b68a-400f-be26-b87f453a1f8e","createdDateTimeUtc":"2021-05-06T20:50:18.1489731Z","lastActionDateTimeUtc":"2021-05-06T20:50:26.7237955Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f23b700-d383-411b-87f8-0927b5b8622c","createdDateTimeUtc":"2021-05-06T20:50:01.3851856Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.6065399Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ee10ec1e-7738-44ba-9961-ede61f0ae1b1","createdDateTimeUtc":"2021-05-06T20:49:58.6984746Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.5123621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a7ad0d3-e9e7-42a2-a3ff-e58124e0414c","createdDateTimeUtc":"2021-05-06T20:49:56.0765118Z","lastActionDateTimeUtc":"2021-05-06T20:50:03.0499248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"efb0b1b5-17d0-4e69-9026-88779f0cdc3c","createdDateTimeUtc":"2021-05-06T20:49:38.7597329Z","lastActionDateTimeUtc":"2021-05-06T20:49:41.137152Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"56d8a3b2-3c42-4416-a410-653a32710dec","createdDateTimeUtc":"2021-05-06T20:49:36.0191796Z","lastActionDateTimeUtc":"2021-05-06T20:49:38.0637222Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2349f4a7-f128-4265-8d3f-afc3930493d0","createdDateTimeUtc":"2021-05-06T20:49:33.3469962Z","lastActionDateTimeUtc":"2021-05-06T20:49:36.9965665Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03ca4e88-556d-4f7d-a4ce-cc285d2ab4e2","createdDateTimeUtc":"2021-05-06T20:49:18.374092Z","lastActionDateTimeUtc":"2021-05-06T20:49:20.4628011Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"d5dc1957-827e-4b26-a495-830028fc8e66","createdDateTimeUtc":"2021-05-06T20:49:15.831454Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.2780172Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"95e9d75a-fc4c-428f-b673-709a556d78ec","createdDateTimeUtc":"2021-05-06T20:49:13.2937048Z","lastActionDateTimeUtc":"2021-05-06T20:49:19.1012904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea9a93cb-fb90-4935-8c52-3943a680dc7d","createdDateTimeUtc":"2021-05-06T20:49:10.7694029Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.9030236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade8ab17-08cb-4e2a-aa83-a383c442b6d5","createdDateTimeUtc":"2021-05-06T20:49:08.1929767Z","lastActionDateTimeUtc":"2021-05-06T20:49:18.7441791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f118b6d0-54ae-4148-89eb-ee9cba947c24","createdDateTimeUtc":"2021-05-06T20:49:02.0062071Z","lastActionDateTimeUtc":"2021-05-06T20:49:03.8567389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5e729aa0-e742-4f53-b5de-7d3b1607e029","createdDateTimeUtc":"2021-05-06T20:48:54.6183927Z","lastActionDateTimeUtc":"2021-05-06T20:48:56.8073784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"989f76ec-18d8-4f43-aa51-ad2ea3441bb9","createdDateTimeUtc":"2021-05-06T20:48:47.2256846Z","lastActionDateTimeUtc":"2021-05-06T20:48:49.8048012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a464eff-3e22-45af-9646-53ef84149ff8","createdDateTimeUtc":"2021-05-06T20:48:39.9559404Z","lastActionDateTimeUtc":"2021-05-06T20:48:42.7711243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfb0a85b-f0d5-4ed9-8e64-acb36044e72a","createdDateTimeUtc":"2021-05-06T20:48:32.5300009Z","lastActionDateTimeUtc":"2021-05-06T20:48:35.7483844Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"84b04606-6785-4c1f-b089-153c9ec64b79","createdDateTimeUtc":"2021-05-06T20:48:29.5424679Z","lastActionDateTimeUtc":"2021-05-06T20:48:32.8025465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8afe28f1-3ddd-4a53-be69-a52e14a17051","createdDateTimeUtc":"2021-05-06T20:48:26.9020102Z","lastActionDateTimeUtc":"2021-05-06T20:48:29.9444461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8d5887d1-ba65-4cbe-ada7-590d3cf06d67","createdDateTimeUtc":"2021-05-06T20:48:24.3337888Z","lastActionDateTimeUtc":"2021-05-06T20:48:28.859755Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c916cbd-bea2-46c0-ae76-e3ad88a0b30c","createdDateTimeUtc":"2021-05-06T20:48:01.2578471Z","lastActionDateTimeUtc":"2021-05-06T20:48:03.8351206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db79e12c-7aef-47bc-b62f-0057e5e76ac7","createdDateTimeUtc":"2021-05-06T20:47:53.8795719Z","lastActionDateTimeUtc":"2021-05-06T20:47:56.7595637Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1533c7ea-f404-42a4-91ac-e779f36c2cf1","createdDateTimeUtc":"2021-05-06T20:47:47.7866854Z","lastActionDateTimeUtc":"2021-05-06T20:47:49.7170061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7cbc9fee-2883-4f3f-9692-f5b9aa4c1a53","createdDateTimeUtc":"2021-05-06T20:47:40.5080136Z","lastActionDateTimeUtc":"2021-05-06T20:47:42.6469534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19bec24c-6b17-4d83-8666-5e448c058f2f","createdDateTimeUtc":"2021-05-06T20:47:33.2287128Z","lastActionDateTimeUtc":"2021-05-06T20:47:35.629103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c787e8c8-518f-4344-965e-990231e3f8c0","createdDateTimeUtc":"2021-05-06T20:47:25.8866079Z","lastActionDateTimeUtc":"2021-05-06T20:47:28.5919543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6524a3ae-aaec-4664-b16b-0cfb4cdeedbb","createdDateTimeUtc":"2021-05-06T20:47:19.6833095Z","lastActionDateTimeUtc":"2021-05-06T20:47:21.5448396Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f18e554-8aa1-4117-ab77-98a1bb9b5cbd","createdDateTimeUtc":"2021-05-06T20:47:12.3269079Z","lastActionDateTimeUtc":"2021-05-06T20:47:14.5587791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf54bd2e-24e0-433f-8b7d-b971f6f1cad8","createdDateTimeUtc":"2021-05-06T20:47:05.0225144Z","lastActionDateTimeUtc":"2021-05-06T20:47:07.5383479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"817733cb-ad05-4fe7-afba-dcfcd8dab6ab","createdDateTimeUtc":"2021-05-06T20:46:57.8414203Z","lastActionDateTimeUtc":"2021-05-06T20:47:00.5489919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"889169cf-a97e-4a2b-985d-cfa933485354","createdDateTimeUtc":"2021-05-06T20:46:54.7788865Z","lastActionDateTimeUtc":"2021-05-06T20:46:57.5664358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"277df52b-352c-4d78-82ef-707f5aaf6e5a","createdDateTimeUtc":"2021-05-06T20:46:52.0664752Z","lastActionDateTimeUtc":"2021-05-06T20:46:54.5467886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad4abcda-68f2-48d6-885b-753a9d9cc747","createdDateTimeUtc":"2021-05-06T20:46:49.3859407Z","lastActionDateTimeUtc":"2021-05-06T20:46:53.4892686Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f3eab49-5954-412a-aff9-e9d6bb88956b","createdDateTimeUtc":"2021-05-06T20:46:32.8162183Z","lastActionDateTimeUtc":"2021-05-06T20:46:38.433151Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7219959-06f4-403c-a07a-86ea6c22eafe","createdDateTimeUtc":"2021-05-06T20:46:29.4482679Z","lastActionDateTimeUtc":"2021-05-06T20:46:34.8389336Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1b871885-a310-42e2-91df-641107add485","createdDateTimeUtc":"2021-05-06T20:46:26.0342375Z","lastActionDateTimeUtc":"2021-05-06T20:46:30.9486355Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"dd6586fb-8342-4ba4-803f-1a8d2349baae","createdDateTimeUtc":"2021-05-06T20:46:22.7386337Z","lastActionDateTimeUtc":"2021-05-06T20:46:27.3552922Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bcad46b-aa99-4081-8ff5-b53a90effa7b","createdDateTimeUtc":"2021-05-06T20:46:19.3926182Z","lastActionDateTimeUtc":"2021-05-06T20:46:25.4019238Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e374ede3-cc53-4fb6-8bbc-36597cdd0c0b","createdDateTimeUtc":"2021-05-06T20:46:08.5258036Z","lastActionDateTimeUtc":"2021-05-06T20:46:10.3034249Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=105&$top=2366&$maxpagesize=50"}' + headers: + apim-request-id: ad570ac2-4203-4ae7-bfaf-092c0c667fd4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:02 GMT + etag: '"41DFCEDC85BA294EF73547CFE52EF8225902F148AB7AC80E9A9725AAF7640801"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ad570ac2-4203-4ae7-bfaf-092c0c667fd4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=55&$top=2416&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=105&$top=2366&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"60b182f0-0ce9-436a-a8ce-f201632417fd","createdDateTimeUtc":"2021-05-06T20:45:53.4021675Z","lastActionDateTimeUtc":"2021-05-06T20:46:00.2379458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6857629c-791f-4bd9-85ff-b638e3b3365c","createdDateTimeUtc":"2021-05-06T20:45:34.8852074Z","lastActionDateTimeUtc":"2021-05-06T20:45:44.6292626Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"0594d313-dbff-4c95-a1e2-f089a0a181e8","createdDateTimeUtc":"2021-05-06T20:45:14.8877694Z","lastActionDateTimeUtc":"2021-05-06T20:45:29.2052516Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"9460c99f-ef4b-47ff-9645-cf9cd326680a","createdDateTimeUtc":"2021-05-06T20:44:59.7186741Z","lastActionDateTimeUtc":"2021-05-06T20:45:04.6659565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7dd7a8f9-895a-4fa2-9788-1dfe98e552f8","createdDateTimeUtc":"2021-05-06T20:44:43.4399878Z","lastActionDateTimeUtc":"2021-05-06T20:44:49.6184005Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"2d399dd9-6d9c-47c8-8758-e38b7e23b575","createdDateTimeUtc":"2021-05-06T20:44:27.4028362Z","lastActionDateTimeUtc":"2021-05-06T20:44:34.0354164Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e2ad4c4e-b235-4677-aa6c-62e13ba2d35f","createdDateTimeUtc":"2021-05-06T20:44:11.5119545Z","lastActionDateTimeUtc":"2021-05-06T20:44:19.019686Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0b29e7a0-312c-45d7-b2f1-a9f7dbd368e6","createdDateTimeUtc":"2021-05-06T20:43:50.8333426Z","lastActionDateTimeUtc":"2021-05-06T20:44:03.380871Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"08ac41c8-e665-429f-aae3-4a22fc9ffdb6","createdDateTimeUtc":"2021-05-06T20:43:26.6064546Z","lastActionDateTimeUtc":"2021-05-06T20:43:38.7362699Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d664468b-4692-4a82-a4e8-a74c7287d610","createdDateTimeUtc":"2021-05-06T20:43:10.8191789Z","lastActionDateTimeUtc":"2021-05-06T20:43:16.998681Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"cf37f4a8-b52d-403a-9597-0b2247a6d95d","createdDateTimeUtc":"2021-05-06T20:42:50.4164479Z","lastActionDateTimeUtc":"2021-05-06T20:43:01.4028667Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"0c2e33d0-357c-47b7-8be3-1f6d2a3f0514","createdDateTimeUtc":"2021-05-06T20:42:24.4766478Z","lastActionDateTimeUtc":"2021-05-06T20:42:36.2927003Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"643ca574-f3ef-47fc-be86-6d73cbc740fb","createdDateTimeUtc":"2021-05-06T20:42:07.1139214Z","lastActionDateTimeUtc":"2021-05-06T20:42:14.9009183Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6e8e5b62-7e78-41e7-9bee-8a6ad969bd8a","createdDateTimeUtc":"2021-05-06T20:41:51.2781211Z","lastActionDateTimeUtc":"2021-05-06T20:42:00.1118999Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2485d0c7-a6b6-4e33-a4b3-fc64eb6fa86c","createdDateTimeUtc":"2021-05-06T20:41:24.1228087Z","lastActionDateTimeUtc":"2021-05-06T20:41:39.1891638Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c9f3f3a5-16b1-4e69-9699-3c7a02cac7c4","createdDateTimeUtc":"2021-05-06T20:41:06.8624137Z","lastActionDateTimeUtc":"2021-05-06T20:41:14.5104992Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0761c108-cb7b-408f-844d-6bb2ccf5b052","createdDateTimeUtc":"2021-05-06T20:40:44.9707525Z","lastActionDateTimeUtc":"2021-05-06T20:40:52.8312397Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7b4cbad6-9945-4a8c-b564-c703dda0adc6","createdDateTimeUtc":"2021-05-05T20:23:46.2168977Z","lastActionDateTimeUtc":"2021-05-05T20:23:48.5779894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b5639540-4fc5-4112-a0f7-68558687480a","createdDateTimeUtc":"2021-05-05T20:23:29.1149441Z","lastActionDateTimeUtc":"2021-05-05T20:23:31.3634534Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"fc437aec-c582-4dc0-ab80-d5adc90ba092","createdDateTimeUtc":"2021-05-05T20:23:15.6266867Z","lastActionDateTimeUtc":"2021-05-05T20:23:18.3362106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f5973c84-a8c7-493b-b48c-155f79f367f3","createdDateTimeUtc":"2021-05-05T20:23:02.3458298Z","lastActionDateTimeUtc":"2021-05-05T20:23:06.6632526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ebc24b89-1b21-44d0-aad2-a69d13248a49","createdDateTimeUtc":"2021-05-05T20:22:51.508293Z","lastActionDateTimeUtc":"2021-05-05T20:22:53.493729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e8b133cf-ba7b-48c6-8381-1439b7029c0b","createdDateTimeUtc":"2021-05-05T20:22:39.4529037Z","lastActionDateTimeUtc":"2021-05-05T20:22:43.2693296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ccd69556-cbad-4066-952e-d9fd5e06fd49","createdDateTimeUtc":"2021-05-05T20:22:27.0450751Z","lastActionDateTimeUtc":"2021-05-05T20:22:31.2770925Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32d8c3fa-edbb-4443-a94a-0faa818db293","createdDateTimeUtc":"2021-05-05T20:22:22.1844918Z","lastActionDateTimeUtc":"2021-05-05T20:22:22.8973281Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"91da9cc0-0233-430c-b0ef-fe6e3fd820fa","createdDateTimeUtc":"2021-05-05T20:22:15.4306344Z","lastActionDateTimeUtc":"2021-05-05T20:22:18.4096918Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67d8def3-a9b8-4b44-975a-125bc5bda5df","createdDateTimeUtc":"2021-05-05T20:22:11.2650493Z","lastActionDateTimeUtc":"2021-05-05T20:22:11.4577794Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"70ee8784-8a9a-4059-be26-9210a2124bee","createdDateTimeUtc":"2021-05-05T20:22:06.1073971Z","lastActionDateTimeUtc":"2021-05-05T20:22:08.1129291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e30b880b-f757-4db4-bdeb-9ef6bde0934c","createdDateTimeUtc":"2021-05-05T20:21:56.9417544Z","lastActionDateTimeUtc":"2021-05-05T20:22:01.2095323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"99af9e47-438f-4405-ba5f-8adbde2a4583","createdDateTimeUtc":"2021-05-05T20:21:40.3168032Z","lastActionDateTimeUtc":"2021-05-05T20:21:46.1213477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3c45ebb-8181-44fe-a489-4f256d9ec72f","createdDateTimeUtc":"2021-05-05T20:21:30.3637235Z","lastActionDateTimeUtc":"2021-05-05T20:21:33.3346861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64a4f7d4-99ee-4146-bc0e-9e2bd24f2129","createdDateTimeUtc":"2021-05-05T20:21:16.52679Z","lastActionDateTimeUtc":"2021-05-05T20:21:18.3446291Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d522f40e-35b6-40aa-bae4-7b3a5c1d50ef","createdDateTimeUtc":"2021-05-05T20:21:01.8830358Z","lastActionDateTimeUtc":"2021-05-05T20:21:06.5216859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9a2dd604-a107-4e78-83ad-ec8b8b137f8b","createdDateTimeUtc":"2021-05-05T20:20:50.5676138Z","lastActionDateTimeUtc":"2021-05-05T20:20:53.2860324Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"41dddbf1-b791-41a3-84c5-8148ee2d9d44","createdDateTimeUtc":"2021-05-05T20:20:45.7226525Z","lastActionDateTimeUtc":"2021-05-05T20:20:46.3617478Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bcfaefff-f1f8-4673-81e3-f6cfabf2c09c","createdDateTimeUtc":"2021-05-05T20:20:34.1619083Z","lastActionDateTimeUtc":"2021-05-05T20:20:41.7631803Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"90df652f-691e-47af-ad27-d325e1a6f1f1","createdDateTimeUtc":"2021-05-05T20:20:29.9333523Z","lastActionDateTimeUtc":"2021-05-05T20:20:30.1403662Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"54f2e716-cc62-4cc2-b4de-dd0a86a8d0b2","createdDateTimeUtc":"2021-05-05T20:19:58.76059Z","lastActionDateTimeUtc":"2021-05-05T20:20:01.0089845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4c7f6cda-4d6c-42cb-a705-604b0bb47661","createdDateTimeUtc":"2021-05-05T20:19:56.0394667Z","lastActionDateTimeUtc":"2021-05-05T20:20:00.0794934Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b07a7a3-5a13-4c6a-a437-7561f1c91f40","createdDateTimeUtc":"2021-05-05T20:19:53.440257Z","lastActionDateTimeUtc":"2021-05-05T20:19:56.9120827Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e903b39e-e357-4161-846b-b99fb2e2951a","createdDateTimeUtc":"2021-05-05T20:19:50.7923007Z","lastActionDateTimeUtc":"2021-05-05T20:19:53.9127383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf8ae338-4289-4792-8489-cab35bf2c7d8","createdDateTimeUtc":"2021-05-05T20:19:48.0725507Z","lastActionDateTimeUtc":"2021-05-05T20:19:51.3871694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c9a7aeae-3fa0-4d8d-9430-d3fcdabfb82a","createdDateTimeUtc":"2021-05-05T20:19:45.3982245Z","lastActionDateTimeUtc":"2021-05-05T20:19:48.2035424Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1fb9a7b2-38c0-44a7-b5fc-a888394bccfe","createdDateTimeUtc":"2021-05-05T20:19:42.6599951Z","lastActionDateTimeUtc":"2021-05-05T20:19:45.182088Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"06fb3357-84b0-49d0-a14f-7f175ccce733","createdDateTimeUtc":"2021-05-05T20:19:39.9856585Z","lastActionDateTimeUtc":"2021-05-05T20:19:42.1199527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a03d2035-7f18-42c3-a79d-e5e258b3e8ab","createdDateTimeUtc":"2021-05-05T20:19:37.304163Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5561621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a13f3364-d4fd-4cb0-8600-94c87cccd63d","createdDateTimeUtc":"2021-05-05T20:19:34.6705468Z","lastActionDateTimeUtc":"2021-05-05T20:19:40.5684126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"999b424d-ad8c-4248-83fc-0a80cdd92de2","createdDateTimeUtc":"2021-05-05T20:16:01.7862983Z","lastActionDateTimeUtc":"2021-05-05T20:16:04.8879736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cdccc8cf-ce33-4383-b47e-d148bfe451ee","createdDateTimeUtc":"2021-05-05T20:15:58.9767034Z","lastActionDateTimeUtc":"2021-05-05T20:16:01.7221892Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f83fd22-0422-4266-a645-33439994d35c","createdDateTimeUtc":"2021-05-05T20:15:56.2785676Z","lastActionDateTimeUtc":"2021-05-05T20:15:58.7520286Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=155&$top=2316&$maxpagesize=50"}' + headers: + apim-request-id: f8c74fd5-3642-4f7f-80d9-ee80d3fbb7e6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:03 GMT + etag: '"FA72D25556060DA84834A1F95AE6F06C82E7589380879B3221F155045B95CB9C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f8c74fd5-3642-4f7f-80d9-ee80d3fbb7e6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=105&$top=2366&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=155&$top=2316&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3b0f74a1-c775-468b-93a0-cc27f544563e","createdDateTimeUtc":"2021-05-05T20:15:53.5864449Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7052762Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b36829ac-66ef-4269-a9fd-2acf840ab363","createdDateTimeUtc":"2021-05-05T20:15:50.9239073Z","lastActionDateTimeUtc":"2021-05-05T20:15:55.7510879Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a126fe7-260a-4975-b7e3-41666d21c56b","createdDateTimeUtc":"2021-05-05T20:15:32.0025911Z","lastActionDateTimeUtc":"2021-05-05T20:15:35.7671806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8abfbd6-63c9-4503-aac9-55f9c72950f8","createdDateTimeUtc":"2021-05-05T20:15:27.9980102Z","lastActionDateTimeUtc":"2021-05-05T20:15:30.6720967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c5ff8e-efed-4682-8b59-8da2d6f48d37","createdDateTimeUtc":"2021-05-05T20:15:25.3418261Z","lastActionDateTimeUtc":"2021-05-05T20:15:29.7123659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25516025-0f4c-4dd1-837f-fe601b091b40","createdDateTimeUtc":"2021-05-05T20:15:07.8086707Z","lastActionDateTimeUtc":"2021-05-05T20:15:10.6420524Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"651b6c23-11b9-4b4e-8dff-95e21f6975b4","createdDateTimeUtc":"2021-05-05T20:15:05.0743062Z","lastActionDateTimeUtc":"2021-05-05T20:15:07.6058495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb30954f-7fe6-463d-985d-ad9b520e0753","createdDateTimeUtc":"2021-05-05T20:15:02.3611943Z","lastActionDateTimeUtc":"2021-05-05T20:15:04.6244352Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"75c3b65d-c6bb-413b-a714-e795ee9bb0a7","createdDateTimeUtc":"2021-05-05T20:14:47.7556421Z","lastActionDateTimeUtc":"2021-05-05T20:14:49.0345802Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6b54b7d6-767a-41c7-b557-65666933e7a8","createdDateTimeUtc":"2021-05-05T20:14:45.2285008Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.5555315Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0215c4b4-15ff-4881-883d-60beea989b93","createdDateTimeUtc":"2021-05-05T20:14:42.6681987Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.4024965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf2a5649-7287-4d7d-9e61-bc692ab7e75e","createdDateTimeUtc":"2021-05-05T20:14:40.2071601Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.2448578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"59cea490-03ae-4e57-b801-200d01800c84","createdDateTimeUtc":"2021-05-05T20:14:37.6731665Z","lastActionDateTimeUtc":"2021-05-05T20:14:48.0813459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b4622db-ef4f-4cf0-ba30-6f52cbbaf2d5","createdDateTimeUtc":"2021-05-05T20:14:22.1976239Z","lastActionDateTimeUtc":"2021-05-05T20:14:25.5049525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ce4a6bf1-6c6b-47f7-91dd-b6a783794492","createdDateTimeUtc":"2021-05-05T20:14:10.4255489Z","lastActionDateTimeUtc":"2021-05-05T20:14:14.4186663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef21153a-844d-48ee-a347-3e04d4010a2e","createdDateTimeUtc":"2021-05-05T20:14:02.9886573Z","lastActionDateTimeUtc":"2021-05-05T20:14:04.5164512Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b708e9a2-e512-4b64-a418-d0482c282c5c","createdDateTimeUtc":"2021-05-05T20:13:56.9456901Z","lastActionDateTimeUtc":"2021-05-05T20:13:59.3809967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf27d580-f46a-4f2f-976a-d7e7673377b6","createdDateTimeUtc":"2021-05-05T20:13:50.8357911Z","lastActionDateTimeUtc":"2021-05-05T20:13:52.3493486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"684e184c-8449-4830-8792-a9645de966d5","createdDateTimeUtc":"2021-05-05T20:13:47.6664494Z","lastActionDateTimeUtc":"2021-05-05T20:13:50.4296277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fbbc0b79-6d6a-40aa-a67f-139bbb51e773","createdDateTimeUtc":"2021-05-05T20:13:44.9640216Z","lastActionDateTimeUtc":"2021-05-05T20:13:47.4292917Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"235de472-9428-45e3-819b-5b0643ab710a","createdDateTimeUtc":"2021-05-05T20:13:42.2450228Z","lastActionDateTimeUtc":"2021-05-05T20:13:44.6968736Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bcd60054-8090-4a7f-a4e2-b89edb83dc94","createdDateTimeUtc":"2021-05-05T20:13:18.7547099Z","lastActionDateTimeUtc":"2021-05-05T20:13:20.5619081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1d6f6100-6116-423d-b771-985665819b37","createdDateTimeUtc":"2021-05-05T20:13:11.3297442Z","lastActionDateTimeUtc":"2021-05-05T20:13:13.5453534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21def466-775e-457a-99b8-029403eb0872","createdDateTimeUtc":"2021-05-05T20:13:05.1634559Z","lastActionDateTimeUtc":"2021-05-05T20:13:07.2688265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0fd0fb04-836e-4a54-b508-aa79df271576","createdDateTimeUtc":"2021-05-05T20:12:49.6285803Z","lastActionDateTimeUtc":"2021-05-05T20:12:52.2160469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d29168f3-d8ad-4e85-917e-c92f3c76d2ca","createdDateTimeUtc":"2021-05-05T20:12:34.2816214Z","lastActionDateTimeUtc":"2021-05-05T20:12:39.3395538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd9acdb8-0d3f-4feb-89dc-4780dacca7d8","createdDateTimeUtc":"2021-05-05T20:12:24.7628935Z","lastActionDateTimeUtc":"2021-05-05T20:12:28.4696877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95ebe3fb-5292-433a-bfe3-eb4d9ee2d816","createdDateTimeUtc":"2021-05-05T20:12:10.546301Z","lastActionDateTimeUtc":"2021-05-05T20:12:14.1835037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96bbc93a-7ad4-4972-8fb8-f805b335b9ab","createdDateTimeUtc":"2021-05-05T20:11:58.6706277Z","lastActionDateTimeUtc":"2021-05-05T20:12:03.4205865Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96e03b8d-3776-4d55-819f-ded798b89201","createdDateTimeUtc":"2021-05-05T20:11:44.4384125Z","lastActionDateTimeUtc":"2021-05-05T20:11:49.0868149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4233e4-5700-4a25-878b-e9658c7e62b1","createdDateTimeUtc":"2021-05-05T20:11:36.0275883Z","lastActionDateTimeUtc":"2021-05-05T20:11:38.346776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"437d3f9b-5d1b-4f6c-90e9-539175c2b62a","createdDateTimeUtc":"2021-05-05T20:11:32.7038796Z","lastActionDateTimeUtc":"2021-05-05T20:11:35.3124006Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f75d0fb-d850-4d7e-98cd-bf5e81401ef1","createdDateTimeUtc":"2021-05-05T20:11:30.045359Z","lastActionDateTimeUtc":"2021-05-05T20:11:32.2705672Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f8ce7293-50ef-4617-b450-2121b2566584","createdDateTimeUtc":"2021-05-05T20:11:27.3875692Z","lastActionDateTimeUtc":"2021-05-05T20:11:29.3930603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"47f3446e-5528-48c3-82b0-a1da434f754b","createdDateTimeUtc":"2021-05-05T20:11:09.1837537Z","lastActionDateTimeUtc":"2021-05-05T20:11:14.0207059Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6d425d40-19a4-4bdc-92ff-a5920aa81144","createdDateTimeUtc":"2021-05-05T20:11:05.6084223Z","lastActionDateTimeUtc":"2021-05-05T20:11:10.9637428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90eaa274-f7de-412f-8916-0df3b7df9a0d","createdDateTimeUtc":"2021-05-05T20:11:02.1340966Z","lastActionDateTimeUtc":"2021-05-05T20:11:07.3735564Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c0fa2dc-86b8-4af9-bd8d-65b2f25df7fa","createdDateTimeUtc":"2021-05-05T20:10:58.5830107Z","lastActionDateTimeUtc":"2021-05-05T20:11:03.6672509Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"640e9bdf-1c46-4364-8216-0f1f34dab904","createdDateTimeUtc":"2021-05-05T20:10:54.970353Z","lastActionDateTimeUtc":"2021-05-05T20:10:59.9567233Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"11a1a61b-9972-4ad8-8367-dbd50ec13e4f","createdDateTimeUtc":"2021-05-05T20:10:23.5568347Z","lastActionDateTimeUtc":"2021-05-05T20:10:27.1761122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7e23ed57-df3d-40bf-ac47-75444a996c3c","createdDateTimeUtc":"2021-05-05T20:10:20.8662236Z","lastActionDateTimeUtc":"2021-05-05T20:10:24.1336859Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc59ba94-fdd5-4155-9c1e-e587e35d0d44","createdDateTimeUtc":"2021-05-05T20:10:18.1902793Z","lastActionDateTimeUtc":"2021-05-05T20:10:21.137682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ded60d3b-d96e-4f10-ae06-5707f753ab43","createdDateTimeUtc":"2021-05-05T20:10:15.4891783Z","lastActionDateTimeUtc":"2021-05-05T20:10:18.0356852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"84e65c48-0658-4c5b-9983-4ce42f2846e1","createdDateTimeUtc":"2021-05-05T20:10:12.7519002Z","lastActionDateTimeUtc":"2021-05-05T20:10:14.9966312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"09238b21-1bc6-4caf-bd38-8f3aecf1bbd0","createdDateTimeUtc":"2021-05-05T20:10:10.0548983Z","lastActionDateTimeUtc":"2021-05-05T20:10:13.9145547Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3dd6990e-fdbb-433b-b1e4-0dd9bed1a284","createdDateTimeUtc":"2021-05-05T20:10:07.3948423Z","lastActionDateTimeUtc":"2021-05-05T20:10:10.8826589Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5fd048e-f99c-4812-b2a9-98f6508dcbe1","createdDateTimeUtc":"2021-05-05T20:10:04.6834422Z","lastActionDateTimeUtc":"2021-05-05T20:10:08.3371602Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4aff3da-4afb-4618-847b-d9c7b17a3fd6","createdDateTimeUtc":"2021-05-05T20:10:01.9946314Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.8924906Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d79638f1-9c40-45aa-9762-33fbbc1fff8a","createdDateTimeUtc":"2021-05-05T20:09:59.3212621Z","lastActionDateTimeUtc":"2021-05-05T20:10:04.2697324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"931dcb85-6bb2-41b7-b6a5-4bd9b7150f8a","createdDateTimeUtc":"2021-05-05T20:06:24.9506603Z","lastActionDateTimeUtc":"2021-05-05T20:06:35.274881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=205&$top=2266&$maxpagesize=50"}' + headers: + apim-request-id: fa64a212-9b39-4c07-87f5-cc9e47d44ebc + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:03 GMT + etag: '"6B8E662A5A362760DE94823B46C7E6869511E9941CB420973BFE625025A15DE4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: fa64a212-9b39-4c07-87f5-cc9e47d44ebc + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=155&$top=2316&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=205&$top=2266&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"12f6de89-affd-4a63-9abe-63c5b5e47cb5","createdDateTimeUtc":"2021-05-05T20:06:22.1547007Z","lastActionDateTimeUtc":"2021-05-05T20:06:25.5721976Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6135dbf-5b5a-4f9c-8be1-4859ffe8bdbc","createdDateTimeUtc":"2021-05-05T20:06:19.4347351Z","lastActionDateTimeUtc":"2021-05-05T20:06:22.4465231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be57e25f-00e8-4600-92da-7b073540ae65","createdDateTimeUtc":"2021-05-05T20:06:16.7247168Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9438519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"976ecedf-e1fb-4666-8e75-0e639f9a5274","createdDateTimeUtc":"2021-05-05T20:06:14.0407917Z","lastActionDateTimeUtc":"2021-05-05T20:06:21.9231517Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"03d0e05b-d537-4d49-874a-215480f4635a","createdDateTimeUtc":"2021-05-05T20:05:56.8686154Z","lastActionDateTimeUtc":"2021-05-05T20:05:59.0112406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3300861c-3216-41f2-b20d-b53b640e3dbb","createdDateTimeUtc":"2021-05-05T20:05:54.0374295Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3941273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b1eade7-fd3b-4417-932d-83b6113b8b87","createdDateTimeUtc":"2021-05-05T20:05:51.3152074Z","lastActionDateTimeUtc":"2021-05-05T20:05:57.3782181Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1f8bef3b-2bba-42cb-bcd9-a0ac5c12c55d","createdDateTimeUtc":"2021-05-05T20:05:34.5990478Z","lastActionDateTimeUtc":"2021-05-05T20:05:36.856511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"79f691af-5262-4b62-b8b5-96954d932a39","createdDateTimeUtc":"2021-05-05T20:05:31.7865433Z","lastActionDateTimeUtc":"2021-05-05T20:05:33.8098143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"82af8ff4-fd6c-4848-982b-8242093c3d1b","createdDateTimeUtc":"2021-05-05T20:05:29.0358714Z","lastActionDateTimeUtc":"2021-05-05T20:05:32.7664279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5517d483-8750-42d8-8df7-783edcb28c41","createdDateTimeUtc":"2021-05-05T20:05:14.3903444Z","lastActionDateTimeUtc":"2021-05-05T20:05:16.1657148Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd400bf8-105c-4e66-90d9-ef226dfa8c35","createdDateTimeUtc":"2021-05-05T20:05:11.9323019Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.2318867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d59d9115-8534-4944-8081-ce60622d9869","createdDateTimeUtc":"2021-05-05T20:05:09.4276841Z","lastActionDateTimeUtc":"2021-05-05T20:05:15.0572607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e2dfc93-16b3-40fa-909a-f713a31607e3","createdDateTimeUtc":"2021-05-05T20:05:06.8741934Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.8805541Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f27a476d-ec1e-4339-a961-a46ebddf70c3","createdDateTimeUtc":"2021-05-05T20:05:04.2357294Z","lastActionDateTimeUtc":"2021-05-05T20:05:14.7090577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3d710be2-500e-4c29-9cc3-0d7f4fcac84a","createdDateTimeUtc":"2021-05-05T20:04:56.9112269Z","lastActionDateTimeUtc":"2021-05-05T20:04:58.6359333Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb2d7bef-2315-4b62-978c-61f61fce029f","createdDateTimeUtc":"2021-05-05T20:04:50.783915Z","lastActionDateTimeUtc":"2021-05-05T20:04:52.698707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d0ac687-9ec6-407f-831a-67b3c107753f","createdDateTimeUtc":"2021-05-05T20:04:43.4022592Z","lastActionDateTimeUtc":"2021-05-05T20:04:45.6620015Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f328c28-2838-4c56-af64-30e6a870368a","createdDateTimeUtc":"2021-05-05T20:04:27.8975023Z","lastActionDateTimeUtc":"2021-05-05T20:04:33.6086821Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c52e2700-f5b0-41b4-8290-ad68806e6763","createdDateTimeUtc":"2021-05-05T20:04:17.0580955Z","lastActionDateTimeUtc":"2021-05-05T20:04:18.5507321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd0e235-986c-4ec5-8d63-568f2e868ab8","createdDateTimeUtc":"2021-05-05T20:04:14.0225139Z","lastActionDateTimeUtc":"2021-05-05T20:04:17.5039961Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"35a418b9-95c9-4ab0-9216-41c43cca4cc9","createdDateTimeUtc":"2021-05-05T20:04:11.2956737Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9165262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7572949f-daad-4c1f-89d9-8c3e4c679664","createdDateTimeUtc":"2021-05-05T20:04:08.4083375Z","lastActionDateTimeUtc":"2021-05-05T20:04:13.9096356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14cb4dcf-520d-4da8-b7d7-7b2e77927421","createdDateTimeUtc":"2021-05-05T20:03:46.0880034Z","lastActionDateTimeUtc":"2021-05-05T20:03:48.8054412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"576ea628-df29-42fd-9fec-99d69f04c0f8","createdDateTimeUtc":"2021-05-05T20:03:39.8801589Z","lastActionDateTimeUtc":"2021-05-05T20:03:41.7362935Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5441055e-1ed7-4c1e-a3e8-f3ed821554df","createdDateTimeUtc":"2021-05-05T20:03:32.6129037Z","lastActionDateTimeUtc":"2021-05-05T20:03:34.7109794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6d473d68-b1be-4773-9a87-66c10266a010","createdDateTimeUtc":"2021-05-05T20:03:25.2929665Z","lastActionDateTimeUtc":"2021-05-05T20:03:27.6962977Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6c67ec67-64cf-48cf-93b5-d38c9159a299","createdDateTimeUtc":"2021-05-05T20:03:17.9645739Z","lastActionDateTimeUtc":"2021-05-05T20:03:20.6229866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5d3259c9-1221-463d-bb39-d0a56b45d5d7","createdDateTimeUtc":"2021-05-05T20:03:11.821323Z","lastActionDateTimeUtc":"2021-05-05T20:03:13.6096079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25487c07-d169-42fa-93d4-0542f2bbf0d8","createdDateTimeUtc":"2021-05-05T20:03:04.4279978Z","lastActionDateTimeUtc":"2021-05-05T20:03:06.5850056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b489f73-c5c3-475c-97d7-1ad248aa1e19","createdDateTimeUtc":"2021-05-05T20:02:58.0390923Z","lastActionDateTimeUtc":"2021-05-05T20:02:59.5571004Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7224ddb-80cb-4d43-9a25-22793683786b","createdDateTimeUtc":"2021-05-05T20:02:50.5034562Z","lastActionDateTimeUtc":"2021-05-05T20:02:52.5518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52236ccd-1fc1-479f-83a2-5afb35ef340d","createdDateTimeUtc":"2021-05-05T20:02:43.1163855Z","lastActionDateTimeUtc":"2021-05-05T20:02:45.564577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"db929843-9a2e-4d7e-8145-5a808c2d5fc4","createdDateTimeUtc":"2021-05-05T20:02:40.0608589Z","lastActionDateTimeUtc":"2021-05-05T20:02:44.5566582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34d1ad7c-514e-4317-bdd9-8596919a9fb4","createdDateTimeUtc":"2021-05-05T20:02:37.3833922Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.973111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f37710a9-5b87-4b2e-9eec-f6fe4f383498","createdDateTimeUtc":"2021-05-05T20:02:34.7190798Z","lastActionDateTimeUtc":"2021-05-05T20:02:43.9429292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9980dc55-59f7-426c-8949-2bfe9d900e71","createdDateTimeUtc":"2021-05-05T20:02:15.8595403Z","lastActionDateTimeUtc":"2021-05-05T20:02:20.5027916Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9f2fe720-8f50-48ac-97eb-66fc1f938427","createdDateTimeUtc":"2021-05-05T20:02:12.4857988Z","lastActionDateTimeUtc":"2021-05-05T20:02:16.9113798Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9612539-a8cc-4fdb-99bf-f56c83b3a329","createdDateTimeUtc":"2021-05-05T20:02:09.0804245Z","lastActionDateTimeUtc":"2021-05-05T20:02:13.3618126Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a1181d2f-b72c-45fc-990c-f3d30405ee19","createdDateTimeUtc":"2021-05-05T20:02:05.5915779Z","lastActionDateTimeUtc":"2021-05-05T20:02:11.7172755Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1e453131-2bd7-45d6-89c0-de60fb3b622f","createdDateTimeUtc":"2021-05-05T20:02:02.2589909Z","lastActionDateTimeUtc":"2021-05-05T20:02:07.9858315Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b089d4ef-4ad3-45d9-9f94-31a0196e336b","createdDateTimeUtc":"2021-05-05T20:01:49.7061185Z","lastActionDateTimeUtc":"2021-05-05T20:01:52.4083053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2629d2c-463b-482d-8aa0-100d6f32b463","createdDateTimeUtc":"2021-05-05T20:01:35.6936377Z","lastActionDateTimeUtc":"2021-05-05T20:01:38.8954207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c8d5bf4-2295-42ca-bb0b-9ba761708c6f","createdDateTimeUtc":"2021-05-05T20:01:17.1691407Z","lastActionDateTimeUtc":"2021-05-05T20:01:31.1620438Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bbd46ab6-b9e4-4df0-a29c-8f6df729c5d3","createdDateTimeUtc":"2021-05-05T20:00:57.1564225Z","lastActionDateTimeUtc":"2021-05-05T20:01:06.4867158Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"bb6fbe21-7d30-437e-949a-255e3c9a0526","createdDateTimeUtc":"2021-05-05T20:00:40.4801358Z","lastActionDateTimeUtc":"2021-05-05T20:00:46.6345453Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a5e7ff8e-a533-4c74-9f4c-deb46b1afdfa","createdDateTimeUtc":"2021-05-05T20:00:24.038335Z","lastActionDateTimeUtc":"2021-05-05T20:00:31.3956127Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"eac94194-5b55-4c55-96ee-fa49eb68e693","createdDateTimeUtc":"2021-05-05T20:00:07.7242847Z","lastActionDateTimeUtc":"2021-05-05T20:00:15.8991265Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8cff731b-3114-4503-aa15-7a5b0540c04a","createdDateTimeUtc":"2021-05-05T19:59:55.4006053Z","lastActionDateTimeUtc":"2021-05-05T20:00:00.3484498Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d1f34bf6-b301-488a-8b81-61455a59232c","createdDateTimeUtc":"2021-05-05T19:59:33.4539741Z","lastActionDateTimeUtc":"2021-05-05T19:59:45.1885063Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=255&$top=2216&$maxpagesize=50"}' + headers: + apim-request-id: bf7aa6be-3aac-4be1-afcd-6c6d80cd97eb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:03 GMT + etag: '"592ECF1F29603E042136BD5BFB13842AF45A2826991E5B5A2128BF9242552366"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bf7aa6be-3aac-4be1-afcd-6c6d80cd97eb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=205&$top=2266&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=255&$top=2216&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"4d5f42e4-5906-4fbc-b9d4-01112b940957","createdDateTimeUtc":"2021-05-05T19:59:05.9482334Z","lastActionDateTimeUtc":"2021-05-05T19:59:19.1219644Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd89f1de-50dd-49b8-9819-43dc525bf337","createdDateTimeUtc":"2021-05-05T19:58:47.4977469Z","lastActionDateTimeUtc":"2021-05-05T19:58:53.3289608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c7cebb15-b0ae-4211-8fb1-17a9f29e7eb0","createdDateTimeUtc":"2021-05-05T19:58:23.4472999Z","lastActionDateTimeUtc":"2021-05-05T19:58:37.8341539Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"1435b24d-5d63-4843-954c-aa0dd334a0de","createdDateTimeUtc":"2021-05-05T19:57:56.99175Z","lastActionDateTimeUtc":"2021-05-05T19:58:12.0875034Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"98594eb2-dc00-47aa-97ae-8b886e9da3cf","createdDateTimeUtc":"2021-05-05T19:57:40.8569404Z","lastActionDateTimeUtc":"2021-05-05T19:57:46.4591563Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8d29ab3-c3ae-4fac-b6eb-33e650b828ab","createdDateTimeUtc":"2021-05-05T19:57:24.6267512Z","lastActionDateTimeUtc":"2021-05-05T19:57:30.5255569Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0f991cf1-f05e-498e-9a76-c8e0c8b880b9","createdDateTimeUtc":"2021-05-05T19:57:00.0031501Z","lastActionDateTimeUtc":"2021-05-05T19:57:15.4109114Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"48bd0dd0-7222-4d8b-8660-17a036591f61","createdDateTimeUtc":"2021-05-05T19:56:42.5366511Z","lastActionDateTimeUtc":"2021-05-05T19:56:50.3481227Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3bfed8a2-ae4b-467b-8e08-cea2153c9d3c","createdDateTimeUtc":"2021-05-05T19:56:19.0405361Z","lastActionDateTimeUtc":"2021-05-05T19:56:29.1763446Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7932fe89-e088-4968-a588-5310e5b96b44","createdDateTimeUtc":"2021-05-05T19:45:09.0501643Z","lastActionDateTimeUtc":"2021-05-05T19:45:12.2488002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"112b02d0-9a50-4996-a101-3cdeb625fa3f","createdDateTimeUtc":"2021-05-05T19:44:49.7896537Z","lastActionDateTimeUtc":"2021-05-05T19:44:57.1960315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"71e73fb6-bf9f-4b40-8cd3-71c5e2e6eb68","createdDateTimeUtc":"2021-05-05T19:44:42.2422649Z","lastActionDateTimeUtc":"2021-05-05T19:44:44.0438809Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39b384dc-5654-4745-99ad-89e51f4bc960","createdDateTimeUtc":"2021-05-05T19:44:32.510763Z","lastActionDateTimeUtc":"2021-05-05T19:44:37.1422325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4cf619d-1ea5-4235-88b7-3708c8319b8f","createdDateTimeUtc":"2021-05-05T19:44:17.9971451Z","lastActionDateTimeUtc":"2021-05-05T19:44:22.1340345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"22dcc108-6f5c-4185-b134-1c33cf899e5f","createdDateTimeUtc":"2021-05-05T19:44:02.8844576Z","lastActionDateTimeUtc":"2021-05-05T19:44:12.0378241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b9d1dd3-0c0b-4a8e-8a80-4007403583ce","createdDateTimeUtc":"2021-05-05T19:43:55.1767377Z","lastActionDateTimeUtc":"2021-05-05T19:43:57.0482236Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fbd453e-1819-4bb3-9f73-706696f7d18a","createdDateTimeUtc":"2021-05-05T19:43:50.5190377Z","lastActionDateTimeUtc":"2021-05-05T19:43:51.1208521Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e746c9c5-f4c1-4958-ab35-64592b1f08e8","createdDateTimeUtc":"2021-05-05T19:43:40.3816932Z","lastActionDateTimeUtc":"2021-05-05T19:43:47.4025432Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a147e42e-7cf7-4fd3-801e-dc9e13e79040","createdDateTimeUtc":"2021-05-05T19:43:36.2443465Z","lastActionDateTimeUtc":"2021-05-05T19:43:36.484413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c26f7f24-54a6-4840-b43f-b98d34084676","createdDateTimeUtc":"2021-05-05T19:43:29.7732786Z","lastActionDateTimeUtc":"2021-05-05T19:43:32.0086858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb9b07f-123a-4a76-856f-e05f2350f573","createdDateTimeUtc":"2021-05-05T19:43:15.8530197Z","lastActionDateTimeUtc":"2021-05-05T19:43:25.0816563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"be7c5b48-10d3-4909-b162-447f3802af3d","createdDateTimeUtc":"2021-05-05T19:43:08.3213328Z","lastActionDateTimeUtc":"2021-05-05T19:43:09.8971453Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc4f481-56c6-4a1c-b57b-ae75ca38827f","createdDateTimeUtc":"2021-05-05T19:43:00.4952281Z","lastActionDateTimeUtc":"2021-05-05T19:43:02.8666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf67cd08-d86f-4d0e-aced-b123f406c6e9","createdDateTimeUtc":"2021-05-05T19:42:47.1225329Z","lastActionDateTimeUtc":"2021-05-05T19:42:55.9182727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc9c0bea-296c-462c-8889-db4338c1b1f2","createdDateTimeUtc":"2021-05-05T19:42:36.9412449Z","lastActionDateTimeUtc":"2021-05-05T19:42:40.9272761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"591f24c8-0043-46ca-af5c-e2e4d3c233ba","createdDateTimeUtc":"2021-05-05T19:42:19.4067412Z","lastActionDateTimeUtc":"2021-05-05T19:42:25.8403977Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3973c975-0713-4e15-99a1-2df2f4a7ab6a","createdDateTimeUtc":"2021-05-05T19:42:14.6937073Z","lastActionDateTimeUtc":"2021-05-05T19:42:15.8819051Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"494f15f2-6fd7-416d-8e26-6b1ae4bbff11","createdDateTimeUtc":"2021-05-05T19:42:09.0056426Z","lastActionDateTimeUtc":"2021-05-05T19:42:10.7787604Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"89b38f98-00e1-4882-9c6d-b86cff636a62","createdDateTimeUtc":"2021-05-05T19:42:04.6867581Z","lastActionDateTimeUtc":"2021-05-05T19:42:04.9204937Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d8b572-5b0e-4dbb-8531-1c377001294c","createdDateTimeUtc":"2021-05-05T19:41:32.0004879Z","lastActionDateTimeUtc":"2021-05-05T19:41:35.6272488Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f3edf12d-8813-4018-af8b-5a37dd9917be","createdDateTimeUtc":"2021-05-05T19:41:29.3769805Z","lastActionDateTimeUtc":"2021-05-05T19:41:32.5715921Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1db1c863-33e8-4383-bac9-4a3779002154","createdDateTimeUtc":"2021-05-05T19:41:26.6988874Z","lastActionDateTimeUtc":"2021-05-05T19:41:29.5335004Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9e5b1081-2efd-4f8a-9bbf-cf2626c33e69","createdDateTimeUtc":"2021-05-05T19:41:24.104299Z","lastActionDateTimeUtc":"2021-05-05T19:41:26.5147139Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7b823c42-e9bf-467f-a180-aeeaf9a98125","createdDateTimeUtc":"2021-05-05T19:41:21.3833893Z","lastActionDateTimeUtc":"2021-05-05T19:41:23.4583474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f97e4eef-b88d-4756-9d21-2da55d7f491f","createdDateTimeUtc":"2021-05-05T19:41:18.7215676Z","lastActionDateTimeUtc":"2021-05-05T19:41:22.4417346Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b25a29a-16e1-4d84-a58a-96c963a84224","createdDateTimeUtc":"2021-05-05T19:41:16.0106204Z","lastActionDateTimeUtc":"2021-05-05T19:41:19.3856972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd0e2edf-8d7b-4356-8989-741b8cc08f23","createdDateTimeUtc":"2021-05-05T19:41:13.360731Z","lastActionDateTimeUtc":"2021-05-05T19:41:16.3576948Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"351eed7a-cc9a-4f18-b67b-a4ebf2f0be55","createdDateTimeUtc":"2021-05-05T19:41:10.7041136Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7885247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ec3c6a88-6743-4354-82e7-4f5e0228e958","createdDateTimeUtc":"2021-05-05T19:41:08.0469331Z","lastActionDateTimeUtc":"2021-05-05T19:41:14.7891578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7ef241c6-67cd-428a-bb1c-396ac928df9f","createdDateTimeUtc":"2021-05-05T19:37:34.9846002Z","lastActionDateTimeUtc":"2021-05-05T19:37:39.013704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55987161-e34e-4792-b77f-1fdcfe7f0709","createdDateTimeUtc":"2021-05-05T19:37:32.2698919Z","lastActionDateTimeUtc":"2021-05-05T19:37:35.9943124Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b549c97-e9c7-4935-9c6f-bad134216782","createdDateTimeUtc":"2021-05-05T19:37:29.6733801Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.5569182Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8eaa45c7-4a17-4a23-ab07-ca1d8b5817c5","createdDateTimeUtc":"2021-05-05T19:37:27.0469978Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.3451025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eebde948-75d0-465a-bd98-a358647a090c","createdDateTimeUtc":"2021-05-05T19:37:24.4872355Z","lastActionDateTimeUtc":"2021-05-05T19:37:32.4187773Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ed7aa3c-ccb5-450b-99aa-570a5a31970a","createdDateTimeUtc":"2021-05-05T19:37:08.6221036Z","lastActionDateTimeUtc":"2021-05-05T19:37:11.5236078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c8e3c39-f8bd-4588-b094-4ca0ae1c8517","createdDateTimeUtc":"2021-05-05T19:37:05.9886871Z","lastActionDateTimeUtc":"2021-05-05T19:37:08.4329946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"37468882-0276-4a0a-8b2f-84c7a39d86d8","createdDateTimeUtc":"2021-05-05T19:37:03.2534803Z","lastActionDateTimeUtc":"2021-05-05T19:37:05.5048702Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"031b7b98-7fb2-444a-9def-b860ef558cfd","createdDateTimeUtc":"2021-05-05T19:36:47.8904486Z","lastActionDateTimeUtc":"2021-05-05T19:36:50.3843678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"477ad62d-4cef-4b88-ac21-e0c51a6b87d4","createdDateTimeUtc":"2021-05-05T19:36:45.2582002Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3590154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f6edffa1-d127-4b0b-8431-d8b6d828a84e","createdDateTimeUtc":"2021-05-05T19:36:42.6176992Z","lastActionDateTimeUtc":"2021-05-05T19:36:47.3326245Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=305&$top=2166&$maxpagesize=50"}' + headers: + apim-request-id: 6bda749c-73b1-4b64-97f1-2450104b46f4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:03 GMT + etag: '"C23D3B0018A6E21864A4947E51B7920EE127C40DD8BD7CA13F7CDBC88E8A9CE3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6bda749c-73b1-4b64-97f1-2450104b46f4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=255&$top=2216&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=305&$top=2166&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"11ca4417-7f3b-4382-9930-2d379fa7a300","createdDateTimeUtc":"2021-05-05T19:36:28.8842756Z","lastActionDateTimeUtc":"2021-05-05T19:36:31.7508817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dfd34de2-1e78-4fa1-b05a-c84639628d09","createdDateTimeUtc":"2021-05-05T19:36:26.5042777Z","lastActionDateTimeUtc":"2021-05-05T19:36:28.7635128Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f376bfb-7dbd-4ae5-9f27-7465a3ad922e","createdDateTimeUtc":"2021-05-05T19:36:24.0845432Z","lastActionDateTimeUtc":"2021-05-05T19:36:26.7637096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e7edf73e-e95c-48d6-8c8a-9eb7d7085107","createdDateTimeUtc":"2021-05-05T19:36:21.6244003Z","lastActionDateTimeUtc":"2021-05-05T19:36:23.9100105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15143702-95c0-451a-954a-81ad2a3e9ace","createdDateTimeUtc":"2021-05-05T19:36:16.9608185Z","lastActionDateTimeUtc":"2021-05-05T19:36:21.7000949Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4cc2bec-27eb-4566-b221-29bca1579c4b","createdDateTimeUtc":"2021-05-05T19:36:06.2955406Z","lastActionDateTimeUtc":"2021-05-05T19:36:08.9390162Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"915a45a9-e4df-4fc8-86a9-98975621158b","createdDateTimeUtc":"2021-05-05T19:35:54.2753534Z","lastActionDateTimeUtc":"2021-05-05T19:35:56.6342419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d4f0520a-736f-40ad-bc8a-135de1f8386d","createdDateTimeUtc":"2021-05-05T19:35:47.0373902Z","lastActionDateTimeUtc":"2021-05-05T19:35:48.7363936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6a9b8fe4-a297-409b-a825-0f0fe2cf07cc","createdDateTimeUtc":"2021-05-05T19:35:39.8596412Z","lastActionDateTimeUtc":"2021-05-05T19:35:42.2757169Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f73b03d7-adc5-44b5-bbec-d0d563fa7454","createdDateTimeUtc":"2021-05-05T19:35:33.7742016Z","lastActionDateTimeUtc":"2021-05-05T19:35:35.2259606Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1dc5d425-5c9d-4b4b-9399-cd4e36b55ec9","createdDateTimeUtc":"2021-05-05T19:35:30.7260816Z","lastActionDateTimeUtc":"2021-05-05T19:35:34.2170154Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c635129a-4212-429f-994c-7f15e8582040","createdDateTimeUtc":"2021-05-05T19:35:28.0506021Z","lastActionDateTimeUtc":"2021-05-05T19:35:31.2468519Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8e023661-0c77-4c69-979f-f38a34987c1e","createdDateTimeUtc":"2021-05-05T19:35:25.3838197Z","lastActionDateTimeUtc":"2021-05-05T19:35:28.5627118Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bfd55a7e-3e9a-4738-9bc4-933e3aa3b5b1","createdDateTimeUtc":"2021-05-05T19:35:00.9185874Z","lastActionDateTimeUtc":"2021-05-05T19:35:03.6849399Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4f9f50b1-acf1-4329-b64b-bb70646a0716","createdDateTimeUtc":"2021-05-05T19:34:50.069619Z","lastActionDateTimeUtc":"2021-05-05T19:34:53.4611507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"572d1c71-45c4-4e2a-bcb0-ee62e53c674b","createdDateTimeUtc":"2021-05-05T19:34:39.3127097Z","lastActionDateTimeUtc":"2021-05-05T19:34:43.0910567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"360a5da5-4f56-4964-9274-5a20d8e77e78","createdDateTimeUtc":"2021-05-05T19:34:26.9918032Z","lastActionDateTimeUtc":"2021-05-05T19:34:31.5810302Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3eb82b5-5228-4bb7-9aaa-7ba6de11a634","createdDateTimeUtc":"2021-05-05T19:34:16.2833004Z","lastActionDateTimeUtc":"2021-05-05T19:34:18.4186489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01f51665-aa7c-4f21-8405-6ee1153da235","createdDateTimeUtc":"2021-05-05T19:34:05.5760352Z","lastActionDateTimeUtc":"2021-05-05T19:34:07.9709733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317f461a-a7d1-4997-8e4a-d7c1e071abf6","createdDateTimeUtc":"2021-05-05T19:33:54.9332768Z","lastActionDateTimeUtc":"2021-05-05T19:33:56.4762339Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee7f4b6c-707f-42b7-9c10-03c19c5f054d","createdDateTimeUtc":"2021-05-05T19:33:40.7831604Z","lastActionDateTimeUtc":"2021-05-05T19:33:42.9150539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4c0807f-7990-4ad2-b5c2-9d3f49690418","createdDateTimeUtc":"2021-05-05T19:33:31.227672Z","lastActionDateTimeUtc":"2021-05-05T19:33:33.3168046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64c47747-ec2e-464c-8a43-60c9cd2c5688","createdDateTimeUtc":"2021-05-05T19:33:26.2612419Z","lastActionDateTimeUtc":"2021-05-05T19:33:27.9101688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc67c189-558b-41be-87a1-6fcd6c20f0a6","createdDateTimeUtc":"2021-05-05T19:33:23.2479849Z","lastActionDateTimeUtc":"2021-05-05T19:33:26.2746082Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9077bf0-0810-488b-a1d6-69af39787de5","createdDateTimeUtc":"2021-05-05T19:33:20.5167738Z","lastActionDateTimeUtc":"2021-05-05T19:33:23.2399852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b74f082a-24a5-4017-8f30-3c501a8e5e12","createdDateTimeUtc":"2021-05-05T19:33:17.8739062Z","lastActionDateTimeUtc":"2021-05-05T19:33:20.2460122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af860ffe-7503-4b07-a9fd-80beaeb268fd","createdDateTimeUtc":"2021-05-05T19:33:00.8269005Z","lastActionDateTimeUtc":"2021-05-05T19:33:05.175804Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f8045358-058a-4148-9dfd-dab0f44c82f5","createdDateTimeUtc":"2021-05-05T19:32:57.3706293Z","lastActionDateTimeUtc":"2021-05-05T19:33:01.4839065Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"0d089281-617d-45c2-b964-f35789a0511b","createdDateTimeUtc":"2021-05-05T19:32:53.8387236Z","lastActionDateTimeUtc":"2021-05-05T19:32:57.9679976Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7767306b-952e-4a69-b0b8-c3777d7b9bde","createdDateTimeUtc":"2021-05-05T19:32:50.3373286Z","lastActionDateTimeUtc":"2021-05-05T19:32:54.8695106Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8863c87c-14eb-4cbe-849c-c160ef38a72d","createdDateTimeUtc":"2021-05-05T19:32:46.8140115Z","lastActionDateTimeUtc":"2021-05-05T19:32:52.8334738Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f165e694-0ed7-41c5-a25e-e81033b50c32","createdDateTimeUtc":"2021-05-05T19:32:14.56092Z","lastActionDateTimeUtc":"2021-05-05T19:32:17.7341541Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58a32e6b-ba60-4e1f-a7b9-6355cf52e9cb","createdDateTimeUtc":"2021-05-05T19:32:11.8426155Z","lastActionDateTimeUtc":"2021-05-05T19:32:14.657786Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fde0836d-0ca4-49b9-9c85-ae17caced2b8","createdDateTimeUtc":"2021-05-05T19:32:09.1188291Z","lastActionDateTimeUtc":"2021-05-05T19:32:11.6309753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a754b-3d9e-495d-87aa-e5734eff4581","createdDateTimeUtc":"2021-05-05T19:32:06.213339Z","lastActionDateTimeUtc":"2021-05-05T19:32:08.5853058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"55e5a7c0-0872-45d3-94ff-dfa1c13eab01","createdDateTimeUtc":"2021-05-05T19:32:03.4668313Z","lastActionDateTimeUtc":"2021-05-05T19:32:05.5370877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"687c8629-cdbe-4082-a55b-52a3979578ae","createdDateTimeUtc":"2021-05-05T19:32:00.7545045Z","lastActionDateTimeUtc":"2021-05-05T19:32:04.4997491Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9b164e7-5e8f-4b19-b5fa-10b51d15ff06","createdDateTimeUtc":"2021-05-05T19:31:58.0665124Z","lastActionDateTimeUtc":"2021-05-05T19:32:01.961191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4084107e-d3df-4f3c-9949-23d37cb61dac","createdDateTimeUtc":"2021-05-05T19:31:55.2949672Z","lastActionDateTimeUtc":"2021-05-05T19:31:58.597932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9bc9c252-5b0c-48a5-a84c-4e7cff9e7947","createdDateTimeUtc":"2021-05-05T19:31:52.6731794Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6382695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ec6eb12-6abe-4b76-97c5-5e6c0cfbfbe4","createdDateTimeUtc":"2021-05-05T19:31:49.9500326Z","lastActionDateTimeUtc":"2021-05-05T19:31:57.6876384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"86a516ff-39f1-49c6-ab1b-bcffd9d99b52","createdDateTimeUtc":"2021-05-05T19:28:20.0303689Z","lastActionDateTimeUtc":"2021-05-05T19:28:22.8004479Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2c6b345-dd89-4a50-9d25-04b33371c556","createdDateTimeUtc":"2021-05-05T19:28:17.2781548Z","lastActionDateTimeUtc":"2021-05-05T19:28:19.7788826Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d10201a6-aa1a-48fa-aeba-f92dc53ebbb7","createdDateTimeUtc":"2021-05-05T19:28:14.5989006Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.5902069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"861ffb82-9f33-432b-a220-63365046db2c","createdDateTimeUtc":"2021-05-05T19:28:11.8999853Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.1324135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c2c9dec-93b5-456e-b0ae-94a7d81064ed","createdDateTimeUtc":"2021-05-05T19:28:09.1476836Z","lastActionDateTimeUtc":"2021-05-05T19:28:17.0423472Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2d6f0c46-9504-43a5-ac8c-da14c8f80e86","createdDateTimeUtc":"2021-05-05T19:27:53.2278554Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.9494192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b0ec5ea-76e5-445d-9737-d0b66ae59acb","createdDateTimeUtc":"2021-05-05T19:27:50.4434071Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.396793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2e1ac25-e932-44a0-adb4-8b7b01a40942","createdDateTimeUtc":"2021-05-05T19:27:47.6539899Z","lastActionDateTimeUtc":"2021-05-05T19:27:55.3860854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fdd2acc-39db-4395-9c83-2f3550568d75","createdDateTimeUtc":"2021-05-05T19:27:31.2536205Z","lastActionDateTimeUtc":"2021-05-05T19:27:34.6134881Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=355&$top=2116&$maxpagesize=50"}' + headers: + apim-request-id: 8bf29c89-58ee-497f-bf4b-48e98faaeb93 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:04 GMT + etag: '"5977450855C6445273E54F268F033DF7DDFAB37F45264D428E91BF915B5F8278"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8bf29c89-58ee-497f-bf4b-48e98faaeb93 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=305&$top=2166&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=355&$top=2116&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"c87b8615-72c9-44c4-b4a2-c52fb92f9f4b","createdDateTimeUtc":"2021-05-05T19:27:28.5516795Z","lastActionDateTimeUtc":"2021-05-05T19:27:32.020177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed7fccfe-b524-40ed-a441-0050428a6ba0","createdDateTimeUtc":"2021-05-05T19:27:25.9449435Z","lastActionDateTimeUtc":"2021-05-05T19:27:29.5509709Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"34550981-78ba-48ff-94b4-c21921d05982","createdDateTimeUtc":"2021-05-05T19:27:11.1056529Z","lastActionDateTimeUtc":"2021-05-05T19:27:12.5259041Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"e6312e8b-2c09-4ea4-955b-35061a96a8d8","createdDateTimeUtc":"2021-05-05T19:27:08.6015366Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.8802729Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f26390e-1133-4881-8a96-1a3848ee1046","createdDateTimeUtc":"2021-05-05T19:27:06.1776415Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.7289393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3a8d7de-8f99-4fb0-be52-950f2923bbca","createdDateTimeUtc":"2021-05-05T19:27:03.7261072Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.5585308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37b6ae69-fe29-4b81-8882-8cc37ded52d1","createdDateTimeUtc":"2021-05-05T19:27:01.2881872Z","lastActionDateTimeUtc":"2021-05-05T19:27:11.3908698Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ec462f7c-a9b2-440d-8c6c-35685247d615","createdDateTimeUtc":"2021-05-05T19:26:53.9330979Z","lastActionDateTimeUtc":"2021-05-05T19:26:56.1883898Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3bbbe2f-26df-4614-b5af-5df685df4a52","createdDateTimeUtc":"2021-05-05T19:26:47.7259493Z","lastActionDateTimeUtc":"2021-05-05T19:26:49.5798445Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23f1387c-8ea1-402d-8cd7-c7204996edf5","createdDateTimeUtc":"2021-05-05T19:26:40.4233586Z","lastActionDateTimeUtc":"2021-05-05T19:26:42.4995485Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"83cb94fc-c7e8-414c-99a7-d16bcb50a306","createdDateTimeUtc":"2021-05-05T19:26:33.0040216Z","lastActionDateTimeUtc":"2021-05-05T19:26:35.4828113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"053bb38a-56b4-4678-8b3c-11655fe95bef","createdDateTimeUtc":"2021-05-05T19:26:25.6360252Z","lastActionDateTimeUtc":"2021-05-05T19:26:28.4487125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8358308-3f67-4985-b824-47c634d74b99","createdDateTimeUtc":"2021-05-05T19:26:22.4631071Z","lastActionDateTimeUtc":"2021-05-05T19:26:25.4389404Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf69e6a3-7e93-4419-ba8c-c7147665c2f3","createdDateTimeUtc":"2021-05-05T19:26:19.7577909Z","lastActionDateTimeUtc":"2021-05-05T19:26:22.4741972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d56cf03b-af38-4d86-a21f-376e0161d37b","createdDateTimeUtc":"2021-05-05T19:26:16.9660522Z","lastActionDateTimeUtc":"2021-05-05T19:26:21.4714323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"025d7fe4-0fc3-4e34-a720-16a79b4024bf","createdDateTimeUtc":"2021-05-05T19:25:41.9614021Z","lastActionDateTimeUtc":"2021-05-05T19:25:51.1154884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b285fa71-3cd9-4206-992d-4c17c75a15a5","createdDateTimeUtc":"2021-05-05T19:25:34.5637866Z","lastActionDateTimeUtc":"2021-05-05T19:25:36.3110525Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"64e3c283-aa12-4f5f-897e-b0a7bda2dabe","createdDateTimeUtc":"2021-05-05T19:25:27.2486494Z","lastActionDateTimeUtc":"2021-05-05T19:25:29.3014505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6ac8481-2c8d-43cd-a417-c713dc7e5c4e","createdDateTimeUtc":"2021-05-05T19:25:19.9094948Z","lastActionDateTimeUtc":"2021-05-05T19:25:22.2321116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b492f3bd-6ffe-472c-83fa-33dd21ff8a5f","createdDateTimeUtc":"2021-05-05T19:25:12.6404451Z","lastActionDateTimeUtc":"2021-05-05T19:25:16.0226592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c0a6c02b-ad79-4dc4-84ad-641066b96b81","createdDateTimeUtc":"2021-05-05T19:25:06.5378844Z","lastActionDateTimeUtc":"2021-05-05T19:25:09.0743704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ade42512-d793-41c9-850f-8e2a61c45294","createdDateTimeUtc":"2021-05-05T19:24:59.2461066Z","lastActionDateTimeUtc":"2021-05-05T19:25:01.9851534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6107c42-145e-4b20-8bc4-ce99aa9d90b1","createdDateTimeUtc":"2021-05-05T19:24:52.400339Z","lastActionDateTimeUtc":"2021-05-05T19:24:54.9438754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fd84a10f-c066-45ae-805d-1c635bfe6a77","createdDateTimeUtc":"2021-05-05T19:24:44.9855957Z","lastActionDateTimeUtc":"2021-05-05T19:24:47.8980067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09ac905b-10e5-4f80-bded-393b60c59c0b","createdDateTimeUtc":"2021-05-05T19:24:37.4601817Z","lastActionDateTimeUtc":"2021-05-05T19:24:40.8525357Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52ed0c55-49c6-4794-97e7-c146def5c7d8","createdDateTimeUtc":"2021-05-05T19:24:34.3438399Z","lastActionDateTimeUtc":"2021-05-05T19:24:37.7974278Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57a850cb-c267-4a54-9669-1aa8817c5035","createdDateTimeUtc":"2021-05-05T19:24:31.5851255Z","lastActionDateTimeUtc":"2021-05-05T19:24:34.7668954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f98d6589-c4e0-481a-b436-4252415a54d1","createdDateTimeUtc":"2021-05-05T19:24:28.8404021Z","lastActionDateTimeUtc":"2021-05-05T19:24:31.6814839Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2ca59152-97aa-416f-99b3-b8e807e75223","createdDateTimeUtc":"2021-05-05T19:24:12.430052Z","lastActionDateTimeUtc":"2021-05-05T19:24:16.753479Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2487e16e-8d86-4095-a9aa-a609126e1fd0","createdDateTimeUtc":"2021-05-05T19:24:08.888511Z","lastActionDateTimeUtc":"2021-05-05T19:24:13.5149288Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb1e3662-dac7-47d4-a94d-4d60bae68ee9","createdDateTimeUtc":"2021-05-05T19:24:05.3023324Z","lastActionDateTimeUtc":"2021-05-05T19:24:09.8382386Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f6add223-0ad4-4845-95d8-37c3cfe473ce","createdDateTimeUtc":"2021-05-05T19:24:01.8699232Z","lastActionDateTimeUtc":"2021-05-05T19:24:06.5286196Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"37c7331c-c3a0-452a-89a0-dfa22ab0a02c","createdDateTimeUtc":"2021-05-05T19:23:58.3252539Z","lastActionDateTimeUtc":"2021-05-05T19:24:02.939599Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8a03b2d-8feb-4c2e-9933-434ff3646147","createdDateTimeUtc":"2021-05-05T19:23:42.4721795Z","lastActionDateTimeUtc":"2021-05-05T19:23:44.5385831Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de8b51d9-2955-4e86-b121-e208be0f6103","createdDateTimeUtc":"2021-05-05T19:23:27.2243276Z","lastActionDateTimeUtc":"2021-05-05T19:23:29.2831463Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e882ec1-75b3-4cb3-963f-7e9a8611bdc1","createdDateTimeUtc":"2021-05-05T19:23:08.4467721Z","lastActionDateTimeUtc":"2021-05-05T19:23:21.6510244Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"69d3ddf1-ac9e-4d66-af3d-2ee861c536cf","createdDateTimeUtc":"2021-05-05T19:22:48.5886037Z","lastActionDateTimeUtc":"2021-05-05T19:22:56.4013274Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"747ea5b0-6169-462c-a9ff-dc592c09423a","createdDateTimeUtc":"2021-05-05T19:22:35.5841Z","lastActionDateTimeUtc":"2021-05-05T19:22:42.3518017Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fc156d2a-bf0e-4f13-ac6b-dafe135ef5be","createdDateTimeUtc":"2021-05-05T19:22:18.8341884Z","lastActionDateTimeUtc":"2021-05-05T19:22:26.2740945Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"04bc8cbf-2079-4213-9645-bf78c0ed387d","createdDateTimeUtc":"2021-05-05T19:21:52.1571787Z","lastActionDateTimeUtc":"2021-05-05T19:21:57.3247923Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"aaa0f444-fe46-4a88-b857-cdadb3aa2a3f","createdDateTimeUtc":"2021-05-05T19:21:26.9844798Z","lastActionDateTimeUtc":"2021-05-05T19:21:40.6114813Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"264af210-547e-45ab-997d-3958fb5931e5","createdDateTimeUtc":"2021-05-05T19:21:01.5448312Z","lastActionDateTimeUtc":"2021-05-05T19:21:15.4043226Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"10c5585c-0f75-471a-875e-4d957d95ce54","createdDateTimeUtc":"2021-05-05T19:20:35.8800531Z","lastActionDateTimeUtc":"2021-05-05T19:20:49.922949Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9dda6e54-d9f9-47fd-8661-4b4b0b1d523d","createdDateTimeUtc":"2021-05-05T19:20:18.3536842Z","lastActionDateTimeUtc":"2021-05-05T19:20:23.6774415Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"276463fb-6d89-41d2-9090-e9606b6e8fbe","createdDateTimeUtc":"2021-05-05T19:19:54.4175569Z","lastActionDateTimeUtc":"2021-05-05T19:20:08.5684508Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"68f412e7-2ee5-4c11-9b6c-31cb255f8b99","createdDateTimeUtc":"2021-05-05T19:19:28.2272691Z","lastActionDateTimeUtc":"2021-05-05T19:19:42.87422Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"de58f47e-3439-4db7-a61d-2a146024be17","createdDateTimeUtc":"2021-05-05T19:19:10.6471672Z","lastActionDateTimeUtc":"2021-05-05T19:19:17.196714Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"967a9b89-1548-49df-8b1b-aa59e86e5a93","createdDateTimeUtc":"2021-05-05T19:18:56.8057818Z","lastActionDateTimeUtc":"2021-05-05T19:19:01.5812685Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"edcb6dde-a75f-4b45-8bf8-f268e06017df","createdDateTimeUtc":"2021-05-05T19:18:35.4944106Z","lastActionDateTimeUtc":"2021-05-05T19:18:47.39533Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"be72b0d6-0027-405d-8a17-a1c0a1ee7c8e","createdDateTimeUtc":"2021-05-05T19:18:09.2711669Z","lastActionDateTimeUtc":"2021-05-05T19:18:25.8968483Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=405&$top=2066&$maxpagesize=50"}' + headers: + apim-request-id: bc3b18db-d400-429a-b4c6-3cadda491219 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:04 GMT + etag: '"9FF09895896E73F1C32E3F3637F41C1D408CDB0DF3C7B7BBA4B09AAFBD089196"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bc3b18db-d400-429a-b4c6-3cadda491219 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=355&$top=2116&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=405&$top=2066&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"5d5697bf-92b3-4c0a-8079-ca8c00cfa423","createdDateTimeUtc":"2021-05-05T19:17:55.3502783Z","lastActionDateTimeUtc":"2021-05-05T19:18:01.2581736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50cfe077-b615-4335-9c8d-57de7366cf72","createdDateTimeUtc":"2021-05-05T19:14:12.4097443Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.8494327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ef82d84-ab6f-4120-b744-99dcc7a674aa","createdDateTimeUtc":"2021-05-05T19:14:09.896671Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.3901113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"386c4676-6634-43f3-a7ce-ed596354870a","createdDateTimeUtc":"2021-05-05T19:14:07.2884682Z","lastActionDateTimeUtc":"2021-05-05T19:14:14.0770157Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdd75343-97ec-4004-8a1a-b5c99884f224","createdDateTimeUtc":"2021-05-05T19:14:04.8581665Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.8908281Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"751bf05c-ea0b-477c-8a11-8a854b2512e6","createdDateTimeUtc":"2021-05-05T19:14:02.2654924Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.7245391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19d4d763-825b-474f-a82d-c605e76b1966","createdDateTimeUtc":"2021-05-05T19:13:59.7183092Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.4933766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5add0c8-6f4f-41f7-8065-8fe8f1a5ca44","createdDateTimeUtc":"2021-05-05T19:13:57.2841794Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.2954438Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"80e2f9b4-d944-462b-8833-ba495907ca60","createdDateTimeUtc":"2021-05-05T19:13:54.8179861Z","lastActionDateTimeUtc":"2021-05-05T19:14:13.1278745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"81ec6290-4889-4524-9121-f40a08063c81","createdDateTimeUtc":"2021-05-05T19:13:52.3441605Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.9002381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35f62269-ec35-476a-b5e5-53b727b35a91","createdDateTimeUtc":"2021-05-05T19:13:49.8891277Z","lastActionDateTimeUtc":"2021-05-05T19:14:12.7222629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ef2afc3-fc87-47c9-aefd-0236ee59c6a9","createdDateTimeUtc":"2021-05-05T19:13:36.5960369Z","lastActionDateTimeUtc":"2021-05-05T19:13:42.0024644Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c4e96a2-70b0-4286-8653-ff74585f0434","createdDateTimeUtc":"2021-05-05T19:13:24.6370961Z","lastActionDateTimeUtc":"2021-05-05T19:13:28.6669035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f612c1a8-44c8-4a17-b8c9-fde29beff4f1","createdDateTimeUtc":"2021-05-05T19:13:11.4585845Z","lastActionDateTimeUtc":"2021-05-05T19:13:16.9144231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6413e08d-4ece-4cf5-b96e-187d5d10085c","createdDateTimeUtc":"2021-05-05T19:13:00.6523256Z","lastActionDateTimeUtc":"2021-05-05T19:13:03.6273996Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6992c948-9d2f-45ee-b1ad-b8008b338ee0","createdDateTimeUtc":"2021-05-05T19:12:46.3884454Z","lastActionDateTimeUtc":"2021-05-05T19:12:52.0645899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffab4de9-78ef-4d0d-b246-fec954506c1d","createdDateTimeUtc":"2021-05-05T19:12:35.3671763Z","lastActionDateTimeUtc":"2021-05-05T19:12:38.5763584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"38f9ce4c-d7fb-491b-95d0-7f5f23f077c9","createdDateTimeUtc":"2021-05-05T19:12:21.1240627Z","lastActionDateTimeUtc":"2021-05-05T19:12:26.8644005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"46684198-818e-400e-aee7-3bb02157ea79","createdDateTimeUtc":"2021-05-05T19:12:10.3219054Z","lastActionDateTimeUtc":"2021-05-05T19:12:13.5335663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c98cf51-31c9-4c82-8cad-bb25c76464f3","createdDateTimeUtc":"2021-05-05T19:11:57.1074455Z","lastActionDateTimeUtc":"2021-05-05T19:12:01.8540679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4580a949-7eaa-4884-b0e4-317df66f3f28","createdDateTimeUtc":"2021-05-05T19:11:41.3343508Z","lastActionDateTimeUtc":"2021-05-05T19:11:49.0626374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b4a49330-c5f2-430d-9769-4f2a0dfa3672","createdDateTimeUtc":"2021-05-05T19:09:34.8454412Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.8060756Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"51a61ddf-44cf-465e-bbb7-72c14dbc694d","createdDateTimeUtc":"2021-05-05T19:09:32.3108979Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.6187551Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36a5e023-6d5c-4a1e-a606-556e8624fd91","createdDateTimeUtc":"2021-05-05T19:09:29.7597383Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.443642Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7206938f-cb0f-4151-9dcb-ccec200f5d91","createdDateTimeUtc":"2021-05-05T19:09:27.245746Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.2700314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b8049bbc-0c41-4dbc-a0b4-0080c3cb6f5e","createdDateTimeUtc":"2021-05-05T19:09:24.7154932Z","lastActionDateTimeUtc":"2021-05-05T19:09:36.0908103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b7541096-4eab-4057-a0bf-15c3fa50b25b","createdDateTimeUtc":"2021-05-05T19:09:22.1705351Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.8750435Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b303a3d9-2e1a-453b-9590-c7aaafa62f21","createdDateTimeUtc":"2021-05-05T19:09:19.6278444Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.7136008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7401e80e-d6e1-45eb-96f0-b0f0d5036c20","createdDateTimeUtc":"2021-05-05T19:09:16.984929Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.5181783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f2631072-4439-42c0-81fe-37d7e72857a0","createdDateTimeUtc":"2021-05-05T19:09:14.4529721Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.3442752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91c99eae-44ad-4902-9efd-74c2374e2a39","createdDateTimeUtc":"2021-05-05T19:09:12.0452659Z","lastActionDateTimeUtc":"2021-05-05T19:09:35.1798728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"adedcbde-2d73-4657-a8e3-e1012e1bb010","createdDateTimeUtc":"2021-05-05T19:08:59.6742672Z","lastActionDateTimeUtc":"2021-05-05T19:09:03.3456614Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb807004-e4af-4c02-a21f-710605a98ef3","createdDateTimeUtc":"2021-05-05T19:08:47.6004287Z","lastActionDateTimeUtc":"2021-05-05T19:08:51.3769109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a0d99a-64f0-46c9-9e87-14cc3cdb70b5","createdDateTimeUtc":"2021-05-05T19:08:34.2113676Z","lastActionDateTimeUtc":"2021-05-05T19:08:38.2674234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0375b8b3-235e-4504-831b-47769d9c6b19","createdDateTimeUtc":"2021-05-05T19:08:22.1095809Z","lastActionDateTimeUtc":"2021-05-05T19:08:26.3566077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a785c187-450d-4929-b541-ca22e6a3c66b","createdDateTimeUtc":"2021-05-05T19:08:10.0216308Z","lastActionDateTimeUtc":"2021-05-05T19:08:13.2434415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dae7be2d-228d-4471-b091-b07ced243333","createdDateTimeUtc":"2021-05-05T19:07:54.3958816Z","lastActionDateTimeUtc":"2021-05-05T19:08:01.2749415Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f30e15aa-7fef-4352-ab9a-0b48868b85dd","createdDateTimeUtc":"2021-05-05T19:07:40.0069695Z","lastActionDateTimeUtc":"2021-05-05T19:07:48.2204014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"471333ad-4240-48c8-b3ba-9640629b9551","createdDateTimeUtc":"2021-05-05T19:07:17.2887791Z","lastActionDateTimeUtc":"2021-05-05T19:07:26.2267273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8dc8732-187f-4943-9475-fe9f233cac2e","createdDateTimeUtc":"2021-05-05T19:06:54.7873667Z","lastActionDateTimeUtc":"2021-05-05T19:07:03.5307271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c716ee9d-ca43-4c83-a715-2b71c8c203fd","createdDateTimeUtc":"2021-05-05T19:06:36.9716103Z","lastActionDateTimeUtc":"2021-05-05T19:06:41.2278754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ed0aadba-b2e7-404f-957c-cfbc2e05db3e","createdDateTimeUtc":"2021-05-05T19:04:44.1688295Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.4663656Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"203a51e7-f8ae-4549-93de-d87338b40661","createdDateTimeUtc":"2021-05-05T19:04:41.5738881Z","lastActionDateTimeUtc":"2021-05-05T19:04:46.1091463Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"3be8fe86-07b1-4427-ad9a-a171874e3624","createdDateTimeUtc":"2021-05-05T19:04:39.0391879Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.9518691Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6f420225-d896-433b-9d92-91be3ab901ce","createdDateTimeUtc":"2021-05-05T19:04:36.4354643Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.7116998Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a5b86674-db2d-4d96-b0ca-0d5d7960b2e7","createdDateTimeUtc":"2021-05-05T19:04:33.823098Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.5248321Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"678dac98-5fde-4f68-bc93-3193d879f158","createdDateTimeUtc":"2021-05-05T19:04:31.2993234Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.3124786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"76cb621e-4117-4f34-992c-2b34de787130","createdDateTimeUtc":"2021-05-05T19:04:28.7973966Z","lastActionDateTimeUtc":"2021-05-05T19:04:45.1292307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2603f92e-f1f8-468c-b33f-18c7f9edaf2b","createdDateTimeUtc":"2021-05-05T19:04:26.2984398Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.956926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8c2d37a0-9690-4560-8f08-57eeac70bb72","createdDateTimeUtc":"2021-05-05T19:04:23.7885946Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.79707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=455&$top=2016&$maxpagesize=50"}' + headers: + apim-request-id: 41159dc2-0bbe-4107-bd8f-119b6f7d201e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:04 GMT + etag: '"16E2CF359BF1D20EDB9912335CCCCEEFE6A4DBC188E3EC602D1FCFA57DF5FDB4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 41159dc2-0bbe-4107-bd8f-119b6f7d201e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=405&$top=2066&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=455&$top=2016&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3703b45f-744b-484f-bf92-d0c2e66dfd6e","createdDateTimeUtc":"2021-05-05T19:04:21.2360859Z","lastActionDateTimeUtc":"2021-05-05T19:04:44.5465654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2605a631-3eb9-4511-ac4f-40c07df82eb6","createdDateTimeUtc":"2021-05-05T19:04:09.1842291Z","lastActionDateTimeUtc":"2021-05-05T19:04:12.8137315Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8af33f5b-32b0-40a7-93e4-98342d05a180","createdDateTimeUtc":"2021-05-05T19:03:54.5510881Z","lastActionDateTimeUtc":"2021-05-05T19:03:57.7675745Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"317a5c23-cfd4-4d43-a38d-d407541ac865","createdDateTimeUtc":"2021-05-05T19:03:38.8532298Z","lastActionDateTimeUtc":"2021-05-05T19:03:47.7213584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"543976f7-1544-4917-b7bb-25dc97ad3082","createdDateTimeUtc":"2021-05-05T19:03:26.5653433Z","lastActionDateTimeUtc":"2021-05-05T19:03:32.8564457Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65335a26-4eb2-43b6-a5c9-105a6590b933","createdDateTimeUtc":"2021-05-05T19:03:14.606414Z","lastActionDateTimeUtc":"2021-05-05T19:03:17.7382613Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96f18681-8a31-414c-886b-f34d47c3f24b","createdDateTimeUtc":"2021-05-05T19:03:01.0803445Z","lastActionDateTimeUtc":"2021-05-05T19:03:02.7374265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7590be36-fd8b-44ca-95bf-34b9dfa7e493","createdDateTimeUtc":"2021-05-05T19:02:49.0363697Z","lastActionDateTimeUtc":"2021-05-05T19:02:55.678476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17513473-32f5-457a-b94c-84f2bf33d739","createdDateTimeUtc":"2021-05-05T19:02:36.7254142Z","lastActionDateTimeUtc":"2021-05-05T19:02:42.6665016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9110bcd5-db47-49b2-a029-b8fa515499f3","createdDateTimeUtc":"2021-05-05T19:02:23.4852728Z","lastActionDateTimeUtc":"2021-05-05T19:02:30.5586623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"381b1100-6515-4c19-9063-bab2f58c173d","createdDateTimeUtc":"2021-05-05T19:02:12.7129027Z","lastActionDateTimeUtc":"2021-05-05T19:02:16.0674675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c7777541-0793-4117-bef7-17f096f478f0","createdDateTimeUtc":"2021-05-04T22:26:37.5276983Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.6188406Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"228e2de3-3394-490d-93a0-624c73f939b8","createdDateTimeUtc":"2021-05-04T22:26:34.9265001Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.2177913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72bd2b87-18ac-4f87-b7fd-54ad4d160fb7","createdDateTimeUtc":"2021-05-04T22:26:32.2836781Z","lastActionDateTimeUtc":"2021-05-04T22:26:39.0565599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dcac8ae-9e8c-4197-8b60-01198b7ba5f2","createdDateTimeUtc":"2021-05-04T22:26:29.7852694Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.8805867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ccfd795-75f6-4314-8562-dc2f6bd8dc68","createdDateTimeUtc":"2021-05-04T22:26:27.2044174Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.717585Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"009150aa-5073-47c4-bf04-06d1a7d0e693","createdDateTimeUtc":"2021-05-04T22:26:24.7375713Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.5043971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37355a4a-75ab-41c3-b8b2-b8c1bae0beba","createdDateTimeUtc":"2021-05-04T22:26:22.1701851Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.3300855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9ecbff5-76df-4769-bb84-cd6c84167a5b","createdDateTimeUtc":"2021-05-04T22:26:19.6966458Z","lastActionDateTimeUtc":"2021-05-04T22:26:38.1493822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c3bbfc8e-d63b-45c4-9970-a46ab43c0334","createdDateTimeUtc":"2021-05-04T22:26:17.0849407Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.990905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e069f3e5-2f2e-42e2-9f8e-cb2525ea2fad","createdDateTimeUtc":"2021-05-04T22:26:14.5866041Z","lastActionDateTimeUtc":"2021-05-04T22:26:37.8292505Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fe82c8ab-8775-488a-b78b-caa7b70871cb","createdDateTimeUtc":"2021-05-04T22:25:59.0109256Z","lastActionDateTimeUtc":"2021-05-04T22:26:11.1374335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4190c9b0-7753-4895-a490-8027080faa04","createdDateTimeUtc":"2021-05-04T22:25:48.0443052Z","lastActionDateTimeUtc":"2021-05-04T22:25:51.4037179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"01119aee-3ae1-44dd-97b6-9bacc9cfdae6","createdDateTimeUtc":"2021-05-04T22:25:34.7733712Z","lastActionDateTimeUtc":"2021-05-04T22:25:45.5278074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"115f0b1a-3747-4318-b42d-ed9223d2c1e3","createdDateTimeUtc":"2021-05-04T22:25:23.8738178Z","lastActionDateTimeUtc":"2021-05-04T22:25:26.1840746Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"67b23747-e98a-424d-8f68-87d3457a2900","createdDateTimeUtc":"2021-05-04T22:25:09.540848Z","lastActionDateTimeUtc":"2021-05-04T22:25:20.2638256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"876eac95-20b1-4d2a-a5fe-bd16a9980cea","createdDateTimeUtc":"2021-05-04T22:24:58.5389901Z","lastActionDateTimeUtc":"2021-05-04T22:25:01.191936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d0582f8-c4bb-419f-9f66-d58536997d0c","createdDateTimeUtc":"2021-05-04T22:24:44.1120036Z","lastActionDateTimeUtc":"2021-05-04T22:24:55.1677498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d778b8e1-f6a1-4194-8ee3-b452b2b8a3e0","createdDateTimeUtc":"2021-05-04T22:24:33.216681Z","lastActionDateTimeUtc":"2021-05-04T22:24:35.8259077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"33ad2798-6e79-4510-ad91-3147ce69a851","createdDateTimeUtc":"2021-05-04T22:24:17.2886314Z","lastActionDateTimeUtc":"2021-05-04T22:24:29.9062447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"577f3501-c37c-454c-8a02-631ecb102323","createdDateTimeUtc":"2021-05-04T22:24:08.6788183Z","lastActionDateTimeUtc":"2021-05-04T22:24:14.7765588Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7345df40-c773-45a1-b701-cbfda5267a8b","createdDateTimeUtc":"2021-05-04T22:23:34.7072647Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.7358292Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f2031110-fb3a-4392-9e6c-f71a7713683f","createdDateTimeUtc":"2021-05-04T22:23:32.2681253Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.440759Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3260f22-d2b0-4953-afb5-101d5fb610a9","createdDateTimeUtc":"2021-05-04T22:23:29.7052629Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.2643352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"474d52ad-52cb-4e50-9030-c450c3bc1dcb","createdDateTimeUtc":"2021-05-04T22:23:27.2479296Z","lastActionDateTimeUtc":"2021-05-04T22:23:36.1046934Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"863a0a61-4dcc-4df7-b5d7-16aab0b5b4cd","createdDateTimeUtc":"2021-05-04T22:23:24.7176955Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.9311286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"735e7f13-75f3-4991-926b-53bf1fc1dd2d","createdDateTimeUtc":"2021-05-04T22:23:22.2106695Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.7178883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"baef4908-5ed1-47a2-abc2-1d78cf0fa0ea","createdDateTimeUtc":"2021-05-04T22:23:19.6261362Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.543366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3452b92f-e60d-4fb7-837c-afe3145fdf51","createdDateTimeUtc":"2021-05-04T22:23:17.1525661Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.365045Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23462b75-d321-492c-b063-17ac30d435e6","createdDateTimeUtc":"2021-05-04T22:23:14.5426414Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.2046126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"366fb985-164a-429e-9262-0f68a03d0881","createdDateTimeUtc":"2021-05-04T22:23:12.0527581Z","lastActionDateTimeUtc":"2021-05-04T22:23:35.0258881Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c407cadc-b914-4ea1-8e46-66d82b55e425","createdDateTimeUtc":"2021-05-04T22:23:01.1059602Z","lastActionDateTimeUtc":"2021-05-04T22:23:09.5318863Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7415d425-dc4f-4dc6-96bd-8ad8cdb9fece","createdDateTimeUtc":"2021-05-04T22:22:37.3438436Z","lastActionDateTimeUtc":"2021-05-04T22:22:44.8993375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0ec6fbe-62c7-4ea1-958e-b805ccdefe22","createdDateTimeUtc":"2021-05-04T22:22:26.4190245Z","lastActionDateTimeUtc":"2021-05-04T22:22:34.0220041Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dbc36cc5-15a6-4eda-8e39-df7fb198dc87","createdDateTimeUtc":"2021-05-04T22:22:11.9474099Z","lastActionDateTimeUtc":"2021-05-04T22:22:14.5246003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3c7bafb-9ba2-4e71-8440-bbaf21ff7436","createdDateTimeUtc":"2021-05-04T22:22:04.52159Z","lastActionDateTimeUtc":"2021-05-04T22:22:09.1038878Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a184870b-7c0d-49d3-9394-4bc92dacf902","createdDateTimeUtc":"2021-05-04T22:21:58.209191Z","lastActionDateTimeUtc":"2021-05-04T22:22:01.8689246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"929ab770-d195-42ef-b7b3-259505196b3b","createdDateTimeUtc":"2021-05-04T22:21:50.7300024Z","lastActionDateTimeUtc":"2021-05-04T22:21:54.9175607Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c577ffa4-9cc3-4e78-9f45-6c04f6743639","createdDateTimeUtc":"2021-05-04T22:21:44.5044697Z","lastActionDateTimeUtc":"2021-05-04T22:21:46.0093248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9bcfa17-00c7-4866-9ed6-ee4beeb89ee7","createdDateTimeUtc":"2021-05-04T22:21:37.0565041Z","lastActionDateTimeUtc":"2021-05-04T22:21:39.0333099Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=505&$top=1966&$maxpagesize=50"}' + headers: + apim-request-id: c072d40e-224e-4aba-8746-dfe830ec1793 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:04 GMT + etag: '"266233DDB4FFCE9A7FE124AF8C750588F52BDE1B4D9E157F3DEFF6265F3AC959"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c072d40e-224e-4aba-8746-dfe830ec1793 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=455&$top=2016&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=505&$top=1966&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"b7be2593-a9f1-4b7d-9892-1ff25079d14a","createdDateTimeUtc":"2021-05-04T22:21:28.4665273Z","lastActionDateTimeUtc":"2021-05-04T22:21:31.9575251Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f53b05c-c234-476d-b44d-386e46c50bad","createdDateTimeUtc":"2021-05-04T22:20:14.6602681Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.8818279Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"377ce153-bea8-4ec1-bdcc-e955fa404b74","createdDateTimeUtc":"2021-05-04T22:20:12.0374908Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.6409884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6b453c1-686d-4d09-b409-61964a4c8bd5","createdDateTimeUtc":"2021-05-04T22:20:09.3273807Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.4271714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fcc6cdb3-439f-46ab-93ea-18683aff6668","createdDateTimeUtc":"2021-05-04T22:20:06.8977987Z","lastActionDateTimeUtc":"2021-05-04T22:20:16.2659078Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e46d9b4-c5ff-4943-a8ea-942d2cf4c430","createdDateTimeUtc":"2021-05-04T22:20:04.3912335Z","lastActionDateTimeUtc":"2021-05-04T22:20:09.3212659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b65268ea-f05b-43b7-a185-c7076c562796","createdDateTimeUtc":"2021-05-04T22:20:01.383307Z","lastActionDateTimeUtc":"2021-05-04T22:20:06.1884448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52a92e95-007c-4f0e-a345-db1e0f4e4218","createdDateTimeUtc":"2021-05-04T22:19:58.479385Z","lastActionDateTimeUtc":"2021-05-04T22:20:02.9773214Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0da0f07e-2d2a-4fc6-9fa9-38fe2bc617ba","createdDateTimeUtc":"2021-05-04T22:19:55.6539664Z","lastActionDateTimeUtc":"2021-05-04T22:20:00.227006Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c8b1357f-fc04-4414-adc5-9d1f2b3c1677","createdDateTimeUtc":"2021-05-04T22:19:52.4966516Z","lastActionDateTimeUtc":"2021-05-04T22:19:58.4456947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"078d3c8f-1591-48c6-85b2-4048c4873801","createdDateTimeUtc":"2021-05-04T22:19:50.049379Z","lastActionDateTimeUtc":"2021-05-04T22:19:57.7923549Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c397bb1b-f1db-427a-b1ee-9e89329167d7","createdDateTimeUtc":"2021-05-04T22:19:35.5878578Z","lastActionDateTimeUtc":"2021-05-04T22:19:40.0060458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e70037a3-08ee-41a2-95ae-2054e0d23dbc","createdDateTimeUtc":"2021-05-04T22:19:24.6549032Z","lastActionDateTimeUtc":"2021-05-04T22:19:32.8723946Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4a5cd2bf-0fbd-4181-b1b0-7a00327c2656","createdDateTimeUtc":"2021-05-04T22:19:11.3850675Z","lastActionDateTimeUtc":"2021-05-04T22:19:14.7295933Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"21789f4c-5c9e-4d98-a2ab-9e8f56308189","createdDateTimeUtc":"2021-05-04T22:18:59.270616Z","lastActionDateTimeUtc":"2021-05-04T22:19:07.7298486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8d49f2d-8983-4a05-a668-4c6e7782d28d","createdDateTimeUtc":"2021-05-04T22:18:44.7861852Z","lastActionDateTimeUtc":"2021-05-04T22:18:49.6279941Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"40806719-378b-458d-828f-0d703c26641f","createdDateTimeUtc":"2021-05-04T22:18:35.0007464Z","lastActionDateTimeUtc":"2021-05-04T22:18:42.2589402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ac16d3c7-ad5b-4e11-b22b-df5ea5969db3","createdDateTimeUtc":"2021-05-04T22:18:20.5787686Z","lastActionDateTimeUtc":"2021-05-04T22:18:24.5349855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d3c57695-9cc4-4558-880a-76c29747126b","createdDateTimeUtc":"2021-05-04T22:18:09.1554819Z","lastActionDateTimeUtc":"2021-05-04T22:18:17.0714504Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9128b1b3-cbee-41fe-b015-d593ca267d5c","createdDateTimeUtc":"2021-05-04T22:17:54.6263868Z","lastActionDateTimeUtc":"2021-05-04T22:17:59.4874823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54da60fb-11bb-4127-bd0b-c4c0c9b4718b","createdDateTimeUtc":"2021-05-04T22:17:39.0350942Z","lastActionDateTimeUtc":"2021-05-04T22:17:47.9516065Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3c1b41b2-5082-4870-a804-6d854fb3fb8d","createdDateTimeUtc":"2021-05-04T22:16:12.2209217Z","lastActionDateTimeUtc":"2021-05-04T22:16:14.0978684Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fa191d70-7d43-4f15-b9f7-c9c59cc7bac0","createdDateTimeUtc":"2021-05-04T22:16:09.5850243Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.9269445Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"30eb4474-c3ca-462e-a407-1e808d0eff0d","createdDateTimeUtc":"2021-05-04T22:16:06.7242257Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.7666262Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b974c0c4-21f1-4f7b-8ddc-7c033a1348c4","createdDateTimeUtc":"2021-05-04T22:16:04.2587987Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.6076655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"351a6f59-f585-46a2-969b-6af8556ab448","createdDateTimeUtc":"2021-05-04T22:16:01.5847052Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.4443284Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7332b5f4-4f83-4c51-8fac-13fd7060d585","createdDateTimeUtc":"2021-05-04T22:15:59.129415Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.2446942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c89a2c8-a133-4c46-9b04-e00412e2f104","createdDateTimeUtc":"2021-05-04T22:15:56.5989182Z","lastActionDateTimeUtc":"2021-05-04T22:16:13.0683947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"510b025c-0a72-44c5-9b2f-a728078b517b","createdDateTimeUtc":"2021-05-04T22:15:54.1274041Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.885799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89abbe0f-4593-4a62-b58d-263631882dfa","createdDateTimeUtc":"2021-05-04T22:15:51.427808Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.7184726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955c0784-85f0-4c8a-9ac7-c6cf8e2d997a","createdDateTimeUtc":"2021-05-04T22:15:48.7470242Z","lastActionDateTimeUtc":"2021-05-04T22:16:12.5339494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"463407bd-0489-4746-8f9b-4e4fc8cdde8c","createdDateTimeUtc":"2021-05-04T22:15:34.3093275Z","lastActionDateTimeUtc":"2021-05-04T22:15:42.6572159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8b60a9dd-7ca4-4b2b-8bfa-05d4019c2f5a","createdDateTimeUtc":"2021-05-04T22:15:24.4281767Z","lastActionDateTimeUtc":"2021-05-04T22:15:31.2558782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0c459ec5-ed8d-4356-aad9-86baa6d640bb","createdDateTimeUtc":"2021-05-04T22:15:08.8448891Z","lastActionDateTimeUtc":"2021-05-04T22:15:12.3244389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1832443f-54a8-4643-ad6d-dce33c2538a8","createdDateTimeUtc":"2021-05-04T22:14:53.1448068Z","lastActionDateTimeUtc":"2021-05-04T22:15:00.3532154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ff81f95-1361-46b2-aa81-634ee534c22d","createdDateTimeUtc":"2021-05-04T22:14:39.5540997Z","lastActionDateTimeUtc":"2021-05-04T22:14:47.4303805Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8b44da8-6c90-4522-8e7c-683ad09a3c01","createdDateTimeUtc":"2021-05-04T22:14:28.3571127Z","lastActionDateTimeUtc":"2021-05-04T22:14:36.1787494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"839771d8-1ec1-4e89-b94d-9af9fd6195a7","createdDateTimeUtc":"2021-05-04T22:14:13.9492485Z","lastActionDateTimeUtc":"2021-05-04T22:14:17.1945411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fb17ec6b-317a-466d-b247-93046a528fa3","createdDateTimeUtc":"2021-05-04T22:14:02.9815171Z","lastActionDateTimeUtc":"2021-05-04T22:14:11.020926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a13d0226-f4c1-4575-85c5-c442955703d9","createdDateTimeUtc":"2021-05-04T22:13:47.4288288Z","lastActionDateTimeUtc":"2021-05-04T22:13:51.8148313Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab1dff9c-6c57-490c-a9f4-92cd03afaded","createdDateTimeUtc":"2021-05-04T22:13:33.0858727Z","lastActionDateTimeUtc":"2021-05-04T22:13:40.1554631Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d28e118e-139a-42af-bfaa-b4b7f969a0a9","createdDateTimeUtc":"2021-05-04T22:12:32.8802104Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.0597762Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0a923bd3-a771-415e-9860-0d2d372764fd","createdDateTimeUtc":"2021-05-04T22:12:30.3350497Z","lastActionDateTimeUtc":"2021-05-04T22:12:34.9175811Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"a2377ed8-8509-420e-9a5e-23c76c4fe368","createdDateTimeUtc":"2021-05-04T22:12:27.8681263Z","lastActionDateTimeUtc":"2021-05-04T22:12:32.5624655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ba938ef1-cf86-431e-bbe4-1b0722442348","createdDateTimeUtc":"2021-05-04T22:12:25.3156434Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6030269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f83c3c30-0ea3-49e4-bf9e-a6b41177e06f","createdDateTimeUtc":"2021-05-04T22:12:22.8513122Z","lastActionDateTimeUtc":"2021-05-04T22:12:31.6602511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f0e1c4ad-a350-4699-a7ee-31edb847d4c9","createdDateTimeUtc":"2021-05-04T22:12:07.2710947Z","lastActionDateTimeUtc":"2021-05-04T22:12:11.4831647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"72e30868-e367-44a1-bbda-4ceb7400894f","createdDateTimeUtc":"2021-05-04T22:11:52.8306894Z","lastActionDateTimeUtc":"2021-05-04T22:11:56.6937845Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"024c6880-8296-4472-9f38-8939d11c4c3e","createdDateTimeUtc":"2021-05-04T22:11:38.3699448Z","lastActionDateTimeUtc":"2021-05-04T22:11:46.6370425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da0bb292-92c8-4447-826b-0839a330c0ac","createdDateTimeUtc":"2021-05-04T22:11:27.3758048Z","lastActionDateTimeUtc":"2021-05-04T22:11:35.2244364Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=555&$top=1916&$maxpagesize=50"}' + headers: + apim-request-id: f969a3b5-d892-4f49-abce-72c56e17db26 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:05 GMT + etag: '"3D8394857AD71E5C502F892CBEF5A940E5AACEA0F7B0CF763516EF67BAD63B5B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f969a3b5-d892-4f49-abce-72c56e17db26 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=505&$top=1966&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=555&$top=1916&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"8e4ceb87-20bd-4ac4-81bb-5447c1d72e5b","createdDateTimeUtc":"2021-05-04T22:11:08.3481323Z","lastActionDateTimeUtc":"2021-05-04T22:11:15.9415432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91b77e25-3772-476c-98f6-6a981136d1b7","createdDateTimeUtc":"2021-05-04T22:10:07.7582572Z","lastActionDateTimeUtc":"2021-05-04T22:10:10.1435705Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"373daa7f-8ca7-42ae-ae88-bfc9519cd625","createdDateTimeUtc":"2021-05-04T22:10:05.1640267Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.2384179Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d46a266-3abc-481b-ba58-5f6ca38cf730","createdDateTimeUtc":"2021-05-04T22:10:02.1408655Z","lastActionDateTimeUtc":"2021-05-04T22:10:09.1907141Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"7efdb93e-70b8-44ed-b754-9a023f82db47","createdDateTimeUtc":"2021-05-04T22:09:59.1502791Z","lastActionDateTimeUtc":"2021-05-04T22:10:03.1323547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ec6bbc8-8c2b-4ed8-9f10-4094cfb81dfe","createdDateTimeUtc":"2021-05-04T22:09:56.5296231Z","lastActionDateTimeUtc":"2021-05-04T22:09:59.9084724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"25e31765-4d8d-4609-9b06-b25761db4fb9","createdDateTimeUtc":"2021-05-04T22:09:49.0310348Z","lastActionDateTimeUtc":"2021-05-04T22:09:52.8402343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d312015e-b642-4317-ae02-da210c792a02","createdDateTimeUtc":"2021-05-04T22:09:41.4723449Z","lastActionDateTimeUtc":"2021-05-04T22:09:45.8690316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6f358db-1897-455a-906d-f20062f6de3c","createdDateTimeUtc":"2021-05-04T22:09:35.0718854Z","lastActionDateTimeUtc":"2021-05-04T22:09:38.7357813Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2e7b9f45-2dfe-4ea3-806f-51f3ca7fe495","createdDateTimeUtc":"2021-05-04T22:09:27.5674708Z","lastActionDateTimeUtc":"2021-05-04T22:09:31.815572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ea36e44-080b-473d-8cfc-e844194da4e6","createdDateTimeUtc":"2021-05-04T22:09:18.9378898Z","lastActionDateTimeUtc":"2021-05-04T22:09:24.6383696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b625560a-159c-4c79-ba78-0da440a5eeaa","createdDateTimeUtc":"2021-05-04T22:07:54.9565465Z","lastActionDateTimeUtc":"2021-05-04T22:07:59.3998577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521b036d-3134-4526-8b7c-2644c35af86f","createdDateTimeUtc":"2021-05-04T22:07:52.25263Z","lastActionDateTimeUtc":"2021-05-04T22:07:56.3585966Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86025c6c-43ef-4e5f-8724-e08219790ba8","createdDateTimeUtc":"2021-05-04T22:07:49.5370005Z","lastActionDateTimeUtc":"2021-05-04T22:07:53.4419167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7529aae2-ebec-4627-83f4-2eb50e5a7474","createdDateTimeUtc":"2021-05-04T22:07:46.9661002Z","lastActionDateTimeUtc":"2021-05-04T22:07:52.267154Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90ad1894-c889-4e61-8ee0-5e0799c7f289","createdDateTimeUtc":"2021-05-04T22:07:44.4834128Z","lastActionDateTimeUtc":"2021-05-04T22:07:49.2830277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"448334a8-194e-4d1f-a5c2-bcbbb31173ef","createdDateTimeUtc":"2021-05-04T22:07:41.8188737Z","lastActionDateTimeUtc":"2021-05-04T22:07:46.0777846Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d496cbe5-a48b-4516-97ab-b4e1633b1892","createdDateTimeUtc":"2021-05-04T22:07:39.2890334Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.8557976Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"47818cfe-f5b9-454d-beb0-6fb08d5aacb3","createdDateTimeUtc":"2021-05-04T22:07:36.7408506Z","lastActionDateTimeUtc":"2021-05-04T22:07:42.0848778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3fcfad82-d435-464f-98c3-f958ba0fff6c","createdDateTimeUtc":"2021-05-04T22:07:34.2751631Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8297323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a44c231b-195f-4c25-8bd9-ee2dd1fdf0bc","createdDateTimeUtc":"2021-05-04T22:07:31.7028846Z","lastActionDateTimeUtc":"2021-05-04T22:07:40.8275306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0f1d409e-58db-42c4-91af-aa79fd9a7074","createdDateTimeUtc":"2021-05-04T22:07:28.1564977Z","lastActionDateTimeUtc":"2021-05-04T22:07:32.2438205Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c2b822f-0f6b-4bb0-aff1-e8680db3f37b","createdDateTimeUtc":"2021-05-04T22:07:25.5754312Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.4101584Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f6351119-644e-443a-bbcb-b4201d75e459","createdDateTimeUtc":"2021-05-04T22:07:23.1277371Z","lastActionDateTimeUtc":"2021-05-04T22:07:31.3249929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1c7bcbe3-404f-4041-a904-632868a0ae85","createdDateTimeUtc":"2021-05-04T22:07:20.5513399Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0632182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"634a0aea-1830-46fe-a342-c7eabba844a3","createdDateTimeUtc":"2021-05-04T22:07:18.0766473Z","lastActionDateTimeUtc":"2021-05-04T22:07:30.0368775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"903c6743-76dd-4503-8f96-ce425fa0f705","createdDateTimeUtc":"2021-05-04T22:07:03.6000692Z","lastActionDateTimeUtc":"2021-05-04T22:07:15.1883794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e05067ab-10ed-47f5-9ed4-90ae3f363e08","createdDateTimeUtc":"2021-05-04T22:06:51.471163Z","lastActionDateTimeUtc":"2021-05-04T22:06:59.9246106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23cf5723-bfe7-4091-8233-1ab3a7edcafb","createdDateTimeUtc":"2021-05-04T22:06:38.2373799Z","lastActionDateTimeUtc":"2021-05-04T22:06:40.7209568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"313e62ce-f6f4-4cd9-8b67-b6e424ac82ef","createdDateTimeUtc":"2021-05-04T22:06:22.6843793Z","lastActionDateTimeUtc":"2021-05-04T22:06:34.9306781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9d91b3bb-b40e-4d0e-b394-8dc968e6fc12","createdDateTimeUtc":"2021-05-04T22:06:07.0482566Z","lastActionDateTimeUtc":"2021-05-04T22:06:19.8445804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9173166e-3956-4f6c-93d9-1e77a3a0cd1c","createdDateTimeUtc":"2021-05-04T22:05:56.1403913Z","lastActionDateTimeUtc":"2021-05-04T22:06:04.4692741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"878a9567-e03d-476f-b404-ba0496083047","createdDateTimeUtc":"2021-05-04T22:05:42.582719Z","lastActionDateTimeUtc":"2021-05-04T22:05:45.4066027Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"299b9dd7-ecb2-4d5d-8cba-39b7a8d7ffcb","createdDateTimeUtc":"2021-05-04T22:05:28.0607794Z","lastActionDateTimeUtc":"2021-05-04T22:05:39.4061656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae542bf1-4994-4d93-b3e5-bed44f8c14f8","createdDateTimeUtc":"2021-05-04T22:05:12.3868347Z","lastActionDateTimeUtc":"2021-05-04T22:05:24.3627141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c17995b7-b146-474a-bb77-264ed8e7dc70","createdDateTimeUtc":"2021-05-04T22:05:01.2865898Z","lastActionDateTimeUtc":"2021-05-04T22:05:09.2141695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6184af11-0696-44b2-9523-81023626806e","createdDateTimeUtc":"2021-05-04T22:04:46.4854961Z","lastActionDateTimeUtc":"2021-05-04T22:04:50.2724645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"18b801b1-6852-4d99-a31e-71beb3a959ab","createdDateTimeUtc":"2021-05-04T22:04:35.605871Z","lastActionDateTimeUtc":"2021-05-04T22:04:43.9210254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"88929fd4-cbed-4b1d-9e81-23796f7b4de0","createdDateTimeUtc":"2021-05-04T22:04:22.3466102Z","lastActionDateTimeUtc":"2021-05-04T22:04:25.3230958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c923d637-e085-444f-b5fd-a846b0153473","createdDateTimeUtc":"2021-05-04T22:04:06.7267952Z","lastActionDateTimeUtc":"2021-05-04T22:04:18.7664462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3415e503-148e-4790-bf2e-e54173b5efbc","createdDateTimeUtc":"2021-05-04T22:03:51.1778981Z","lastActionDateTimeUtc":"2021-05-04T22:04:04.2032592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c5860189-cc92-48cd-8bb5-fd799f43a2cd","createdDateTimeUtc":"2021-05-04T21:33:20.3653861Z","lastActionDateTimeUtc":"2021-05-04T21:33:24.2310387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f42d72c1-b9a5-45fd-bf33-74ffb4a1680c","createdDateTimeUtc":"2021-05-04T21:33:17.4273825Z","lastActionDateTimeUtc":"2021-05-04T21:33:20.9648437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"32a33644-6910-4855-b66e-44d08e4251a7","createdDateTimeUtc":"2021-05-04T21:33:14.8095541Z","lastActionDateTimeUtc":"2021-05-04T21:33:18.0194481Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23dd90dd-1081-4af7-8323-8bc7f292b3c7","createdDateTimeUtc":"2021-05-04T21:33:12.2109265Z","lastActionDateTimeUtc":"2021-05-04T21:33:16.8585928Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"acb1503a-9769-4185-b1c4-0797c0e5abab","createdDateTimeUtc":"2021-05-04T21:33:09.5408872Z","lastActionDateTimeUtc":"2021-05-04T21:33:12.293749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf747e86-0625-420d-86f6-91c9b0ede3f6","createdDateTimeUtc":"2021-05-04T21:33:07.0313637Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.2800725Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"914aab9e-4b69-4ec3-bc38-7442210a47b0","createdDateTimeUtc":"2021-05-04T21:33:04.3678591Z","lastActionDateTimeUtc":"2021-05-04T21:33:09.9015165Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e36597dc-92f8-439f-b16e-ce26f7303837","createdDateTimeUtc":"2021-05-04T21:33:01.8810948Z","lastActionDateTimeUtc":"2021-05-04T21:33:06.683587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d74965b7-7395-4abd-b499-29f563fba1ed","createdDateTimeUtc":"2021-05-04T21:32:59.3478083Z","lastActionDateTimeUtc":"2021-05-04T21:33:03.5301492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=605&$top=1866&$maxpagesize=50"}' + headers: + apim-request-id: 3a8a824e-3576-4fe9-af2e-a9a5d346adb6 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:05 GMT + etag: '"7F4EE567A74FCC3F6BB732C6F64024B9035CDEEB0B3D5FF81F899658A24AF237"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3a8a824e-3576-4fe9-af2e-a9a5d346adb6 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=555&$top=1916&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=605&$top=1866&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"4a517218-18cd-46e8-9b80-7553759c8ebd","createdDateTimeUtc":"2021-05-04T21:32:56.6308291Z","lastActionDateTimeUtc":"2021-05-04T21:33:00.6545661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4d7444b-aa15-4c9a-bd15-6a5eb17d67e2","createdDateTimeUtc":"2021-05-04T21:32:54.071044Z","lastActionDateTimeUtc":"2021-05-04T21:32:57.4957535Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4bae3f1-f154-46ba-9a57-deccc84820ca","createdDateTimeUtc":"2021-05-04T21:32:51.3144591Z","lastActionDateTimeUtc":"2021-05-04T21:32:52.9586182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bf9604e8-ac32-4ad1-8b4f-a6e87e833aae","createdDateTimeUtc":"2021-05-04T21:32:48.1024881Z","lastActionDateTimeUtc":"2021-05-04T21:32:50.6953804Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"768c4470-62c5-4454-b735-db90598050f3","createdDateTimeUtc":"2021-05-04T21:32:43.4198506Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.3708583Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9134825-7e1e-4e4f-9a0b-006b8cc63c9e","createdDateTimeUtc":"2021-05-04T21:32:40.9869214Z","lastActionDateTimeUtc":"2021-05-04T21:32:49.8237427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d6c182dd-395d-4b92-867d-e772d4aead89","createdDateTimeUtc":"2021-05-04T21:32:27.4056188Z","lastActionDateTimeUtc":"2021-05-04T21:32:30.276544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e092dfce-bb78-43df-ba5e-29332c7e1d9f","createdDateTimeUtc":"2021-05-04T21:32:16.2009574Z","lastActionDateTimeUtc":"2021-05-04T21:32:24.2408067Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c05929de-be20-4cd9-a2d7-ccb6927a3d95","createdDateTimeUtc":"2021-05-04T21:32:02.8052966Z","lastActionDateTimeUtc":"2021-05-04T21:32:05.2552131Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae491268-eb42-463e-a436-47e0e7444218","createdDateTimeUtc":"2021-05-04T21:31:50.5291348Z","lastActionDateTimeUtc":"2021-05-04T21:31:59.3540058Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bbaeaba0-87f4-40b2-8521-5d1ba98f961e","createdDateTimeUtc":"2021-05-04T21:31:37.3075223Z","lastActionDateTimeUtc":"2021-05-04T21:31:40.1481199Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fc0c253f-4a2e-4d2c-8cee-b1ba99485d17","createdDateTimeUtc":"2021-05-04T21:31:26.3655254Z","lastActionDateTimeUtc":"2021-05-04T21:31:34.0568222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"169a6472-f6d0-4d41-88d7-5448653a2d81","createdDateTimeUtc":"2021-05-04T21:31:11.5471087Z","lastActionDateTimeUtc":"2021-05-04T21:31:15.0923919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea474e99-e6d2-4125-80da-5906abec2a21","createdDateTimeUtc":"2021-05-04T21:31:00.6068472Z","lastActionDateTimeUtc":"2021-05-04T21:31:08.9470582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"99a4bcd6-d77e-4aa2-8779-308baf38e942","createdDateTimeUtc":"2021-05-04T21:30:47.1461755Z","lastActionDateTimeUtc":"2021-05-04T21:30:50.0160209Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a98b66f-2fee-4928-be6b-0b2c3640851e","createdDateTimeUtc":"2021-05-04T21:30:35.9300552Z","lastActionDateTimeUtc":"2021-05-04T21:30:43.8225432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"832f825f-834c-4c6d-869f-eafc8439fab8","createdDateTimeUtc":"2021-05-04T21:30:22.5422095Z","lastActionDateTimeUtc":"2021-05-04T21:30:24.9045264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3539873f-e794-490c-aabf-b81d7d637053","createdDateTimeUtc":"2021-05-04T21:30:10.2246661Z","lastActionDateTimeUtc":"2021-05-04T21:30:18.9953628Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a7c9b45-2ec6-4d45-9dc3-f3878bab4d51","createdDateTimeUtc":"2021-05-04T21:29:54.654677Z","lastActionDateTimeUtc":"2021-05-04T21:29:59.6104789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb764471-e144-46ea-aa8f-6d02ccf4797c","createdDateTimeUtc":"2021-05-04T21:29:40.2949193Z","lastActionDateTimeUtc":"2021-05-04T21:29:47.6260293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48e6ed66-b707-4392-bdbb-5ffa4d324d89","createdDateTimeUtc":"2021-05-04T21:29:26.9823201Z","lastActionDateTimeUtc":"2021-05-04T21:29:34.9103342Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8235a34-1efb-4455-acf6-501307e65011","createdDateTimeUtc":"2021-05-03T20:04:40.4366016Z","lastActionDateTimeUtc":"2021-05-03T20:04:43.3214652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6949c622-28dc-47d3-851f-21e209cc6a47","createdDateTimeUtc":"2021-05-03T20:04:37.8288612Z","lastActionDateTimeUtc":"2021-05-03T20:04:40.2660866Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b249e905-dc13-4cdd-9fb3-c774b2666ef7","createdDateTimeUtc":"2021-05-03T20:04:35.3519244Z","lastActionDateTimeUtc":"2021-05-03T20:04:37.2266324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"82350438-cb7a-426d-bd7e-d16f80059337","createdDateTimeUtc":"2021-05-03T20:04:32.8092477Z","lastActionDateTimeUtc":"2021-05-03T20:04:36.1045942Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"65ff5233-346a-4b40-9680-ae61785dc0b9","createdDateTimeUtc":"2021-05-03T20:04:30.3062851Z","lastActionDateTimeUtc":"2021-05-03T20:04:33.1189017Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"866d7081-de02-468b-b0bf-9881980185fd","createdDateTimeUtc":"2021-05-03T20:04:27.8368219Z","lastActionDateTimeUtc":"2021-05-03T20:04:30.1628241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e4a69180-bfa4-4778-ab0b-8b5da31f1a8e","createdDateTimeUtc":"2021-05-03T20:04:25.3293197Z","lastActionDateTimeUtc":"2021-05-03T20:04:27.145082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35474be4-f83d-45c2-b7d9-b3ceb300387b","createdDateTimeUtc":"2021-05-03T20:04:22.7269182Z","lastActionDateTimeUtc":"2021-05-03T20:04:26.0188112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"31263599-2933-457c-af27-2e010ebf0b8e","createdDateTimeUtc":"2021-05-03T20:04:20.2316652Z","lastActionDateTimeUtc":"2021-05-03T20:04:23.0797811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4d84b0ea-e3a0-400a-869c-f174898afcc5","createdDateTimeUtc":"2021-05-03T20:04:17.7362052Z","lastActionDateTimeUtc":"2021-05-03T20:04:22.3240254Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"14a0dc3b-ac25-4a67-98d8-128203a8f5ee","createdDateTimeUtc":"2021-05-03T20:04:15.1102039Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2425297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68fbf204-68e5-4eb4-9f2c-0b7fcdfc04da","createdDateTimeUtc":"2021-05-03T20:04:12.5887042Z","lastActionDateTimeUtc":"2021-05-03T20:04:19.2332147Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"42a57ac1-2ad0-4931-907c-dddc0fe3655b","createdDateTimeUtc":"2021-05-03T20:04:10.1132109Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.7550476Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bad88315-08e6-44dc-bd91-67b3103b7b31","createdDateTimeUtc":"2021-05-03T20:04:07.6387502Z","lastActionDateTimeUtc":"2021-05-03T20:04:16.3326709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b555a145-c295-44ff-b9ba-f4f2a7ef74b4","createdDateTimeUtc":"2021-05-03T20:04:05.1762261Z","lastActionDateTimeUtc":"2021-05-03T20:04:06.8454983Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8163b521-3fe2-4ceb-b595-e6b88e4af9c1","createdDateTimeUtc":"2021-05-03T20:03:53.9962008Z","lastActionDateTimeUtc":"2021-05-03T20:03:59.8047528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"fa4a3ac8-5fa9-47ec-aefa-14549b7106fa","createdDateTimeUtc":"2021-05-03T20:03:40.7952335Z","lastActionDateTimeUtc":"2021-05-03T20:03:51.176226Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bae245e2-b531-4e39-a5d5-6c00e2e40c24","createdDateTimeUtc":"2021-05-03T20:03:29.7586708Z","lastActionDateTimeUtc":"2021-05-03T20:03:34.8180368Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4def38bb-fe44-4902-b678-f79536aa5b05","createdDateTimeUtc":"2021-05-03T20:03:15.3060421Z","lastActionDateTimeUtc":"2021-05-03T20:03:26.1292749Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4673013c-36ee-48ca-9e8e-1525edc04746","createdDateTimeUtc":"2021-05-03T20:03:04.2106182Z","lastActionDateTimeUtc":"2021-05-03T20:03:09.7262345Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2884f6a3-2e69-4afa-b00a-469b1276b914","createdDateTimeUtc":"2021-05-03T20:02:53.3779655Z","lastActionDateTimeUtc":"2021-05-03T20:03:00.9728528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"977b74ff-5ab5-4bab-9e18-957032da8e2d","createdDateTimeUtc":"2021-05-03T20:02:43.0974401Z","lastActionDateTimeUtc":"2021-05-03T20:02:44.5614265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"23a008c3-bb22-470c-a3f8-d778ee53bea5","createdDateTimeUtc":"2021-05-03T20:02:35.7821326Z","lastActionDateTimeUtc":"2021-05-03T20:02:37.481086Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5fb5be9a-b425-4a9b-b7b8-83f6a33abaf3","createdDateTimeUtc":"2021-05-03T20:02:28.50094Z","lastActionDateTimeUtc":"2021-05-03T20:02:30.4621814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"521d0f52-ed85-4198-a1ab-015e73152ad4","createdDateTimeUtc":"2021-05-03T20:02:18.8100393Z","lastActionDateTimeUtc":"2021-05-03T20:02:23.4506721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e54544f-5767-4544-93e8-28b857ed8048","createdDateTimeUtc":"2021-05-03T20:02:05.5921677Z","lastActionDateTimeUtc":"2021-05-03T20:02:15.8316646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"468e0e5b-ca25-409e-9481-36819636fe6f","createdDateTimeUtc":"2021-05-03T20:01:56.7362576Z","lastActionDateTimeUtc":"2021-05-03T20:02:00.7222381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f8c9dba9-c02c-4166-8fd2-54d87bb81af4","createdDateTimeUtc":"2021-05-03T20:01:43.6676106Z","lastActionDateTimeUtc":"2021-05-03T20:01:53.7689222Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eef15dad-b798-4b29-90c3-f8d21ff1e234","createdDateTimeUtc":"2021-05-03T20:01:29.5209329Z","lastActionDateTimeUtc":"2021-05-03T20:01:33.3096563Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=655&$top=1816&$maxpagesize=50"}' + headers: + apim-request-id: 7ab99123-826a-4b42-89fd-f7152025f19a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:05 GMT + etag: '"4B1EDE65AADD3D79E36F86CFE49CDD220F63B6DE9E6218BEDB5467E4ECCFFCEF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7ab99123-826a-4b42-89fd-f7152025f19a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=605&$top=1866&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=655&$top=1816&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"b41ba85f-9466-4486-85e1-244fbb8db9ef","createdDateTimeUtc":"2021-05-03T20:01:13.0492323Z","lastActionDateTimeUtc":"2021-05-03T20:01:22.9004894Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"77fb6d65-c87c-4b5f-8445-943c9ac44996","createdDateTimeUtc":"2021-05-03T19:54:03.4876529Z","lastActionDateTimeUtc":"2021-05-03T19:54:06.782253Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b5528f7-9847-433d-b3b8-3b00ee9f6008","createdDateTimeUtc":"2021-05-03T19:54:00.7638608Z","lastActionDateTimeUtc":"2021-05-03T19:54:03.6749241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a410e33c-8b93-466a-9abc-b13b33d8bc5b","createdDateTimeUtc":"2021-05-03T19:53:58.1837821Z","lastActionDateTimeUtc":"2021-05-03T19:54:02.6561375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c360515-cecf-48bf-8cbb-dd5af46774ad","createdDateTimeUtc":"2021-05-03T19:53:55.4575402Z","lastActionDateTimeUtc":"2021-05-03T19:53:59.6011941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"273de69a-7e8a-4867-8af7-5d759c588c60","createdDateTimeUtc":"2021-05-03T19:53:52.7951219Z","lastActionDateTimeUtc":"2021-05-03T19:53:56.439438Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4943e31-da7f-43e6-8c9e-e06e9fe4c92e","createdDateTimeUtc":"2021-05-03T19:53:50.1752132Z","lastActionDateTimeUtc":"2021-05-03T19:53:53.4482384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"26448780-8e8b-42ab-bbe1-1ac7d171f7f3","createdDateTimeUtc":"2021-05-03T19:53:46.9698816Z","lastActionDateTimeUtc":"2021-05-03T19:53:50.765207Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d9cfddcb-c9f6-4f4d-8e2b-0e3420348827","createdDateTimeUtc":"2021-05-03T19:53:44.3167656Z","lastActionDateTimeUtc":"2021-05-03T19:53:47.8473518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ff9a619d-f4ef-45f0-a892-8f9a263a0ace","createdDateTimeUtc":"2021-05-03T19:53:41.6628593Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1551186Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df31e113-606c-48d9-a65b-0c1f473c5408","createdDateTimeUtc":"2021-05-03T19:53:39.0554643Z","lastActionDateTimeUtc":"2021-05-03T19:53:46.1568759Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2e0b80c1-7bd0-4af6-a90c-91efdab43c90","createdDateTimeUtc":"2021-05-03T19:50:57.3528715Z","lastActionDateTimeUtc":"2021-05-03T19:51:00.2753938Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"616e6661-47c9-48cc-8184-4fc0906959ca","createdDateTimeUtc":"2021-05-03T19:50:54.7161948Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.9505639Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0b093933-0af0-4255-aef2-1aef45859d9f","createdDateTimeUtc":"2021-05-03T19:50:51.7806496Z","lastActionDateTimeUtc":"2021-05-03T19:50:58.6621364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d4c3ec4e-4564-4cc3-a7ec-dace57ec0c6c","createdDateTimeUtc":"2021-05-03T19:50:48.2901801Z","lastActionDateTimeUtc":"2021-05-03T19:50:50.6471385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"480d4106-2adb-4155-8774-f905b982dc17","createdDateTimeUtc":"2021-05-03T19:50:45.0236958Z","lastActionDateTimeUtc":"2021-05-03T19:50:57.9298919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f2e1d275-a246-4c99-a2eb-04328f452669","createdDateTimeUtc":"2021-05-03T19:50:26.8531157Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.6011737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"903ecf92-8ed1-4540-a664-1d2dbebaa776","createdDateTimeUtc":"2021-05-03T19:50:23.5942972Z","lastActionDateTimeUtc":"2021-05-03T19:50:29.4756854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a8c269d-fc1a-418e-bf19-b6d52ca17856","createdDateTimeUtc":"2021-05-03T19:50:20.3972842Z","lastActionDateTimeUtc":"2021-05-03T19:50:22.4280657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5cf8af34-64e4-4b52-8fc0-cc0259063f82","createdDateTimeUtc":"2021-05-03T19:50:05.3306529Z","lastActionDateTimeUtc":"2021-05-03T19:50:07.3720626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bfe0f472-5657-4e19-9827-31d479e9519c","createdDateTimeUtc":"2021-05-03T19:50:02.5003993Z","lastActionDateTimeUtc":"2021-05-03T19:50:08.3997738Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0962f657-6f76-44f4-94ff-a02fc521c34c","createdDateTimeUtc":"2021-05-03T19:49:59.6390309Z","lastActionDateTimeUtc":"2021-05-03T19:50:05.8072393Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3cd7bec-687c-4b17-ac50-f050221da566","createdDateTimeUtc":"2021-05-03T19:49:47.2936761Z","lastActionDateTimeUtc":"2021-05-03T19:49:53.3850492Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e68cde6-c244-4f59-b080-976a8d28cf58","createdDateTimeUtc":"2021-05-03T19:49:45.8381961Z","lastActionDateTimeUtc":"2021-05-03T19:49:50.216742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e917069-58b5-4793-aeca-1cef1606428a","createdDateTimeUtc":"2021-05-03T19:49:44.6241877Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.6909389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f62cccf6-66d1-4ef4-bfcf-005153c3bf66","createdDateTimeUtc":"2021-05-03T19:49:43.4191552Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.2591223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"17fdbf58-ab02-4184-b0f4-b742778c866d","createdDateTimeUtc":"2021-05-03T19:49:41.9630401Z","lastActionDateTimeUtc":"2021-05-03T19:49:47.3139972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53e1079d-5752-4e98-a38c-f86ecae8d9b7","createdDateTimeUtc":"2021-05-03T19:49:41.0052191Z","lastActionDateTimeUtc":"2021-05-03T19:49:44.1975082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94c173f3-f428-4b66-a069-2319c7cde95b","createdDateTimeUtc":"2021-05-03T19:49:39.2736587Z","lastActionDateTimeUtc":"2021-05-03T19:49:41.9046941Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e7178768-fc04-4000-98bb-49fb3f5838e7","createdDateTimeUtc":"2021-05-03T19:49:38.5093427Z","lastActionDateTimeUtc":"2021-05-03T19:49:42.2152775Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"189fffae-0be2-4053-8484-41b576d94126","createdDateTimeUtc":"2021-05-03T19:49:36.5937596Z","lastActionDateTimeUtc":"2021-05-03T19:49:39.5548166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4cbfcc5c-79b6-41ac-9bc7-3b3641543189","createdDateTimeUtc":"2021-05-03T19:49:36.0997565Z","lastActionDateTimeUtc":"2021-05-03T19:49:38.5559858Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ccc7fd66-b3dd-4d34-9ff6-47583412e212","createdDateTimeUtc":"2021-05-03T19:49:33.9187528Z","lastActionDateTimeUtc":"2021-05-03T19:49:37.5413631Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b4dd307f-82ae-442a-8602-6e51c890664e","createdDateTimeUtc":"2021-05-03T19:49:31.2614289Z","lastActionDateTimeUtc":"2021-05-03T19:49:34.5401855Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"01cb729a-24b1-41be-ae42-6beff7d42fb2","createdDateTimeUtc":"2021-05-03T19:49:28.8630613Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.4157116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd1a1b08-1796-4eff-8bc1-35ab991070c3","createdDateTimeUtc":"2021-05-03T19:49:28.6012252Z","lastActionDateTimeUtc":"2021-05-03T19:49:31.8283406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"96702728-a592-454e-8737-4fd6cd3d9c63","createdDateTimeUtc":"2021-05-03T19:49:25.9517998Z","lastActionDateTimeUtc":"2021-05-03T19:49:28.4085727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8f6e001c-e671-4fe5-bdbe-a6e50aa3592c","createdDateTimeUtc":"2021-05-03T19:49:23.2751059Z","lastActionDateTimeUtc":"2021-05-03T19:49:27.0978775Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ed0e87af-195e-4d99-addc-9db1eea6f6d6","createdDateTimeUtc":"2021-05-03T19:49:18.0487684Z","lastActionDateTimeUtc":"2021-05-03T19:49:26.0610943Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ab605598-7dc3-4184-a900-1eaebaa1ca0d","createdDateTimeUtc":"2021-05-03T19:49:10.8203576Z","lastActionDateTimeUtc":"2021-05-03T19:49:12.4615592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4c788e86-6ed1-4938-8782-ad4b41272f68","createdDateTimeUtc":"2021-05-03T19:49:03.7327196Z","lastActionDateTimeUtc":"2021-05-03T19:49:05.3454604Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9f076bf-2c93-4733-9b6b-09fff861734e","createdDateTimeUtc":"2021-05-03T19:48:57.8606691Z","lastActionDateTimeUtc":"2021-05-03T19:48:59.3314404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"271909be-3571-4807-809b-1e1e24a1a34b","createdDateTimeUtc":"2021-05-03T19:48:54.9176208Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.477873Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0804cc7-e43f-46bc-af1a-2f92a884b1f6","createdDateTimeUtc":"2021-05-03T19:48:52.3329043Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1191362Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fc3450-838b-4c95-92ba-85839fbeb11f","createdDateTimeUtc":"2021-05-03T19:48:49.7052819Z","lastActionDateTimeUtc":"2021-05-03T19:49:00.1513593Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"30293d34-f710-40d0-a899-87e41e1afa5b","createdDateTimeUtc":"2021-05-03T19:48:28.0523895Z","lastActionDateTimeUtc":"2021-05-03T19:48:33.1665262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d417abb2-b8c5-45c0-9909-db0cecd1e904","createdDateTimeUtc":"2021-05-03T19:48:13.8382103Z","lastActionDateTimeUtc":"2021-05-03T19:48:24.6363353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2223ae55-8020-42c1-ad09-f09cb348e0c9","createdDateTimeUtc":"2021-05-03T19:48:06.6682675Z","lastActionDateTimeUtc":"2021-05-03T19:48:08.1230639Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b75d73b4-5235-49c0-9635-8b5fc9ae937e","createdDateTimeUtc":"2021-05-03T19:47:59.4872492Z","lastActionDateTimeUtc":"2021-05-03T19:48:01.0858781Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ecd54a0a-2f06-41d8-9992-372cc602036d","createdDateTimeUtc":"2021-05-03T19:47:52.3228726Z","lastActionDateTimeUtc":"2021-05-03T19:47:54.113721Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=705&$top=1766&$maxpagesize=50"}' + headers: + apim-request-id: a66499cb-f855-4c58-a35e-2b81213c5110 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:06 GMT + etag: '"3A4E24D740C858C8DB47AD199CCBBA2C353B75A1121521A4933A7D56DAAB07F0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a66499cb-f855-4c58-a35e-2b81213c5110 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=655&$top=1816&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=705&$top=1766&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"15b8c7bd-5828-4f6c-868d-a04966773d50","createdDateTimeUtc":"2021-05-03T19:47:42.6832154Z","lastActionDateTimeUtc":"2021-05-03T19:47:47.2845108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b21721ad-e62f-40d1-b025-b27894af3bb2","createdDateTimeUtc":"2021-05-03T19:47:27.4021031Z","lastActionDateTimeUtc":"2021-05-03T19:47:39.5734496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f4ba3ec4-16e3-454a-83ad-2501659e6afd","createdDateTimeUtc":"2021-05-03T19:47:17.9530171Z","lastActionDateTimeUtc":"2021-05-03T19:47:24.557957Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dcf7efbc-de86-4e7d-8b23-360744740bfd","createdDateTimeUtc":"2021-05-03T19:47:10.5105179Z","lastActionDateTimeUtc":"2021-05-03T19:47:12.0476945Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e6cbbd77-6cf3-4146-be28-49950d7a259c","createdDateTimeUtc":"2021-05-03T19:47:04.4970354Z","lastActionDateTimeUtc":"2021-05-03T19:47:05.9895993Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3cf65e5-71c0-4003-ba36-7093dc6d80b6","createdDateTimeUtc":"2021-05-03T19:47:01.5331712Z","lastActionDateTimeUtc":"2021-05-03T19:47:04.9756538Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c0cf4875-3949-421b-8488-aca76279616f","createdDateTimeUtc":"2021-05-03T19:46:58.8324286Z","lastActionDateTimeUtc":"2021-05-03T19:47:01.9815732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fce078cf-62f8-4dd7-8eb1-6194011fdbd7","createdDateTimeUtc":"2021-05-03T19:46:55.4899857Z","lastActionDateTimeUtc":"2021-05-03T19:47:02.0170674Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3897a24e-1708-41c4-8574-98d546c8fa49","createdDateTimeUtc":"2021-05-03T19:46:43.9857973Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.9030234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ebeaadce-d3c0-4ae7-a9b2-a3ca3fb60ed0","createdDateTimeUtc":"2021-05-03T19:46:41.4530958Z","lastActionDateTimeUtc":"2021-05-03T19:46:46.4193362Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e286c750-e597-44db-b93e-c906346b6cf3","createdDateTimeUtc":"2021-05-03T19:46:41.4076338Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.8651458Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4ef1ec89-dcc1-4174-8e41-4641a918d768","createdDateTimeUtc":"2021-05-03T19:46:38.7626764Z","lastActionDateTimeUtc":"2021-05-03T19:46:41.8794792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90454d13-cf9f-4b4e-8e2f-2f56fdc1e6af","createdDateTimeUtc":"2021-05-03T19:46:38.1004702Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.8324116Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3951ad22-c8bb-420c-a4e7-11e130022b19","createdDateTimeUtc":"2021-05-03T19:46:36.1253186Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.5892323Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e3ac18b8-101f-4862-8e8c-a43a343d395c","createdDateTimeUtc":"2021-05-03T19:46:34.572013Z","lastActionDateTimeUtc":"2021-05-03T19:46:44.4885987Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3a2a63d0-2d6c-4ceb-b461-9499ce8ca2e3","createdDateTimeUtc":"2021-05-03T19:46:33.5234045Z","lastActionDateTimeUtc":"2021-05-03T19:46:43.4039175Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b8c67df3-39eb-4d2e-8182-46477b9867dd","createdDateTimeUtc":"2021-05-03T19:46:31.1439368Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5734862Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f2c6605d-27f4-42cd-a244-440135512f9d","createdDateTimeUtc":"2021-05-03T19:46:27.7807419Z","lastActionDateTimeUtc":"2021-05-03T19:46:42.5830611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c10b64e1-c592-4932-8222-78f7a4e8b347","createdDateTimeUtc":"2021-05-03T19:46:19.1301765Z","lastActionDateTimeUtc":"2021-05-03T19:46:22.3123378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"eb3bd1b5-2324-4848-bba9-81f95fa670d6","createdDateTimeUtc":"2021-05-03T19:46:16.4042943Z","lastActionDateTimeUtc":"2021-05-03T19:46:19.1732226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"518f0f9f-d0f8-4d3c-ac70-1a88eca6e089","createdDateTimeUtc":"2021-05-03T19:46:13.2019052Z","lastActionDateTimeUtc":"2021-05-03T19:46:18.146728Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2561f3d7-5aeb-4db4-9010-a4448d9da4b3","createdDateTimeUtc":"2021-05-03T19:46:00.0683103Z","lastActionDateTimeUtc":"2021-05-03T19:46:03.2363808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"85cf46da-76c1-4985-91b1-d2546c9639e6","createdDateTimeUtc":"2021-05-03T19:45:57.3773878Z","lastActionDateTimeUtc":"2021-05-03T19:46:00.0872698Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"45537c93-4dc4-4e42-a14a-6083f5dd5335","createdDateTimeUtc":"2021-05-03T19:45:54.704917Z","lastActionDateTimeUtc":"2021-05-03T19:45:57.4468415Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"708159c1-2e27-4541-8bf5-015c3b5d8f64","createdDateTimeUtc":"2021-05-03T19:45:41.1606377Z","lastActionDateTimeUtc":"2021-05-03T19:45:46.1055955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86e0e5eb-36ed-4cb9-85cb-96d4b9f7c8dc","createdDateTimeUtc":"2021-05-03T19:45:38.6056039Z","lastActionDateTimeUtc":"2021-05-03T19:45:43.0699296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b3d15118-845b-48f0-a305-0c588dedee84","createdDateTimeUtc":"2021-05-03T19:45:35.9266035Z","lastActionDateTimeUtc":"2021-05-03T19:45:40.0572386Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1a8045ea-4b36-42af-b551-034d0526e2f5","createdDateTimeUtc":"2021-05-03T19:45:33.1458266Z","lastActionDateTimeUtc":"2021-05-03T19:45:37.0382948Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"aeea92d7-220e-46cc-a1e4-a7f354065f3c","createdDateTimeUtc":"2021-05-03T19:45:30.3624804Z","lastActionDateTimeUtc":"2021-05-03T19:45:33.9860266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d380ffce-1b98-4a10-9d12-5be9ba9840f9","createdDateTimeUtc":"2021-05-03T19:45:15.6570421Z","lastActionDateTimeUtc":"2021-05-03T19:45:27.0187654Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"675bce48-a3b2-45d1-aece-f4842cb076f1","createdDateTimeUtc":"2021-05-03T19:45:07.7582463Z","lastActionDateTimeUtc":"2021-05-03T19:45:11.8867612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b03fbed1-649d-418c-a8bb-ca813a5380ff","createdDateTimeUtc":"2021-05-03T19:45:01.3392572Z","lastActionDateTimeUtc":"2021-05-03T19:45:04.8274012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98976c5d-1edf-4c25-a0b0-a58146fc9e07","createdDateTimeUtc":"2021-05-03T19:44:54.0792402Z","lastActionDateTimeUtc":"2021-05-03T19:44:57.9379026Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"629269b2-c90a-420d-9dbc-9f08e8bcf713","createdDateTimeUtc":"2021-05-03T19:44:45.6843507Z","lastActionDateTimeUtc":"2021-05-03T19:44:50.7906818Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"54359afd-acfe-4a2b-947b-fb1b46be49f1","createdDateTimeUtc":"2021-05-03T19:44:42.5370694Z","lastActionDateTimeUtc":"2021-05-03T19:44:49.6919009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7884d6f9-1ec2-47ec-812a-ef4ba1e4815b","createdDateTimeUtc":"2021-05-03T19:44:39.869045Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8815849Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d62f9d82-5515-409d-8b07-1867b0fe25ae","createdDateTimeUtc":"2021-05-03T19:44:37.2090361Z","lastActionDateTimeUtc":"2021-05-03T19:44:48.8999605Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6598344c-928d-49d1-adfe-c0018c6e541b","createdDateTimeUtc":"2021-05-03T19:44:19.277292Z","lastActionDateTimeUtc":"2021-05-03T19:44:23.805747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ea331c9e-eca9-45e3-bb5e-549ee88b2ecc","createdDateTimeUtc":"2021-05-03T19:44:12.0180278Z","lastActionDateTimeUtc":"2021-05-03T19:44:16.8056528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e5689d33-2529-4696-af8a-f39789a03901","createdDateTimeUtc":"2021-05-03T19:44:06.0095577Z","lastActionDateTimeUtc":"2021-05-03T19:44:07.7833839Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6064c7c1-4310-4e8b-9f1f-bf1ea54d22b6","createdDateTimeUtc":"2021-05-03T19:43:58.8533793Z","lastActionDateTimeUtc":"2021-05-03T19:44:00.7833724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2c92a74a-0ca8-4f7e-936e-017222c61ce7","createdDateTimeUtc":"2021-05-03T19:43:51.6836612Z","lastActionDateTimeUtc":"2021-05-03T19:43:53.7553696Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f49acbe3-ecc4-47eb-a430-7c54c8f24d39","createdDateTimeUtc":"2021-05-03T19:43:44.4689843Z","lastActionDateTimeUtc":"2021-05-03T19:43:46.7410479Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6e10485-ebcc-45e1-aba4-87a1b7cce989","createdDateTimeUtc":"2021-05-03T19:43:37.3522105Z","lastActionDateTimeUtc":"2021-05-03T19:43:40.2397462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"754b0a55-09ea-4808-b550-2b1101e8f6e3","createdDateTimeUtc":"2021-05-03T19:43:30.1620255Z","lastActionDateTimeUtc":"2021-05-03T19:43:31.8516794Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2966c754-0ea0-488d-a7df-30b0c79d8194","createdDateTimeUtc":"2021-05-03T19:43:23.0731526Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6623363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc429a0a-b029-45c9-901d-7544b164a7dd","createdDateTimeUtc":"2021-05-03T19:43:21.8976224Z","lastActionDateTimeUtc":"2021-05-03T19:43:24.6634539Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"53176dbc-bd95-40be-b491-3bb49de18706","createdDateTimeUtc":"2021-05-03T19:43:15.8515474Z","lastActionDateTimeUtc":"2021-05-03T19:43:17.6435179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3e576a97-96c3-4c29-94bd-5e741660e4ab","createdDateTimeUtc":"2021-05-03T19:43:12.9338591Z","lastActionDateTimeUtc":"2021-05-03T19:43:15.1986304Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f7521ee7-2907-4449-b1f8-9c125cc232a0","createdDateTimeUtc":"2021-05-03T19:43:11.7916483Z","lastActionDateTimeUtc":"2021-05-03T19:43:14.6569053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=755&$top=1716&$maxpagesize=50"}' + headers: + apim-request-id: 3c61788b-5a2e-43ad-8073-875aa31e5178 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:06 GMT + etag: '"AA8C2B0A5981360E5BA20E871B70F2D130A68794B2B752E13B024C48D0A82A1B"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3c61788b-5a2e-43ad-8073-875aa31e5178 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=705&$top=1766&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=755&$top=1716&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"1b5bce49-ebde-42ea-a37e-8161696dae0f","createdDateTimeUtc":"2021-05-03T19:43:10.1673876Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.0844711Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d043a92-a600-4a02-b245-da960f58d041","createdDateTimeUtc":"2021-05-03T19:43:07.5861808Z","lastActionDateTimeUtc":"2021-05-03T19:43:13.1009637Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba7f14e6-e544-4ad3-9368-c27db8a80933","createdDateTimeUtc":"2021-05-03T19:43:04.4853671Z","lastActionDateTimeUtc":"2021-05-03T19:43:06.1085001Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3544c27a-f053-498e-80b0-a539bb8db89e","createdDateTimeUtc":"2021-05-03T19:42:57.0232635Z","lastActionDateTimeUtc":"2021-05-03T19:42:59.0138892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b2fb5844-839f-4f84-bc22-e3d3810e5ad2","createdDateTimeUtc":"2021-05-03T19:42:54.1554829Z","lastActionDateTimeUtc":"2021-05-03T19:42:58.9573344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8895498c-c567-457b-9bce-ffcb1b9d517a","createdDateTimeUtc":"2021-05-03T19:42:50.752653Z","lastActionDateTimeUtc":"2021-05-03T19:42:57.7903176Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"29fd5148-6256-4f93-9a08-e5ef281b1a07","createdDateTimeUtc":"2021-05-03T19:42:47.3136461Z","lastActionDateTimeUtc":"2021-05-03T19:42:51.8093237Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5fae9881-7014-4090-b3a2-037ab600e1a7","createdDateTimeUtc":"2021-05-03T19:42:46.977807Z","lastActionDateTimeUtc":"2021-05-03T19:42:53.945237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa030036-c4dc-40e8-85d2-18916ccde959","createdDateTimeUtc":"2021-05-03T19:42:43.9219345Z","lastActionDateTimeUtc":"2021-05-03T19:42:50.9266417Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"79c5320a-a6cd-4083-80da-7b7190ea2d12","createdDateTimeUtc":"2021-05-03T19:42:40.4965102Z","lastActionDateTimeUtc":"2021-05-03T19:42:47.6679275Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6774f487-1616-4f9d-8447-3b3291a97ec3","createdDateTimeUtc":"2021-05-03T19:42:32.5546251Z","lastActionDateTimeUtc":"2021-05-03T19:42:40.6706242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0bf29099-f1d8-42de-8a8c-e8fd7bc9ab9a","createdDateTimeUtc":"2021-05-03T19:42:23.6646535Z","lastActionDateTimeUtc":"2021-05-03T19:42:26.2350527Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f846fe28-7dcf-41c2-af21-05bae0ce422c","createdDateTimeUtc":"2021-05-03T19:42:18.967684Z","lastActionDateTimeUtc":"2021-05-03T19:42:19.5599385Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"931e5180-6044-4762-88ba-8fdcdecd9d29","createdDateTimeUtc":"2021-05-03T19:42:09.7915623Z","lastActionDateTimeUtc":"2021-05-03T19:42:14.9829375Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"149f0305-c0ad-4d24-808d-c07a06e4aad9","createdDateTimeUtc":"2021-05-03T19:42:05.6749389Z","lastActionDateTimeUtc":"2021-05-03T19:42:05.8609566Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69650c41-230c-4827-9c7f-c90a7da7bd90","createdDateTimeUtc":"2021-05-03T19:41:56.8736284Z","lastActionDateTimeUtc":"2021-05-03T19:42:01.2159019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c914b81a-8364-47ac-806e-e25503e59aba","createdDateTimeUtc":"2021-05-03T19:41:42.0080905Z","lastActionDateTimeUtc":"2021-05-03T19:41:53.2165314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bee2cc7-f5d5-4d37-9e56-4e9a507c1733","createdDateTimeUtc":"2021-05-03T19:41:34.3191151Z","lastActionDateTimeUtc":"2021-05-03T19:41:38.2104135Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87e21022-4fc7-4502-bab0-d78a5428f70a","createdDateTimeUtc":"2021-05-03T19:41:21.6512394Z","lastActionDateTimeUtc":"2021-05-03T19:41:31.1947275Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"743b1653-77ba-41be-aa81-a112eb8c4860","createdDateTimeUtc":"2021-05-03T19:41:09.3659733Z","lastActionDateTimeUtc":"2021-05-03T19:41:14.0647777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bbc3dd9f-c42c-49ab-a3e3-c195d2522659","createdDateTimeUtc":"2021-05-03T19:40:55.530202Z","lastActionDateTimeUtc":"2021-05-03T19:40:59.0957073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b5a10f62-9520-4c48-8df7-3c4168ef08f6","createdDateTimeUtc":"2021-05-03T19:40:39.3266863Z","lastActionDateTimeUtc":"2021-05-03T19:40:51.0537359Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c15be68f-62d2-4a11-85dd-43c8079d2d8c","createdDateTimeUtc":"2021-05-03T19:40:33.6003457Z","lastActionDateTimeUtc":"2021-05-03T19:40:34.1904089Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e238722a-d904-4326-928c-286564e20317","createdDateTimeUtc":"2021-05-03T19:40:22.9880466Z","lastActionDateTimeUtc":"2021-05-03T19:40:28.9572445Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9170e89d-f5df-4a7b-9537-ded6225eaaa7","createdDateTimeUtc":"2021-05-03T19:40:18.043831Z","lastActionDateTimeUtc":"2021-05-03T19:40:18.3396143Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f675e9ac-5c02-40e7-a1dd-2a58fcc7c64a","createdDateTimeUtc":"2021-05-03T19:39:50.7596472Z","lastActionDateTimeUtc":"2021-05-03T19:39:53.8717562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a5711c77-435a-463a-91cf-3c805aa64089","createdDateTimeUtc":"2021-05-03T19:39:48.0864067Z","lastActionDateTimeUtc":"2021-05-03T19:39:50.9542298Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cb0d7daf-ba19-47fe-ac27-dc8b7c190aad","createdDateTimeUtc":"2021-05-03T19:39:45.3774213Z","lastActionDateTimeUtc":"2021-05-03T19:39:47.7805455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ba9dd358-a190-4de4-a289-0f7eddd1320d","createdDateTimeUtc":"2021-05-03T19:39:42.7805647Z","lastActionDateTimeUtc":"2021-05-03T19:39:44.7239369Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"964add01-9d48-474d-b9de-f42107b9bd87","createdDateTimeUtc":"2021-05-03T19:39:40.0832122Z","lastActionDateTimeUtc":"2021-05-03T19:39:43.7735159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"882c8fca-007d-40c4-b31d-e63294331507","createdDateTimeUtc":"2021-05-03T19:39:37.4984338Z","lastActionDateTimeUtc":"2021-05-03T19:39:40.6848865Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"113e5282-32d4-4e92-88de-1f91220398b4","createdDateTimeUtc":"2021-05-03T19:39:34.7251866Z","lastActionDateTimeUtc":"2021-05-03T19:39:37.7211622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6c2900a1-7b82-48f6-8d47-6d969351ceb7","createdDateTimeUtc":"2021-05-03T19:39:31.7368033Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.9938622Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b294199c-48c9-49d4-8fb5-06604eec4f50","createdDateTimeUtc":"2021-05-03T19:39:28.0655266Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.2243993Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0faf2354-7701-4018-b2ce-44866ee65769","createdDateTimeUtc":"2021-05-03T19:39:25.3148455Z","lastActionDateTimeUtc":"2021-05-03T19:39:34.1992624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"969cb459-1bc6-4352-8eda-6ea114ab77d0","createdDateTimeUtc":"2021-05-03T19:36:56.0686948Z","lastActionDateTimeUtc":"2021-05-03T19:36:59.3873408Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6862cb3e-df6a-4b55-9677-0cf32ab72002","createdDateTimeUtc":"2021-05-03T19:36:53.407473Z","lastActionDateTimeUtc":"2021-05-03T19:36:56.3518482Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be0d7f50-98bd-4326-9a46-12883847d2ee","createdDateTimeUtc":"2021-05-03T19:36:50.7572679Z","lastActionDateTimeUtc":"2021-05-03T19:36:53.331099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a6a83714-801c-4c43-8c02-cf08df1737dd","createdDateTimeUtc":"2021-05-03T19:36:48.1859233Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7937045Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1893911d-60f6-4c37-b7d6-e27c24e1b262","createdDateTimeUtc":"2021-05-03T19:36:45.4877537Z","lastActionDateTimeUtc":"2021-05-03T19:36:54.7477127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"21e67ece-7e0d-4416-b3f6-362dc9c89a1d","createdDateTimeUtc":"2021-05-03T19:36:32.933245Z","lastActionDateTimeUtc":"2021-05-03T19:36:39.6662791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa4f8cff-1072-4e77-b1d0-88a4fd2a8709","createdDateTimeUtc":"2021-05-03T19:36:30.3716214Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.9620206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"913e4543-d911-4a84-a601-d94da0dd563e","createdDateTimeUtc":"2021-05-03T19:36:27.7241113Z","lastActionDateTimeUtc":"2021-05-03T19:36:35.8589312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"762dd564-8415-4316-b1f4-263fb8e058fb","createdDateTimeUtc":"2021-05-03T19:36:14.6218222Z","lastActionDateTimeUtc":"2021-05-03T19:36:18.1269145Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"80e75152-8195-46d1-ae66-d599e4e864b7","createdDateTimeUtc":"2021-05-03T19:36:12.1351825Z","lastActionDateTimeUtc":"2021-05-03T19:36:17.6076789Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9c7f7e88-6a9f-4525-a639-80e6f87988bc","createdDateTimeUtc":"2021-05-03T19:36:11.961554Z","lastActionDateTimeUtc":"2021-05-03T19:36:15.0146695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9a2fed-5dfa-4648-9080-ba8d52d3b88c","createdDateTimeUtc":"2021-05-03T19:36:09.6191878Z","lastActionDateTimeUtc":"2021-05-03T19:36:14.5501633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"56734024-f647-4a2d-a4ea-fded151eef21","createdDateTimeUtc":"2021-05-03T19:36:09.0489596Z","lastActionDateTimeUtc":"2021-05-03T19:36:11.943776Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"65d4893a-7f5b-4fe3-8ad6-9fc632ba03e3","createdDateTimeUtc":"2021-05-03T19:36:07.1422608Z","lastActionDateTimeUtc":"2021-05-03T19:36:10.5505074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"16d0e216-8c53-4e64-a996-ac8d177a6f35","createdDateTimeUtc":"2021-05-03T19:36:04.7027279Z","lastActionDateTimeUtc":"2021-05-03T19:36:09.5035459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=805&$top=1666&$maxpagesize=50"}' + headers: + apim-request-id: 9fd9df2b-c4ce-47fb-8478-d8f927e3263f + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:06 GMT + etag: '"ADB980FAC3EBA2151B1B4ACBF10DBE7EDBF13E3876E58E2D18C732C0B73265E2"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9fd9df2b-c4ce-47fb-8478-d8f927e3263f + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=755&$top=1716&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=805&$top=1666&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"7ecd5ec5-b4d0-4be1-95b2-d4cf173652e1","createdDateTimeUtc":"2021-05-03T19:36:02.2412899Z","lastActionDateTimeUtc":"2021-05-03T19:36:06.4879095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"70eab1b2-1e5c-4657-b37d-c38acc754ca1","createdDateTimeUtc":"2021-05-03T19:35:59.7231641Z","lastActionDateTimeUtc":"2021-05-03T19:36:03.5192778Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8dc4d693-b490-4d07-8efe-af0786b73be8","createdDateTimeUtc":"2021-05-03T19:35:57.2195968Z","lastActionDateTimeUtc":"2021-05-03T19:36:00.3944034Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e59f12c2-b608-47d0-ab43-305d8108e74b","createdDateTimeUtc":"2021-05-03T19:35:55.470855Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.477358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f869c985-431b-4070-bac1-0aa180cadded","createdDateTimeUtc":"2021-05-03T19:35:54.7626471Z","lastActionDateTimeUtc":"2021-05-03T19:35:59.3785114Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9ea1d91a-3d6d-4185-8fe4-3bd4621424bd","createdDateTimeUtc":"2021-05-03T19:35:53.0665073Z","lastActionDateTimeUtc":"2021-05-03T19:35:56.4095289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e00f6b7a-a871-40c6-8ecb-cad838bf0ef7","createdDateTimeUtc":"2021-05-03T19:35:52.2829394Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.3628108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3178ecbc-0d7e-402b-b6f0-0074553116fa","createdDateTimeUtc":"2021-05-03T19:35:50.6384584Z","lastActionDateTimeUtc":"2021-05-03T19:35:55.326958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c793b0b6-f3e3-4f5a-9a57-e393061a59f5","createdDateTimeUtc":"2021-05-03T19:35:49.0269889Z","lastActionDateTimeUtc":"2021-05-03T19:35:52.3314981Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0618058b-4cd3-43b2-9d2d-f8490aeeb6ba","createdDateTimeUtc":"2021-05-03T19:35:48.2393775Z","lastActionDateTimeUtc":"2021-05-03T19:35:51.3629104Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cb03a9ac-f983-4445-a095-b181e78ceb9d","createdDateTimeUtc":"2021-05-03T19:35:46.4878219Z","lastActionDateTimeUtc":"2021-05-03T19:35:50.3002939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ee0da6d5-e43e-4b76-93cd-33d32f393abf","createdDateTimeUtc":"2021-05-03T19:35:45.7615368Z","lastActionDateTimeUtc":"2021-05-03T19:35:49.2689179Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e25a4e6b-707a-4c78-8ef1-3eb3143e61b5","createdDateTimeUtc":"2021-05-03T19:35:44.0373063Z","lastActionDateTimeUtc":"2021-05-03T19:35:48.1883671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"475be82c-5178-4ed5-bcbc-53ca9a15729f","createdDateTimeUtc":"2021-05-03T19:35:41.567885Z","lastActionDateTimeUtc":"2021-05-03T19:35:45.23766Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"19845064-3a4f-4175-a3af-c28597b40723","createdDateTimeUtc":"2021-05-03T19:35:38.8488458Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.1752615Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"78e08e88-da9f-49e7-ad49-dd54db49c8aa","createdDateTimeUtc":"2021-05-03T19:35:38.3501912Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2125326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0b6a1b7d-8578-438f-ad4c-9ee0e5033e6a","createdDateTimeUtc":"2021-05-03T19:35:36.2615727Z","lastActionDateTimeUtc":"2021-05-03T19:35:42.2245238Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"da6b933a-3938-44ca-be33-d9bac52a23a3","createdDateTimeUtc":"2021-05-03T19:35:29.372519Z","lastActionDateTimeUtc":"2021-05-03T19:35:35.1751538Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e9864e1c-5d61-45ae-9630-176ce26a0b1e","createdDateTimeUtc":"2021-05-03T19:35:28.1031618Z","lastActionDateTimeUtc":"2021-05-03T19:35:32.4406646Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4ba93f64-cec6-4e6d-b016-15f4f399215a","createdDateTimeUtc":"2021-05-03T19:35:20.8509568Z","lastActionDateTimeUtc":"2021-05-03T19:35:25.127961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0eaa8360-d8c8-4be4-bf89-05ff99ccc990","createdDateTimeUtc":"2021-05-03T19:35:20.8313272Z","lastActionDateTimeUtc":"2021-05-03T19:35:24.1278688Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"955d0ece-c949-4b32-b267-713a6094ae99","createdDateTimeUtc":"2021-05-03T19:35:12.7897135Z","lastActionDateTimeUtc":"2021-05-03T19:35:16.9874031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c908d14-7b96-4af1-830d-4b6dbf600786","createdDateTimeUtc":"2021-05-03T19:35:10.4043309Z","lastActionDateTimeUtc":"2021-05-03T19:35:17.064572Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"69b9317b-f654-4a41-a918-0eaeb5a1b6a3","createdDateTimeUtc":"2021-05-03T19:35:05.2126523Z","lastActionDateTimeUtc":"2021-05-03T19:35:10.0036335Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"63cdccd6-96c3-4f9f-b5e2-db872dd89ba1","createdDateTimeUtc":"2021-05-03T19:35:01.7774227Z","lastActionDateTimeUtc":"2021-05-03T19:35:06.9102842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a2d2c3c9-0dad-4894-8f9f-a83ef2f1a60f","createdDateTimeUtc":"2021-05-03T19:34:58.6469164Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.4175671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"632d3422-cdff-44b1-b0e1-7fe285920f44","createdDateTimeUtc":"2021-05-03T19:34:55.6143647Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.8314909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19937cbf-cf5c-4325-9ea6-c00221ed57bd","createdDateTimeUtc":"2021-05-03T19:34:55.3488462Z","lastActionDateTimeUtc":"2021-05-03T19:35:02.2841726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6b1c5d5e-eb96-4305-856e-765ff05c57f4","createdDateTimeUtc":"2021-05-03T19:34:52.9395839Z","lastActionDateTimeUtc":"2021-05-03T19:34:59.0832315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5165abfc-41f6-4b99-9450-a9a0a5ca16eb","createdDateTimeUtc":"2021-05-03T19:34:41.1116807Z","lastActionDateTimeUtc":"2021-05-03T19:34:51.9406412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b2a1de2f-1cd7-492b-baa7-bfa920e8e89e","createdDateTimeUtc":"2021-05-03T19:34:30.3129531Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.4671773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5c23e37e-22db-4c84-8bbb-32846e32ea97","createdDateTimeUtc":"2021-05-03T19:34:30.3109187Z","lastActionDateTimeUtc":"2021-05-03T19:34:33.5122528Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3ab8d9f-b290-4448-90c4-6bacf8841121","createdDateTimeUtc":"2021-05-03T19:34:15.8376254Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.7751191Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0bd62a6f-4fa7-49cf-bc42-dae08ef8ac09","createdDateTimeUtc":"2021-05-03T19:34:15.4981001Z","lastActionDateTimeUtc":"2021-05-03T19:34:26.8187171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"85fb5d14-37d3-44a7-9b55-77145510a448","createdDateTimeUtc":"2021-05-03T19:34:07.9313446Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.372462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d684592d-9617-4518-8c1c-a3bc91afba20","createdDateTimeUtc":"2021-05-03T19:34:07.4479672Z","lastActionDateTimeUtc":"2021-05-03T19:34:09.3817449Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2cf03d8a-5e4e-4801-9b2e-e251c75d0614","createdDateTimeUtc":"2021-05-03T19:33:51.6616887Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6584077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"347aff35-d166-484d-9185-be212bc8761d","createdDateTimeUtc":"2021-05-03T19:33:50.4679763Z","lastActionDateTimeUtc":"2021-05-03T19:34:01.6896787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c28330df-3696-4977-af9b-6058db406689","createdDateTimeUtc":"2021-05-03T19:33:39.3535571Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.2491904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e75ae9f1-7198-414c-82b1-6cf7db374f79","createdDateTimeUtc":"2021-05-03T19:33:39.0967415Z","lastActionDateTimeUtc":"2021-05-03T19:33:43.274411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"eb3dede2-938d-4c40-a9af-581610c9e020","createdDateTimeUtc":"2021-05-03T19:33:25.0633363Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6739036Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8fae5332-5553-4de2-9874-a8da89d7aac3","createdDateTimeUtc":"2021-05-03T19:33:24.9036709Z","lastActionDateTimeUtc":"2021-05-03T19:33:36.6268918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e527b50f-17bf-4391-b8a8-fb989ee9fed7","createdDateTimeUtc":"2021-05-03T19:33:14.2797493Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2595115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c980c9f6-a295-405d-96dd-93ffeab3e607","createdDateTimeUtc":"2021-05-03T19:33:14.2717891Z","lastActionDateTimeUtc":"2021-05-03T19:33:18.2284814Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e69d8f2-b294-4894-a92e-47a74145c7e3","createdDateTimeUtc":"2021-05-03T19:32:59.8678634Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.7589791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8a8d4989-72ce-4fbf-95ff-1e3dffdfceac","createdDateTimeUtc":"2021-05-03T19:32:58.8404768Z","lastActionDateTimeUtc":"2021-05-03T19:33:11.6898091Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c770e280-c1f6-4958-9564-a1aabc08bd9f","createdDateTimeUtc":"2021-05-03T19:32:51.2094346Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4457472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b329c62-f1bb-407f-b56b-f5fd6ba599ac","createdDateTimeUtc":"2021-05-03T19:32:45.6467243Z","lastActionDateTimeUtc":"2021-05-03T19:32:56.4769534Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"380175ba-7389-4f4f-8f53-5cf51e5f456a","createdDateTimeUtc":"2021-05-03T19:32:35.8222924Z","lastActionDateTimeUtc":"2021-05-03T19:32:42.1576774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c89e7648-3dde-4126-8329-0bf97820adba","createdDateTimeUtc":"2021-05-03T19:32:32.6654205Z","lastActionDateTimeUtc":"2021-05-03T19:32:35.1567177Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=855&$top=1616&$maxpagesize=50"}' + headers: + apim-request-id: a3aecdf1-e4ae-4108-9cd2-e8725a2155fb + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:06 GMT + etag: '"477FBA4BF812F6B29EB8D9E65C0698D42A1A048CC116EDABD9C9526E18D9628A"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a3aecdf1-e4ae-4108-9cd2-e8725a2155fb + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=805&$top=1666&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=855&$top=1616&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"53f4f0e1-1fcb-4b3a-85c2-1126fec1947a","createdDateTimeUtc":"2021-05-03T19:32:30.0169203Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4999185Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8605c445-8ce3-41ae-80eb-d25e37acd768","createdDateTimeUtc":"2021-05-03T19:32:27.2666636Z","lastActionDateTimeUtc":"2021-05-03T19:32:33.4990932Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6905b574-ca6c-4fe2-a5d9-6d1216474f92","createdDateTimeUtc":"2021-05-03T19:32:14.4968384Z","lastActionDateTimeUtc":"2021-05-03T19:32:21.752684Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"58edb4d7-a601-4caa-aed6-5c637148a57f","createdDateTimeUtc":"2021-05-03T19:32:10.9555351Z","lastActionDateTimeUtc":"2021-05-03T19:32:19.1833996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b47917eb-9564-4dc1-a97e-700555991116","createdDateTimeUtc":"2021-05-03T19:32:07.4940107Z","lastActionDateTimeUtc":"2021-05-03T19:32:11.9698764Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b8ba48f-3e2c-4922-82e5-f80eb6fbf858","createdDateTimeUtc":"2021-05-03T19:32:03.8887354Z","lastActionDateTimeUtc":"2021-05-03T19:32:18.1582422Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d5f2c58c-a85c-4276-84ac-7826c58f6956","createdDateTimeUtc":"2021-05-03T19:32:00.4415565Z","lastActionDateTimeUtc":"2021-05-03T19:32:17.2956816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"da41225c-1748-4fda-91e0-74370f1ed106","createdDateTimeUtc":"2021-05-03T19:31:34.9556627Z","lastActionDateTimeUtc":"2021-05-03T19:31:38.6122657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"31d25f84-f73b-4923-8fb4-55c12a156f15","createdDateTimeUtc":"2021-05-03T19:31:32.0938725Z","lastActionDateTimeUtc":"2021-05-03T19:31:35.2856066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25dfddbc-7c76-406d-9acf-85fd2278dd64","createdDateTimeUtc":"2021-05-03T19:31:29.3572045Z","lastActionDateTimeUtc":"2021-05-03T19:31:32.2604809Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"751aa626-e15f-43fe-b95b-7dcc8ae5505b","createdDateTimeUtc":"2021-05-03T19:31:25.9609089Z","lastActionDateTimeUtc":"2021-05-03T19:31:29.2585239Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66d149ac-d69f-46d9-81a5-734609971eaf","createdDateTimeUtc":"2021-05-03T19:31:23.1454595Z","lastActionDateTimeUtc":"2021-05-03T19:31:26.1725822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"536624dd-29da-42cf-afd4-d085f096838f","createdDateTimeUtc":"2021-05-03T19:31:20.2956703Z","lastActionDateTimeUtc":"2021-05-03T19:31:24.6769027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2da2521d-cbd7-4515-a5a5-59a8db22d863","createdDateTimeUtc":"2021-05-03T19:31:17.5322844Z","lastActionDateTimeUtc":"2021-05-03T19:31:20.1247411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"712f176b-83af-416a-947a-df2a55fa6737","createdDateTimeUtc":"2021-05-03T19:31:14.8217553Z","lastActionDateTimeUtc":"2021-05-03T19:31:17.1019793Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a25a6f7-aa94-407c-8b17-9182c5c32922","createdDateTimeUtc":"2021-05-03T19:31:12.1263682Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.5727884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5e60bee8-ee7c-47f6-b42e-1711f51ffb55","createdDateTimeUtc":"2021-05-03T19:31:09.3931013Z","lastActionDateTimeUtc":"2021-05-03T19:31:15.8051343Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33ea962e-2ec5-43fc-aa2d-bc588a8026fb","createdDateTimeUtc":"2021-05-03T19:28:36.2218736Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.8918322Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b1461584-9bb8-4ceb-8d8a-7a080a851bfc","createdDateTimeUtc":"2021-05-03T19:28:33.5908965Z","lastActionDateTimeUtc":"2021-05-03T19:28:39.4836444Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4f5b9d38-7268-4c65-9f21-c91479b5f177","createdDateTimeUtc":"2021-05-03T19:28:30.9880328Z","lastActionDateTimeUtc":"2021-05-03T19:28:36.5148292Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"924d6641-751f-4108-a8d2-fce5242af73d","createdDateTimeUtc":"2021-05-03T19:28:28.3367056Z","lastActionDateTimeUtc":"2021-05-03T19:28:30.5334527Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d3a733e-6a01-4c15-bdda-d68af70e7424","createdDateTimeUtc":"2021-05-03T19:28:25.6162319Z","lastActionDateTimeUtc":"2021-05-03T19:28:32.6395106Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6cda3baf-6d8c-4e73-9e73-543e7381edcd","createdDateTimeUtc":"2021-05-03T19:28:12.3834238Z","lastActionDateTimeUtc":"2021-05-03T19:28:15.4532011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5d1d39d8-5b16-4585-ae9b-8e767efe2d52","createdDateTimeUtc":"2021-05-03T19:28:09.6888302Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8612746Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"232d7d2e-e945-4e71-8229-a8fa8ba4cbc4","createdDateTimeUtc":"2021-05-03T19:28:06.2596999Z","lastActionDateTimeUtc":"2021-05-03T19:28:11.8621144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1f44610e-fab8-4bb0-b9ac-e5ad6bd68e4d","createdDateTimeUtc":"2021-05-03T19:27:53.8841577Z","lastActionDateTimeUtc":"2021-05-03T19:27:56.6985972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69141535-d2fc-4737-a753-7097580263c4","createdDateTimeUtc":"2021-05-03T19:27:51.2424032Z","lastActionDateTimeUtc":"2021-05-03T19:27:53.6910354Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"993d32e6-13c7-4fab-b322-cd4a4708ff6f","createdDateTimeUtc":"2021-05-03T19:27:48.6037516Z","lastActionDateTimeUtc":"2021-05-03T19:27:50.5676078Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4a28c83a-0236-4f17-9489-6daf5b4bf021","createdDateTimeUtc":"2021-05-03T19:27:29.9562077Z","lastActionDateTimeUtc":"2021-05-03T19:27:31.1861608Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"4cce1d35-864a-452a-b6bf-b8e460ea2bd7","createdDateTimeUtc":"2021-05-03T19:27:27.5845405Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.8215062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a3436540-0a15-4861-bf2d-b96d5f9e41f6","createdDateTimeUtc":"2021-05-03T19:27:23.8240044Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.5832575Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdcbac61-e512-473b-b032-6b44cb29e388","createdDateTimeUtc":"2021-05-03T19:27:21.3593889Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.4267726Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a37da29a-4a89-46dc-9fb2-982429c547a1","createdDateTimeUtc":"2021-05-03T19:27:18.9688314Z","lastActionDateTimeUtc":"2021-05-03T19:27:30.2664208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b6c58c3-5332-4bcf-8bd9-472813960de0","createdDateTimeUtc":"2021-05-03T19:27:11.701878Z","lastActionDateTimeUtc":"2021-05-03T19:27:15.7014958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c4721bc3-2a04-4ac1-bc2d-a08abf675da9","createdDateTimeUtc":"2021-05-03T19:27:04.4438909Z","lastActionDateTimeUtc":"2021-05-03T19:27:08.6389544Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cdd0e9ee-4ccf-43b1-8ba9-cd66e8dcaf76","createdDateTimeUtc":"2021-05-03T19:26:57.2121391Z","lastActionDateTimeUtc":"2021-05-03T19:27:01.5602625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"040c05d6-1047-4c33-b060-2b24be7da6c8","createdDateTimeUtc":"2021-05-03T19:26:49.8928567Z","lastActionDateTimeUtc":"2021-05-03T19:26:54.497892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ffa16591-b394-40de-ad4b-d9de3c14c36d","createdDateTimeUtc":"2021-05-03T19:26:43.8488231Z","lastActionDateTimeUtc":"2021-05-03T19:26:45.4242206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"00c4225d-8f3c-4771-94e5-99063d7748c3","createdDateTimeUtc":"2021-05-03T19:26:40.8937963Z","lastActionDateTimeUtc":"2021-05-03T19:26:47.5604767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6574d52b-ca42-46ad-924f-eb1e168474f2","createdDateTimeUtc":"2021-05-03T19:26:38.3506606Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.8063199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0104fb7-5518-42e9-8bb1-3a9960bd0de1","createdDateTimeUtc":"2021-05-03T19:26:35.6925079Z","lastActionDateTimeUtc":"2021-05-03T19:26:43.7991963Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a9f48450-1cba-4722-8d07-f00fce333632","createdDateTimeUtc":"2021-05-03T19:26:18.9505271Z","lastActionDateTimeUtc":"2021-05-03T19:26:22.5291151Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2610a987-ae90-4ea9-9516-8bc0f703e68b","createdDateTimeUtc":"2021-05-03T19:26:11.6428529Z","lastActionDateTimeUtc":"2021-05-03T19:26:15.4353216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"36e80fd8-e5d7-44a4-b5d5-9c9949cee6bc","createdDateTimeUtc":"2021-05-03T19:26:04.3811399Z","lastActionDateTimeUtc":"2021-05-03T19:26:08.3879743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"92bab5c1-3b64-4d48-bdb7-f402eca033af","createdDateTimeUtc":"2021-05-03T19:25:57.117312Z","lastActionDateTimeUtc":"2021-05-03T19:25:59.3329992Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b54eae60-ac8d-46b6-945a-885a9e1356a2","createdDateTimeUtc":"2021-05-03T19:25:49.8298012Z","lastActionDateTimeUtc":"2021-05-03T19:25:52.3292724Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"26d147ee-60e9-4baf-95bf-53f5e46b2f97","createdDateTimeUtc":"2021-05-03T19:25:43.6963855Z","lastActionDateTimeUtc":"2021-05-03T19:25:45.3056266Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"abb0288f-9060-42bc-9ff6-21310ed68f6e","createdDateTimeUtc":"2021-05-03T19:25:36.1882144Z","lastActionDateTimeUtc":"2021-05-03T19:25:38.2290358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cbaf5e25-5cd0-4096-9c85-a0533c0f2efc","createdDateTimeUtc":"2021-05-03T19:25:27.1755474Z","lastActionDateTimeUtc":"2021-05-03T19:25:31.2869589Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"94d7a840-7243-4788-9dab-dd757731d63c","createdDateTimeUtc":"2021-05-03T19:25:11.9810373Z","lastActionDateTimeUtc":"2021-05-03T19:25:23.3249248Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=905&$top=1566&$maxpagesize=50"}' + headers: + apim-request-id: d69f4d4a-26d2-459d-b7a6-bfc513637084 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:07 GMT + etag: '"C90552387B3CF9E8A890D0227E70BBF900DEF9190FB336853FC678F06AB789D4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d69f4d4a-26d2-459d-b7a6-bfc513637084 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=855&$top=1616&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=905&$top=1566&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"39c0d425-f677-485e-8c55-b5c8aba48e45","createdDateTimeUtc":"2021-05-03T19:25:04.2645979Z","lastActionDateTimeUtc":"2021-05-03T19:25:08.2779707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a267b99c-ba05-4b8d-9de2-58685c5b8a1b","createdDateTimeUtc":"2021-05-03T19:25:00.814632Z","lastActionDateTimeUtc":"2021-05-03T19:25:03.6488429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"21332d6c-f37a-472e-be2a-184b6c02971d","createdDateTimeUtc":"2021-05-03T19:24:58.0461342Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.1053425Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"851bf97a-2d24-4312-aef5-604e673b4e93","createdDateTimeUtc":"2021-05-03T19:24:55.449378Z","lastActionDateTimeUtc":"2021-05-03T19:25:02.0644582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3683d6a8-9e38-4764-bae3-e0483cdfac44","createdDateTimeUtc":"2021-05-03T19:24:42.2001288Z","lastActionDateTimeUtc":"2021-05-03T19:24:47.0314069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"bdaa9704-866d-4245-81e5-4036ede31900","createdDateTimeUtc":"2021-05-03T19:24:38.7036865Z","lastActionDateTimeUtc":"2021-05-03T19:24:43.4044951Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3d85ecdb-d720-433e-8bd8-585a97650c94","createdDateTimeUtc":"2021-05-03T19:24:35.3236971Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.5655786Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87781cf9-8818-48bb-842f-d04a0cbc4725","createdDateTimeUtc":"2021-05-03T19:24:31.930951Z","lastActionDateTimeUtc":"2021-05-03T19:24:40.565Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8283d08f-3ac3-45f3-b46a-ca69be00a69c","createdDateTimeUtc":"2021-05-03T19:24:28.5282779Z","lastActionDateTimeUtc":"2021-05-03T19:24:38.4619428Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3f58221-3004-4a76-9909-589f85967749","createdDateTimeUtc":"2021-05-03T19:24:20.5566738Z","lastActionDateTimeUtc":"2021-05-03T19:24:22.904178Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d42243e-4031-4ea1-a73f-07f388b9c5ea","createdDateTimeUtc":"2021-05-03T19:24:11.2547891Z","lastActionDateTimeUtc":"2021-05-03T19:24:15.8649152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34ed6da0-e4fc-48b6-98eb-2e5f1345de97","createdDateTimeUtc":"2021-05-03T19:23:52.6090334Z","lastActionDateTimeUtc":"2021-05-03T19:24:04.1374405Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"dd58bcad-0a27-4cc3-8558-89a24c1766eb","createdDateTimeUtc":"2021-05-03T19:23:32.6630541Z","lastActionDateTimeUtc":"2021-05-03T19:23:38.9500044Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"7c3c74e0-0fa3-4344-b417-23c6c3611961","createdDateTimeUtc":"2021-05-03T19:23:16.8064224Z","lastActionDateTimeUtc":"2021-05-03T19:23:27.2328826Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"78f4a217-2154-4203-88b2-49eaae01cd8a","createdDateTimeUtc":"2021-05-03T19:23:01.3250022Z","lastActionDateTimeUtc":"2021-05-03T19:23:08.6866271Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"9dbd195f-6b2c-4b15-83ff-d4092c40f9f6","createdDateTimeUtc":"2021-05-03T19:22:44.6647321Z","lastActionDateTimeUtc":"2021-05-03T19:22:50.716575Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c2c050b5-195a-4906-93d2-1275edcf68e4","createdDateTimeUtc":"2021-05-03T19:22:28.8448528Z","lastActionDateTimeUtc":"2021-05-03T19:22:35.1051425Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"20bac236-8aab-4fb9-9cc4-fccdf58a9b26","createdDateTimeUtc":"2021-05-03T19:22:03.3790859Z","lastActionDateTimeUtc":"2021-05-03T19:22:12.9629026Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"8f1c3056-8f25-4d3f-b08c-63e9ad9435ea","createdDateTimeUtc":"2021-05-03T19:21:37.967142Z","lastActionDateTimeUtc":"2021-05-03T19:21:57.2801541Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"081c703f-9478-40e0-8e67-2cb44c35783a","createdDateTimeUtc":"2021-05-03T19:21:19.6750585Z","lastActionDateTimeUtc":"2021-05-03T19:21:30.4166115Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"505f81f5-f2fb-42c0-90dd-a1ba8e0dd299","createdDateTimeUtc":"2021-05-03T19:20:46.8874709Z","lastActionDateTimeUtc":"2021-05-03T19:21:02.226449Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"34761e6a-3168-4a1c-9e7c-70ee526d4e4b","createdDateTimeUtc":"2021-05-03T19:20:19.831418Z","lastActionDateTimeUtc":"2021-05-03T19:20:35.2366902Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"228c820c-34b1-4960-bfda-691928dc8eec","createdDateTimeUtc":"2021-05-03T19:20:03.6029252Z","lastActionDateTimeUtc":"2021-05-03T19:20:09.578611Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a58be54c-510a-40a5-8136-db59037a0356","createdDateTimeUtc":"2021-05-03T19:19:47.3724395Z","lastActionDateTimeUtc":"2021-05-03T19:19:58.4796319Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"687b51b6-c190-4fdf-99b9-f14949be9ebd","createdDateTimeUtc":"2021-05-03T19:19:22.9372788Z","lastActionDateTimeUtc":"2021-05-03T19:19:38.9942096Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"dd9ddd50-e371-4091-a9ff-2077b2d88505","createdDateTimeUtc":"2021-05-03T19:19:05.9470422Z","lastActionDateTimeUtc":"2021-05-03T19:19:13.8403114Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ca582e5a-d09d-43bd-9e03-2d09fa940071","createdDateTimeUtc":"2021-05-03T19:18:46.291281Z","lastActionDateTimeUtc":"2021-05-03T19:19:01.3995464Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a0448fa7-74fe-48a1-bb37-9174fbac946f","createdDateTimeUtc":"2021-05-03T14:49:33.7654478Z","lastActionDateTimeUtc":"2021-05-03T14:49:36.9201384Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"37bc7122-23c9-48d5-893d-af99bb49668a","createdDateTimeUtc":"2021-05-03T14:49:20.3537403Z","lastActionDateTimeUtc":"2021-05-03T14:49:31.1410039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95f1e24f-217f-47e5-99ca-aa279816f3b4","createdDateTimeUtc":"2021-05-03T14:49:08.4550608Z","lastActionDateTimeUtc":"2021-05-03T14:49:12.0595962Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b9fea00-31a8-400e-8ca2-bb4e45685a1c","createdDateTimeUtc":"2021-05-03T14:48:55.362928Z","lastActionDateTimeUtc":"2021-05-03T14:49:05.8791256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b13de099-e8ea-4db0-9239-588f53638356","createdDateTimeUtc":"2021-05-03T14:48:44.5314193Z","lastActionDateTimeUtc":"2021-05-03T14:48:46.7748448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c46f7e68-4c88-46c0-a4d6-e8ae84d11037","createdDateTimeUtc":"2021-05-03T14:48:30.2944428Z","lastActionDateTimeUtc":"2021-05-03T14:48:40.965892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d8acaaed-6b68-4537-bb3a-0828e2ca38ae","createdDateTimeUtc":"2021-05-03T14:48:18.1718876Z","lastActionDateTimeUtc":"2021-05-03T14:48:21.6577758Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2dfdbf34-ef82-4cad-b83e-cbe41dff24a2","createdDateTimeUtc":"2021-05-03T14:48:05.1587515Z","lastActionDateTimeUtc":"2021-05-03T14:48:15.6780848Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2b6bb60c-eef9-47d5-b648-b06cd0f8f6fc","createdDateTimeUtc":"2021-05-03T14:47:53.3866809Z","lastActionDateTimeUtc":"2021-05-03T14:47:57.1552484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"96eaecab-eadc-4edf-b147-45b7f23c6d51","createdDateTimeUtc":"2021-05-03T14:47:40.3493759Z","lastActionDateTimeUtc":"2021-05-03T14:47:50.9557442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"efd56c88-8216-4ebe-b422-a893385154d4","createdDateTimeUtc":"2021-05-03T14:44:28.8959752Z","lastActionDateTimeUtc":"2021-05-03T14:44:31.2428427Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5b512e34-361a-46c2-9eba-4d181692bcbf","createdDateTimeUtc":"2021-05-03T14:44:13.3942163Z","lastActionDateTimeUtc":"2021-05-03T14:44:25.4200051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3f3baea9-bc12-48fa-a5aa-07a848d5b60a","createdDateTimeUtc":"2021-05-03T14:44:03.6395846Z","lastActionDateTimeUtc":"2021-05-03T14:44:06.2455219Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4e09f88c-db38-437d-9e6a-dc2859dd9b86","createdDateTimeUtc":"2021-05-03T14:43:48.2204236Z","lastActionDateTimeUtc":"2021-05-03T14:44:00.3884274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f5e67d43-8b54-46d6-bb90-f4049c7c2980","createdDateTimeUtc":"2021-05-03T14:43:38.4480176Z","lastActionDateTimeUtc":"2021-05-03T14:43:41.0873869Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6039415f-1741-4fe3-9b62-85f3c0f2e3f4","createdDateTimeUtc":"2021-05-03T14:43:23.8436074Z","lastActionDateTimeUtc":"2021-05-03T14:43:35.4506685Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"1e8dbd2f-c684-4a3a-955c-4132e12142b1","createdDateTimeUtc":"2021-05-03T14:43:13.1910981Z","lastActionDateTimeUtc":"2021-05-03T14:43:16.0453229Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7f1cd535-b545-4832-b755-9b68d1ebbc22","createdDateTimeUtc":"2021-05-03T14:42:58.9905735Z","lastActionDateTimeUtc":"2021-05-03T14:43:10.43511Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0a962d77-64ff-448f-aa36-0af8f77a40fb","createdDateTimeUtc":"2021-05-03T14:42:48.3667069Z","lastActionDateTimeUtc":"2021-05-03T14:42:51.4179236Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc2a2a8b-c057-46e9-9898-1ec8fa736b8e","createdDateTimeUtc":"2021-05-03T14:42:33.0179687Z","lastActionDateTimeUtc":"2021-05-03T14:42:45.0908817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1277ede-1fe7-4692-9728-92985059402c","createdDateTimeUtc":"2021-05-03T14:37:28.1451115Z","lastActionDateTimeUtc":"2021-05-03T14:37:39.9472823Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b9ce6119-c702-4ad6-90de-946f1e7beb03","createdDateTimeUtc":"2021-05-03T14:37:18.6208296Z","lastActionDateTimeUtc":"2021-05-03T14:37:20.5808288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"49d5b256-ecdf-4895-9bc8-d8eae20caab4","createdDateTimeUtc":"2021-05-03T14:37:02.8340462Z","lastActionDateTimeUtc":"2021-05-03T14:37:14.6656558Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=955&$top=1516&$maxpagesize=50"}' + headers: + apim-request-id: 7b27656e-4f0a-4ca7-98ca-dd253aafa11c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:07 GMT + etag: '"7C4127EAD394D49966873A9A0BB1E28780495C09B22ACB078F06CF36517A9BFF"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7b27656e-4f0a-4ca7-98ca-dd253aafa11c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=905&$top=1566&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=955&$top=1516&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"2ce1a1d9-2826-4324-b823-90adfa681b74","createdDateTimeUtc":"2021-05-03T14:36:53.1604863Z","lastActionDateTimeUtc":"2021-05-03T14:36:55.5146625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c6445787-3a35-44d8-96a4-d083d094835a","createdDateTimeUtc":"2021-05-03T14:36:37.712129Z","lastActionDateTimeUtc":"2021-05-03T14:36:49.603166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"970d542e-ad57-4e9b-ba57-010e4d8a2873","createdDateTimeUtc":"2021-05-03T14:36:26.9352728Z","lastActionDateTimeUtc":"2021-05-03T14:36:30.4276387Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f3e912b5-b9e6-4594-8018-f65586e152ac","createdDateTimeUtc":"2021-05-03T14:36:12.8199752Z","lastActionDateTimeUtc":"2021-05-03T14:36:24.6053499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"15cfd4b4-d437-4a4c-9420-456af61a9ba8","createdDateTimeUtc":"2021-05-03T14:36:03.1898417Z","lastActionDateTimeUtc":"2021-05-03T14:36:05.4299552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bdfda27d-b692-4351-9150-346dd0187df8","createdDateTimeUtc":"2021-05-03T14:35:47.7916923Z","lastActionDateTimeUtc":"2021-05-03T14:35:59.7432297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"75fb5a62-9810-4cc3-ad6a-0fb7bffef497","createdDateTimeUtc":"2021-05-03T14:35:36.0702843Z","lastActionDateTimeUtc":"2021-05-03T14:35:40.8609029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"98151465-bfb7-4f0f-a0b2-ce87624a8597","createdDateTimeUtc":"2021-05-03T14:20:20.994043Z","lastActionDateTimeUtc":"2021-05-03T14:20:25.9671549Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"27ea8bff-93a4-40a6-8dad-6893fa29e8e0","createdDateTimeUtc":"2021-05-03T14:20:17.8058096Z","lastActionDateTimeUtc":"2021-05-03T14:20:21.9117126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"3acfe578-d6bc-444a-94f3-f388555ee01e","createdDateTimeUtc":"2021-05-03T14:20:14.5925116Z","lastActionDateTimeUtc":"2021-05-03T14:20:19.0382176Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5a8575ab-a6e1-48fc-87c3-f1bcea9d7013","createdDateTimeUtc":"2021-05-03T14:20:11.0774489Z","lastActionDateTimeUtc":"2021-05-03T14:20:15.9815029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6ede83fe-8e63-4781-a190-59ca25e8c03b","createdDateTimeUtc":"2021-05-03T14:20:07.4417527Z","lastActionDateTimeUtc":"2021-05-03T14:20:14.9666849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0e1cb356-9eba-4e4f-a7a2-415a77ae2f25","createdDateTimeUtc":"2021-05-03T14:19:52.2663408Z","lastActionDateTimeUtc":"2021-05-03T14:19:55.4194366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6e319f3e-6747-4a3a-9ce8-4aeba779c444","createdDateTimeUtc":"2021-05-03T14:19:36.8719142Z","lastActionDateTimeUtc":"2021-05-03T14:19:42.055052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7ce20af8-809c-4649-a0ab-c88dbb7088be","createdDateTimeUtc":"2021-05-03T14:19:22.6990686Z","lastActionDateTimeUtc":"2021-05-03T14:19:30.4271246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"4b39cd01-2a55-4615-81a8-5c20e7bba050","createdDateTimeUtc":"2021-05-03T14:19:12.0481425Z","lastActionDateTimeUtc":"2021-05-03T14:19:19.904618Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e0219dbb-05e7-4843-a267-8296707bf5e9","createdDateTimeUtc":"2021-05-03T14:18:51.8486361Z","lastActionDateTimeUtc":"2021-05-03T14:19:00.2937509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"8115da56-f461-424c-8102-ea8f5757e3b6","createdDateTimeUtc":"2021-05-03T14:18:22.5351766Z","lastActionDateTimeUtc":"2021-05-03T14:18:24.5804117Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"40af84d4-9d67-4f3f-962c-886c9dcbff37","createdDateTimeUtc":"2021-05-03T14:18:20.0386803Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.3462937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"905f3767-c27a-4fa2-ac76-e32c898d5c78","createdDateTimeUtc":"2021-05-03T14:18:17.5374425Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.9255465Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"70489520-5558-424d-8aa1-38f96ec75060","createdDateTimeUtc":"2021-05-03T14:18:15.0894033Z","lastActionDateTimeUtc":"2021-05-03T14:18:23.940135Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f9cdb6ff-a8e9-4ee4-8ca7-fa0981fe2d6b","createdDateTimeUtc":"2021-05-03T14:18:12.6649365Z","lastActionDateTimeUtc":"2021-05-03T14:18:22.8429959Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"149345dd-bc1a-4144-a77b-fca863e3c35e","createdDateTimeUtc":"2021-05-03T14:18:05.2173426Z","lastActionDateTimeUtc":"2021-05-03T14:18:09.8805007Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"89ceb58b-7adc-432d-99ee-6c05201786c2","createdDateTimeUtc":"2021-05-03T14:17:52.0534457Z","lastActionDateTimeUtc":"2021-05-03T14:18:02.6136201Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fbed310-237a-457a-a5d7-862fa692d71a","createdDateTimeUtc":"2021-05-03T14:17:40.1715812Z","lastActionDateTimeUtc":"2021-05-03T14:17:44.6969577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dc48983d-b77b-439c-950e-f0f2b0c95047","createdDateTimeUtc":"2021-05-03T14:17:25.8771654Z","lastActionDateTimeUtc":"2021-05-03T14:17:37.5736203Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6306fe25-15e7-4068-98f6-b621d5bec6bc","createdDateTimeUtc":"2021-05-03T14:17:10.1115881Z","lastActionDateTimeUtc":"2021-05-03T14:17:22.5488107Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f1bb9bea-9883-408e-9c75-9e351d167d9c","createdDateTimeUtc":"2021-05-03T14:16:16.1128762Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.9811558Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c34b25d0-c46f-4ae8-9c0e-f949c751b716","createdDateTimeUtc":"2021-05-03T14:16:13.689051Z","lastActionDateTimeUtc":"2021-05-03T14:16:17.4149627Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cc45bb74-898e-4263-8bb9-8a71eafe1404","createdDateTimeUtc":"2021-05-03T14:16:11.3135638Z","lastActionDateTimeUtc":"2021-05-03T14:16:16.4965327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"894c852f-a2cc-41f3-9cfe-68ae221ecf77","createdDateTimeUtc":"2021-05-03T14:16:08.9113677Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.3866562Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2f24708d-51e8-43bc-8134-325eff21196b","createdDateTimeUtc":"2021-05-03T14:16:06.4839192Z","lastActionDateTimeUtc":"2021-05-03T14:16:15.8379038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"691a44d7-4d9c-4ec3-9eeb-dd0dd4c5074b","createdDateTimeUtc":"2021-05-03T14:15:53.1586905Z","lastActionDateTimeUtc":"2021-05-03T14:15:56.5000625Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"52d91d90-90de-41a2-be83-b3bca35316f5","createdDateTimeUtc":"2021-05-03T14:15:41.2275285Z","lastActionDateTimeUtc":"2021-05-03T14:15:50.3714324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e338616d-7eec-4ea3-8bc7-607ed91a1069","createdDateTimeUtc":"2021-05-03T14:15:28.302343Z","lastActionDateTimeUtc":"2021-05-03T14:15:31.325094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"238b62a6-62ed-43e6-88c1-50fb2b9af9df","createdDateTimeUtc":"2021-05-03T14:15:06.1681117Z","lastActionDateTimeUtc":"2021-05-03T14:15:25.3085046Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"48ca5dc4-9d14-47e1-b736-ceba43ec0639","createdDateTimeUtc":"2021-05-03T14:14:46.0522862Z","lastActionDateTimeUtc":"2021-05-03T14:14:51.7143904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1decec9-03e1-4312-8081-239eaad6f563","createdDateTimeUtc":"2021-05-02T15:35:34.2215172Z","lastActionDateTimeUtc":"2021-05-02T15:35:37.2432166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"621f13f2-a536-4e8a-b666-500e2ff78cdc","createdDateTimeUtc":"2021-05-02T15:35:31.581785Z","lastActionDateTimeUtc":"2021-05-02T15:35:34.2459939Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5386c90c-b80c-4c2e-877e-c2b0a08621ad","createdDateTimeUtc":"2021-05-02T15:35:28.9241259Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5824046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"db0b0879-4027-41a7-86f4-849d2794f3f7","createdDateTimeUtc":"2021-05-02T15:35:26.2837749Z","lastActionDateTimeUtc":"2021-05-02T15:35:32.5649057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"954f614c-f0b1-468a-bf25-7d8f4cdbb719","createdDateTimeUtc":"2021-05-02T15:35:23.6172358Z","lastActionDateTimeUtc":"2021-05-02T15:35:27.106031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"391644a8-af65-4ed7-88d1-15284597024a","createdDateTimeUtc":"2021-05-02T15:34:29.7136014Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.1430075Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"748d402e-f67b-434f-9176-52c84623aa03","createdDateTimeUtc":"2021-05-02T15:34:27.0355756Z","lastActionDateTimeUtc":"2021-05-02T15:34:34.0698089Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0f0575d-5868-4a56-9c20-a5f69ca0d3fe","createdDateTimeUtc":"2021-05-02T15:34:24.4242899Z","lastActionDateTimeUtc":"2021-05-02T15:34:28.7490756Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cbe3f921-c9af-4072-a16d-b36078e4d488","createdDateTimeUtc":"2021-05-02T15:34:21.7990933Z","lastActionDateTimeUtc":"2021-05-02T15:34:25.1554271Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da5a65d4-a8fc-4147-95cb-48d2c6947e20","createdDateTimeUtc":"2021-05-02T15:34:19.1062381Z","lastActionDateTimeUtc":"2021-05-02T15:34:22.6004255Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eacb5cba-a0bb-4861-bcb2-411ae2bf4bad","createdDateTimeUtc":"2021-05-02T15:29:33.4572088Z","lastActionDateTimeUtc":"2021-05-02T15:29:36.5839125Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f4c45cbe-f916-4cdb-9f4e-afaf7ef37bb7","createdDateTimeUtc":"2021-05-02T15:29:30.75655Z","lastActionDateTimeUtc":"2021-05-02T15:29:35.3650954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e025c766-0b9b-430d-85b9-86baa7e42890","createdDateTimeUtc":"2021-05-02T15:29:28.0731947Z","lastActionDateTimeUtc":"2021-05-02T15:29:30.5278616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1005&$top=1466&$maxpagesize=50"}' + headers: + apim-request-id: a9b2a4b3-635f-46b3-8911-07340d5426e8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:07 GMT + etag: '"297F5CC6D1CFD1B80321A4D7BA3305FD3668EE895B4FEF85C12A612EB8EF8553"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a9b2a4b3-635f-46b3-8911-07340d5426e8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=955&$top=1516&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1005&$top=1466&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a02685b0-3d99-452b-ae0a-3b9fd26a1d55","createdDateTimeUtc":"2021-05-02T15:29:25.2703625Z","lastActionDateTimeUtc":"2021-05-02T15:29:27.4821395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2033a02-4205-451f-b7ea-962ba4d8b764","createdDateTimeUtc":"2021-05-02T15:29:22.5747549Z","lastActionDateTimeUtc":"2021-05-02T15:29:26.4660391Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0dff1516-8b08-4a1d-9c63-98cfb87fffdf","createdDateTimeUtc":"2021-05-02T15:29:19.8283365Z","lastActionDateTimeUtc":"2021-05-02T15:29:23.4523026Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9c1e90a8-e798-4d3e-b340-b7d147a24fc2","createdDateTimeUtc":"2021-05-02T15:29:17.172791Z","lastActionDateTimeUtc":"2021-05-02T15:29:20.3879777Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cc3095c5-0115-48fb-b5ed-6c3f2c22db7d","createdDateTimeUtc":"2021-05-02T15:29:14.5008263Z","lastActionDateTimeUtc":"2021-05-02T15:29:17.3568335Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6de1e12c-a329-41b3-ac79-79c6478eb6a8","createdDateTimeUtc":"2021-05-02T15:29:11.8713281Z","lastActionDateTimeUtc":"2021-05-02T15:29:15.8126344Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"97d902f6-27e4-47aa-956a-a9c18c28387e","createdDateTimeUtc":"2021-05-02T15:29:09.0775366Z","lastActionDateTimeUtc":"2021-05-02T15:29:19.5218293Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e625a2bd-d1f6-49d2-b716-e9de62b8030c","createdDateTimeUtc":"2021-05-02T15:28:39.8923409Z","lastActionDateTimeUtc":"2021-05-02T15:28:44.3872017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d7490e41-2e25-4c04-bc75-5073f49710a3","createdDateTimeUtc":"2021-05-02T15:28:37.1538965Z","lastActionDateTimeUtc":"2021-05-02T15:28:39.5146825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"625109ef-76be-457c-b9cd-2178e3f8f789","createdDateTimeUtc":"2021-05-02T15:28:34.4602327Z","lastActionDateTimeUtc":"2021-05-02T15:28:36.4399053Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0e80f3f4-3c5a-481c-a6d9-61bd94b1dd00","createdDateTimeUtc":"2021-05-02T15:28:31.8003787Z","lastActionDateTimeUtc":"2021-05-02T15:28:35.4408199Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9eae3372-0c62-46f9-86c3-f2555b331415","createdDateTimeUtc":"2021-05-02T15:28:29.1651159Z","lastActionDateTimeUtc":"2021-05-02T15:28:32.400117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"62324c3b-37a1-44db-a8a0-09936698525f","createdDateTimeUtc":"2021-05-02T15:28:26.4507958Z","lastActionDateTimeUtc":"2021-05-02T15:28:29.3626542Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6ba33ca1-cbc6-4b07-bf5d-9c9cc81a7b16","createdDateTimeUtc":"2021-05-02T15:28:23.7637526Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.3904168Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"beb6047c-1538-4b43-a0df-b10028c3e281","createdDateTimeUtc":"2021-05-02T15:28:21.1147169Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6428535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fdd13296-9e6e-406e-971f-4a2d21b95e94","createdDateTimeUtc":"2021-05-02T15:28:16.378989Z","lastActionDateTimeUtc":"2021-05-02T15:28:26.6738081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"948febe3-9f5e-49aa-9d88-cd5e31a440f1","createdDateTimeUtc":"2021-05-02T15:28:13.6345911Z","lastActionDateTimeUtc":"2021-05-02T15:28:21.6694897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba40ffb-8855-4619-948c-c21538e77b8d","createdDateTimeUtc":"2021-05-02T15:27:32.6528892Z","lastActionDateTimeUtc":"2021-05-02T15:27:34.9965813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"782be008-b0d5-4e6e-90c2-969076cde4cf","createdDateTimeUtc":"2021-05-02T15:27:29.1762616Z","lastActionDateTimeUtc":"2021-05-02T15:27:31.9449884Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fd16f94-0123-4f10-8b26-74f4a88ed198","createdDateTimeUtc":"2021-05-02T15:27:26.5475144Z","lastActionDateTimeUtc":"2021-05-02T15:27:28.951591Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0bc9e134-6578-41b6-8e0f-09ba734af92c","createdDateTimeUtc":"2021-05-02T15:27:23.8878503Z","lastActionDateTimeUtc":"2021-05-02T15:27:25.913318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c68a00e9-42f2-45cb-8096-af3f7750fbb7","createdDateTimeUtc":"2021-05-02T15:27:21.2606636Z","lastActionDateTimeUtc":"2021-05-02T15:27:24.8302282Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9180a898-88a9-4c5d-ae73-80a22393852f","createdDateTimeUtc":"2021-05-02T15:27:18.6229296Z","lastActionDateTimeUtc":"2021-05-02T15:27:21.8959947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"65bf0438-5bb8-4275-99b3-993eaeaa7b8f","createdDateTimeUtc":"2021-05-02T15:27:15.9255614Z","lastActionDateTimeUtc":"2021-05-02T15:27:18.8022364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a0bd05b-cc4e-42b0-a923-9aa0f03c68bf","createdDateTimeUtc":"2021-05-02T15:27:13.2153867Z","lastActionDateTimeUtc":"2021-05-02T15:27:15.7643195Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eaef386f-4bba-4ae5-9be0-8a2dcfe322e0","createdDateTimeUtc":"2021-05-02T15:27:08.1014102Z","lastActionDateTimeUtc":"2021-05-02T15:27:10.5859242Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"292657db-b95e-475e-895f-3c0e05b19e17","createdDateTimeUtc":"2021-05-02T15:27:01.282046Z","lastActionDateTimeUtc":"2021-05-02T15:27:09.1617457Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b43b68fb-c98c-4677-9bec-ce99f60c7982","createdDateTimeUtc":"2021-05-02T15:23:43.4570907Z","lastActionDateTimeUtc":"2021-05-02T15:23:46.73054Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"851ee115-3015-47e3-9bdc-0ba216572485","createdDateTimeUtc":"2021-05-02T15:23:40.8006679Z","lastActionDateTimeUtc":"2021-05-02T15:23:43.6949812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2af70fc3-0226-4561-8502-e0ec0bb617a5","createdDateTimeUtc":"2021-05-02T15:23:38.026323Z","lastActionDateTimeUtc":"2021-05-02T15:23:40.6090241Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0cb2a531-1193-4c3c-b11f-077ab0654b1f","createdDateTimeUtc":"2021-05-02T15:23:35.1156944Z","lastActionDateTimeUtc":"2021-05-02T15:23:37.6778825Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"be5e8641-2dc7-4f24-9ba6-f7f502fd9a81","createdDateTimeUtc":"2021-05-02T15:23:32.0799783Z","lastActionDateTimeUtc":"2021-05-02T15:23:34.8601263Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d41627c-9b5c-426b-a313-4cbc682f4174","createdDateTimeUtc":"2021-05-02T15:23:28.957101Z","lastActionDateTimeUtc":"2021-05-02T15:23:31.8785927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"25023555-954a-4222-a47d-1d397f3a9074","createdDateTimeUtc":"2021-05-02T15:23:26.3289009Z","lastActionDateTimeUtc":"2021-05-02T15:23:28.8570122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"519cac4a-0272-4b10-a146-baf7cbac30c8","createdDateTimeUtc":"2021-05-02T15:23:23.6113484Z","lastActionDateTimeUtc":"2021-05-02T15:23:25.7571571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6d91ff38-493a-41c9-b7ca-bfe9b1400d03","createdDateTimeUtc":"2021-05-02T15:23:20.9135963Z","lastActionDateTimeUtc":"2021-05-02T15:23:23.9211795Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3f4be38f-12b7-4ada-b3a7-66fb2421d4ad","createdDateTimeUtc":"2021-05-02T15:23:18.2536792Z","lastActionDateTimeUtc":"2021-05-02T15:23:22.7011236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3309adba-a7eb-4df9-a32b-752d557b5ffd","createdDateTimeUtc":"2021-05-02T15:22:12.1328558Z","lastActionDateTimeUtc":"2021-05-02T15:22:15.5132366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"375b0c65-82ef-468d-99ed-821609a44d95","createdDateTimeUtc":"2021-05-02T15:22:09.5160814Z","lastActionDateTimeUtc":"2021-05-02T15:22:12.5139571Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"800aaada-a397-4222-82dd-c51b19f72ada","createdDateTimeUtc":"2021-05-02T15:22:06.6637556Z","lastActionDateTimeUtc":"2021-05-02T15:22:09.4414594Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d945bb42-a6a5-4c53-9b14-00b95b9e7dae","createdDateTimeUtc":"2021-05-02T15:22:03.9716685Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.4193727Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ff8578f7-f44b-4c0b-a4e0-2c2e9cbd5612","createdDateTimeUtc":"2021-05-02T15:22:01.2642658Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1233764Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"88d82d5a-bdc0-476a-b1a9-6c19829ab8ef","createdDateTimeUtc":"2021-05-02T15:21:58.5854895Z","lastActionDateTimeUtc":"2021-05-02T15:22:06.1386555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"da1bcba7-3368-4c2d-9a49-5c2eb29d579e","createdDateTimeUtc":"2021-05-02T15:21:46.0577323Z","lastActionDateTimeUtc":"2021-05-02T15:21:55.6276817Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"645c39c6-05a3-4446-a281-257ac64cb205","createdDateTimeUtc":"2021-05-02T15:21:34.7214078Z","lastActionDateTimeUtc":"2021-05-02T15:21:40.5299171Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43911fc3-7dab-4928-bb1e-30ec1a8c9847","createdDateTimeUtc":"2021-05-02T15:21:27.921678Z","lastActionDateTimeUtc":"2021-05-02T15:21:33.5042277Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aab09ca6-63bc-4cae-85a3-ad661e4018cb","createdDateTimeUtc":"2021-05-02T15:21:24.1919145Z","lastActionDateTimeUtc":"2021-05-02T15:21:28.0490958Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3a5f5e0e-d2f6-4fec-8cf7-104300bb7d3f","createdDateTimeUtc":"2021-05-02T15:12:48.9669266Z","lastActionDateTimeUtc":"2021-05-02T15:12:54.9073469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"05067857-5e4d-44c5-b6ce-fbacf399742b","createdDateTimeUtc":"2021-05-02T15:12:34.0162411Z","lastActionDateTimeUtc":"2021-05-02T15:12:37.8808864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e6556f77-0542-4721-9a1f-39434e622e19","createdDateTimeUtc":"2021-05-02T15:12:23.2553899Z","lastActionDateTimeUtc":"2021-05-02T15:12:30.0080571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1055&$top=1416&$maxpagesize=50"}' + headers: + apim-request-id: 3a742319-6fbf-41c5-be46-43391f50f3ba + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:08 GMT + etag: '"F2FAB1143CF70D39D257CABB3B9E6007509D7C5FCB0C8101A4439119C3E465AE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3a742319-6fbf-41c5-be46-43391f50f3ba + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1005&$top=1466&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1055&$top=1416&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"9d6d2d0f-2921-444d-a4a1-80f6b5242067","createdDateTimeUtc":"2021-05-02T15:12:08.5849514Z","lastActionDateTimeUtc":"2021-05-02T15:12:19.9452705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cfdb9bf4-41c8-43ea-b8d5-7cc0f88e7128","createdDateTimeUtc":"2021-05-02T15:12:00.8650801Z","lastActionDateTimeUtc":"2021-05-02T15:12:04.9140706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8ea2357b-d7bd-4d2a-953e-df774c3d9547","createdDateTimeUtc":"2021-05-02T15:11:51.0399291Z","lastActionDateTimeUtc":"2021-05-02T15:11:57.9769172Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"92f3ab66-6efb-47d8-ba91-4f1c3981b4d7","createdDateTimeUtc":"2021-05-02T15:11:32.8175562Z","lastActionDateTimeUtc":"2021-05-02T15:11:39.4851079Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ede5b0c5-f4eb-44d2-a2d8-f806940503b0","createdDateTimeUtc":"2021-05-02T15:11:27.9847119Z","lastActionDateTimeUtc":"2021-05-02T15:11:28.5924846Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"181be3b1-369f-4963-849f-5c85c0b1e385","createdDateTimeUtc":"2021-05-02T15:11:21.2898056Z","lastActionDateTimeUtc":"2021-05-02T15:11:24.5617593Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"38b0eed1-2c07-4e85-aa1c-9d9515ca2306","createdDateTimeUtc":"2021-05-02T15:11:17.2221206Z","lastActionDateTimeUtc":"2021-05-02T15:11:17.5972177Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8b4ea5d8-ad8e-4502-9182-593493750bc8","createdDateTimeUtc":"2021-05-02T15:11:06.1044824Z","lastActionDateTimeUtc":"2021-05-02T15:11:14.7421567Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d850ea2c-9366-487a-8aca-22fdcfc82ad8","createdDateTimeUtc":"2021-05-02T15:10:54.5618711Z","lastActionDateTimeUtc":"2021-05-02T15:11:02.7509836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0bab6acc-e6cf-4061-ab75-e5b157f3aa36","createdDateTimeUtc":"2021-05-02T15:10:43.7109416Z","lastActionDateTimeUtc":"2021-05-02T15:10:47.196904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61e66b5-0fc7-4299-b76b-e37628994475","createdDateTimeUtc":"2021-05-02T15:10:31.0252738Z","lastActionDateTimeUtc":"2021-05-02T15:10:39.7236978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69b78f4b-a8c1-4ec0-8ac8-d762133037b3","createdDateTimeUtc":"2021-05-02T15:10:19.7172603Z","lastActionDateTimeUtc":"2021-05-02T15:10:27.7420855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0957e953-c153-44b2-ba7b-b2a1d1bda7fe","createdDateTimeUtc":"2021-05-02T15:10:08.2984295Z","lastActionDateTimeUtc":"2021-05-02T15:10:12.1405039Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1a7f5572-a28f-4ec8-a19f-e5014cebc8a0","createdDateTimeUtc":"2021-05-02T15:09:56.2675843Z","lastActionDateTimeUtc":"2021-05-02T15:10:03.1519414Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08e3b143-5be6-48c3-a578-aec6ffea3e8d","createdDateTimeUtc":"2021-05-02T15:09:51.4683Z","lastActionDateTimeUtc":"2021-05-02T15:09:52.5259447Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c0771c37-8ef4-419a-9966-37d21ebe7365","createdDateTimeUtc":"2021-05-02T15:09:44.6288835Z","lastActionDateTimeUtc":"2021-05-02T15:09:47.5103254Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"403fc8d1-da1d-436b-aacc-911926ca283b","createdDateTimeUtc":"2021-05-02T15:09:40.6821545Z","lastActionDateTimeUtc":"2021-05-02T15:09:40.9018847Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"734e51a1-dff4-4b32-9b8d-617684e7ce38","createdDateTimeUtc":"2021-05-02T15:07:39.3240073Z","lastActionDateTimeUtc":"2021-05-02T15:07:44.6146206Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6d12631-27d3-4ab3-84fb-5f249a908e50","createdDateTimeUtc":"2021-05-02T15:07:36.63704Z","lastActionDateTimeUtc":"2021-05-02T15:07:39.2679972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fe32998f-4bee-403f-9775-fdfeccb25e3c","createdDateTimeUtc":"2021-05-02T15:07:33.9721207Z","lastActionDateTimeUtc":"2021-05-02T15:07:36.5388378Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb294c4-4f55-4059-ae6f-f51bb2967067","createdDateTimeUtc":"2021-05-02T15:07:31.3372481Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.4827753Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"897e9e72-56b0-4be2-abae-15a2f97e4695","createdDateTimeUtc":"2021-05-02T15:07:28.6481042Z","lastActionDateTimeUtc":"2021-05-02T15:07:33.51812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"856804b2-079b-4070-a2a6-0353c5bf7d63","createdDateTimeUtc":"2021-05-02T15:07:17.5849358Z","lastActionDateTimeUtc":"2021-05-02T15:07:21.4978712Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"af742249-0f2c-410d-ac71-41f67c1da100","createdDateTimeUtc":"2021-05-02T15:07:14.987206Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.96787Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54854ba8-8328-465f-b5c4-7618f357a00e","createdDateTimeUtc":"2021-05-02T15:07:12.3096383Z","lastActionDateTimeUtc":"2021-05-02T15:07:17.8819761Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62c8cf03-9aa6-48c0-b970-680ad7390acd","createdDateTimeUtc":"2021-05-02T15:07:01.9893653Z","lastActionDateTimeUtc":"2021-05-02T15:07:07.3765059Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93830e4b-21ef-4eb3-852e-e27c9513f43f","createdDateTimeUtc":"2021-05-02T15:06:59.3349452Z","lastActionDateTimeUtc":"2021-05-02T15:07:02.9134682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"824fc76b-e680-4828-ace8-c92272787430","createdDateTimeUtc":"2021-05-02T15:06:56.3917525Z","lastActionDateTimeUtc":"2021-05-02T15:06:59.8084014Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6a5f0b72-dc04-438e-8d4b-0d63642df0e8","createdDateTimeUtc":"2021-05-02T15:06:52.2057735Z","lastActionDateTimeUtc":"2021-05-02T15:06:54.1771419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1adde649-5c24-4799-babb-1fafd3cbac1f","createdDateTimeUtc":"2021-05-02T15:06:49.2774121Z","lastActionDateTimeUtc":"2021-05-02T15:06:52.7232275Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3c4a3b33-1d3f-4135-a760-790df70e0aca","createdDateTimeUtc":"2021-05-02T15:06:46.5240364Z","lastActionDateTimeUtc":"2021-05-02T15:06:49.7031726Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"c7c623c3-8432-443e-9f78-a17b4cfdcb4d","createdDateTimeUtc":"2021-05-02T15:06:42.8652403Z","lastActionDateTimeUtc":"2021-05-02T15:06:48.3422495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"95189ed1-b106-40f3-9157-76b26ea33691","createdDateTimeUtc":"2021-05-02T15:06:40.0979392Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4645566Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa624ae6-4af6-427b-9839-e1cc61ad83e6","createdDateTimeUtc":"2021-05-02T15:06:37.3043659Z","lastActionDateTimeUtc":"2021-05-02T15:06:46.4918022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50b12ff6-d2b7-452e-869d-de97346357f8","createdDateTimeUtc":"2021-05-02T15:06:14.9962505Z","lastActionDateTimeUtc":"2021-05-02T15:06:21.7245925Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"59a58664-12cf-478d-b0f8-081af0ea701d","createdDateTimeUtc":"2021-05-02T15:06:11.5511615Z","lastActionDateTimeUtc":"2021-05-02T15:06:18.3956016Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ab359f91-64f9-4f72-b2b5-173f83e48ef3","createdDateTimeUtc":"2021-05-02T15:06:08.1571385Z","lastActionDateTimeUtc":"2021-05-02T15:06:12.7326266Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f486f2d-3b2c-49af-9d78-f717134327b2","createdDateTimeUtc":"2021-05-02T15:06:04.7746061Z","lastActionDateTimeUtc":"2021-05-02T15:06:11.3439661Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b0e58ab1-9879-41c2-a19f-ac6b7679e0da","createdDateTimeUtc":"2021-05-02T15:06:01.2657049Z","lastActionDateTimeUtc":"2021-05-02T15:06:14.6076069Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b2c5bbd3-1757-4c81-aafd-179b60607c76","createdDateTimeUtc":"2021-05-02T15:03:53.9854673Z","lastActionDateTimeUtc":"2021-05-02T15:03:57.2161649Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"92a074d8-eb1d-4d90-b191-df57c47bdf13","createdDateTimeUtc":"2021-05-02T15:03:51.321004Z","lastActionDateTimeUtc":"2021-05-02T15:03:55.0315981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"802dd8c9-21a8-4ea1-8ec9-5758ec769098","createdDateTimeUtc":"2021-05-02T15:03:48.626345Z","lastActionDateTimeUtc":"2021-05-02T15:03:51.957513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b3675f7e-b872-4277-a1a2-43b18dca824a","createdDateTimeUtc":"2021-05-02T15:03:45.8905588Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.9516924Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e858392-6261-4adb-bde5-3abc2158d9e2","createdDateTimeUtc":"2021-05-02T15:03:43.2550261Z","lastActionDateTimeUtc":"2021-05-02T15:03:48.5573919Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acf700bd-afbe-434d-a3aa-5f2d35a42afb","createdDateTimeUtc":"2021-05-02T15:03:32.1824528Z","lastActionDateTimeUtc":"2021-05-02T15:03:37.4111476Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5b0966df-4da0-4310-8203-363aeb9dcd58","createdDateTimeUtc":"2021-05-02T15:03:29.4193014Z","lastActionDateTimeUtc":"2021-05-02T15:03:31.8103411Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"915e6510-ce99-4d84-920c-372ae49c493a","createdDateTimeUtc":"2021-05-02T15:03:26.580863Z","lastActionDateTimeUtc":"2021-05-02T15:03:30.6734312Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f25d149b-07a1-4e70-abfc-7c2a10543756","createdDateTimeUtc":"2021-05-02T15:03:15.8056146Z","lastActionDateTimeUtc":"2021-05-02T15:03:18.346946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45eca156-4f83-4673-ae5b-cf67b40e1f45","createdDateTimeUtc":"2021-05-02T15:03:13.1341398Z","lastActionDateTimeUtc":"2021-05-02T15:03:15.62246Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a1a511b-2097-4b82-8c6e-9bf95527ab46","createdDateTimeUtc":"2021-05-02T15:03:10.361834Z","lastActionDateTimeUtc":"2021-05-02T15:03:12.6059911Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1105&$top=1366&$maxpagesize=50"}' + headers: + apim-request-id: 473af270-b5ef-426a-b72d-58a28189c0d3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:08 GMT + etag: '"25CD7ADC6AD18F8860B4A13E99F7BE3ABDA3DFF174827A74C23DD28996E96145"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 473af270-b5ef-426a-b72d-58a28189c0d3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1055&$top=1416&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1105&$top=1366&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"17872230-9645-467e-9319-ff6add923bd3","createdDateTimeUtc":"2021-05-02T15:03:07.0243048Z","lastActionDateTimeUtc":"2021-05-02T15:03:09.5423442Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36a8ee8-4b2d-41cf-a3f6-246567848574","createdDateTimeUtc":"2021-05-02T15:03:04.3657196Z","lastActionDateTimeUtc":"2021-05-02T15:03:06.5288005Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"645bfde6-c943-4f67-88b6-4da2486c82f6","createdDateTimeUtc":"2021-05-02T15:03:01.7308969Z","lastActionDateTimeUtc":"2021-05-02T15:03:05.4663116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d5bbffa-f8df-40fe-bb87-c88e3366909f","createdDateTimeUtc":"2021-05-02T15:02:58.5454189Z","lastActionDateTimeUtc":"2021-05-02T15:03:02.4748582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"da76ca6f-8e1c-4871-8bd1-93bc7f1f5c85","createdDateTimeUtc":"2021-05-02T15:02:55.8559095Z","lastActionDateTimeUtc":"2021-05-02T15:02:58.4015187Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"41626411-263a-4fa0-be01-2e48fa71e381","createdDateTimeUtc":"2021-05-02T15:02:53.0868864Z","lastActionDateTimeUtc":"2021-05-02T15:03:04.4243677Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0649d952-7be6-4993-8cfc-87f6f6189019","createdDateTimeUtc":"2021-05-02T15:02:42.2939794Z","lastActionDateTimeUtc":"2021-05-02T15:02:47.7928772Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e3d857df-c915-4b47-b5f7-b3dbb58e312c","createdDateTimeUtc":"2021-05-02T15:02:38.8019288Z","lastActionDateTimeUtc":"2021-05-02T15:02:44.1476369Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"e8322565-14cc-443f-88e4-8b4b2bb66379","createdDateTimeUtc":"2021-05-02T15:02:35.4502976Z","lastActionDateTimeUtc":"2021-05-02T15:02:42.3466295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5bbf120f-46e6-4619-9712-25fd0fae1cfd","createdDateTimeUtc":"2021-05-02T15:02:31.9335015Z","lastActionDateTimeUtc":"2021-05-02T15:02:36.9630747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f54d0bcc-7984-4579-9e8e-04fcb1bd7c19","createdDateTimeUtc":"2021-05-02T15:02:28.4600467Z","lastActionDateTimeUtc":"2021-05-02T15:02:35.3944156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"daa9c69a-80db-4263-90c7-d0175a8f30a6","createdDateTimeUtc":"2021-05-02T15:02:13.3201687Z","lastActionDateTimeUtc":"2021-05-02T15:02:17.7449594Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc7786b-55e2-4a1b-9714-29dfc5144eef","createdDateTimeUtc":"2021-05-02T15:01:58.9999481Z","lastActionDateTimeUtc":"2021-05-02T15:02:09.5648764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"560af994-9cf3-4f3a-bdab-b388af4ba3bd","createdDateTimeUtc":"2021-05-02T15:01:45.7504808Z","lastActionDateTimeUtc":"2021-05-02T15:01:52.1423046Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"6ae468ba-189d-40f0-8992-4a8a58673569","createdDateTimeUtc":"2021-05-02T15:01:32.7630234Z","lastActionDateTimeUtc":"2021-05-02T15:01:36.7402092Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"08989d2f-2328-4572-8b07-16677d69b7d8","createdDateTimeUtc":"2021-05-02T15:01:09.7100795Z","lastActionDateTimeUtc":"2021-05-02T15:01:22.1927002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9914be9e-bf97-48e0-8d78-a492beb729e8","createdDateTimeUtc":"2021-05-02T15:00:47.766756Z","lastActionDateTimeUtc":"2021-05-02T15:00:57.5336182Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cc1d31aa-a401-4453-93ac-dd549a28426b","createdDateTimeUtc":"2021-05-02T15:00:23.3301581Z","lastActionDateTimeUtc":"2021-05-02T15:00:36.6128125Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d3f733f-1b11-44e6-9d11-961b0f83957d","createdDateTimeUtc":"2021-05-02T15:00:02.2196749Z","lastActionDateTimeUtc":"2021-05-02T15:00:18.3606828Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"04dd1b01-ebbf-4b9f-93ac-d1cb5980a981","createdDateTimeUtc":"2021-05-02T14:59:39.3956969Z","lastActionDateTimeUtc":"2021-05-02T14:59:49.0108147Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4d0b34c4-5764-4a32-9b18-d171117d5378","createdDateTimeUtc":"2021-05-02T14:59:12.1229842Z","lastActionDateTimeUtc":"2021-05-02T14:59:32.5952754Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"cb8db7d8-88b4-42a6-b068-cb19d05040b5","createdDateTimeUtc":"2021-05-02T14:58:53.9244801Z","lastActionDateTimeUtc":"2021-05-02T14:59:04.8452188Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a70531da-e624-4478-bc57-be0429f8f53f","createdDateTimeUtc":"2021-05-02T14:58:29.6966409Z","lastActionDateTimeUtc":"2021-05-02T14:58:38.1739547Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"574ce4f7-ea9f-4f71-b750-2fa8ce4c15df","createdDateTimeUtc":"2021-05-02T14:58:02.7402505Z","lastActionDateTimeUtc":"2021-05-02T14:58:15.65384Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"82b79e7b-bf1c-40a7-be61-38389dc62170","createdDateTimeUtc":"2021-05-02T14:57:46.6509773Z","lastActionDateTimeUtc":"2021-05-02T14:57:51.8964996Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dad7f9ec-50a9-47e2-979f-dd362533af1d","createdDateTimeUtc":"2021-05-02T14:57:31.8398464Z","lastActionDateTimeUtc":"2021-05-02T14:57:36.3345462Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"838009a9-505d-43f8-b79a-284c71f86634","createdDateTimeUtc":"2021-05-02T14:57:06.3987298Z","lastActionDateTimeUtc":"2021-05-02T14:57:20.6381764Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"f02bf410-7474-4b80-80ef-242d082ce9b7","createdDateTimeUtc":"2021-05-02T14:56:48.9755371Z","lastActionDateTimeUtc":"2021-05-02T14:56:54.4049816Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d2b990db-ba74-4d31-9c04-8ad374b0af69","createdDateTimeUtc":"2021-05-02T14:56:32.8726595Z","lastActionDateTimeUtc":"2021-05-02T14:56:38.7133692Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"70d71a32-c7e6-4a60-8e59-70856e137a1b","createdDateTimeUtc":"2021-05-02T14:50:46.6394209Z","lastActionDateTimeUtc":"2021-05-02T14:50:52.2904982Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b47694f2-2249-4a78-af85-ae7560a1f802","createdDateTimeUtc":"2021-05-02T14:50:32.0726055Z","lastActionDateTimeUtc":"2021-05-02T14:50:37.4831853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9ed6882d-a193-4b21-be3b-39dc35e753bb","createdDateTimeUtc":"2021-05-02T14:50:06.3728685Z","lastActionDateTimeUtc":"2021-05-02T14:50:17.2328126Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d7fa996-bf90-460d-9198-bd6b44135032","createdDateTimeUtc":"2021-05-02T14:49:50.5810941Z","lastActionDateTimeUtc":"2021-05-02T14:49:52.4073587Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a4b76b0-934b-4921-a522-016b9a9a0b47","createdDateTimeUtc":"2021-05-02T14:49:35.7850455Z","lastActionDateTimeUtc":"2021-05-02T14:49:42.1904623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8403d7e2-e1f5-4746-9fbd-e60d4e1b4537","createdDateTimeUtc":"2021-05-02T14:49:24.391397Z","lastActionDateTimeUtc":"2021-05-02T14:49:27.5353314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"5e5edeb6-ddd9-46ca-8097-6b349510355d","createdDateTimeUtc":"2021-05-02T14:49:06.2439024Z","lastActionDateTimeUtc":"2021-05-02T14:49:12.1480637Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9320b59c-1ce6-4969-9a47-6503123b3a2b","createdDateTimeUtc":"2021-05-02T14:49:00.8719813Z","lastActionDateTimeUtc":"2021-05-02T14:49:01.4890928Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e52df394-f7e6-4fe7-833c-6dd681658f41","createdDateTimeUtc":"2021-05-02T14:48:52.3338821Z","lastActionDateTimeUtc":"2021-05-02T14:48:57.0470091Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ab0dd232-4b0e-4f4d-8062-36e014bac3e7","createdDateTimeUtc":"2021-05-02T14:48:47.9363612Z","lastActionDateTimeUtc":"2021-05-02T14:48:48.150546Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"887e4082-d39e-48b0-9456-21dc34303c68","createdDateTimeUtc":"2021-05-02T14:48:37.1985646Z","lastActionDateTimeUtc":"2021-05-02T14:48:44.3848381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"50757257-baf4-4a70-9738-a3b7270df6b7","createdDateTimeUtc":"2021-05-02T14:48:24.1439526Z","lastActionDateTimeUtc":"2021-05-02T14:48:27.5074022Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"aa9710aa-c41c-4771-8f04-7b6f22b0b3c8","createdDateTimeUtc":"2021-05-02T14:48:08.3567515Z","lastActionDateTimeUtc":"2021-05-02T14:48:19.3530366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb1ae469-d1cd-4625-b4a0-803197fc2d08","createdDateTimeUtc":"2021-05-02T14:48:00.1576254Z","lastActionDateTimeUtc":"2021-05-02T14:48:04.2441652Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fdb8dfe0-04c5-49e8-9a9d-41a52edcd702","createdDateTimeUtc":"2021-05-02T14:47:51.7660212Z","lastActionDateTimeUtc":"2021-05-02T14:47:57.2437565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"022d1898-eb10-43df-9da3-2b660743ed66","createdDateTimeUtc":"2021-05-02T14:47:37.3128962Z","lastActionDateTimeUtc":"2021-05-02T14:47:42.6504364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"0c1937f1-ae49-40f3-bb3a-450729a34b4f","createdDateTimeUtc":"2021-05-02T14:47:26.8135906Z","lastActionDateTimeUtc":"2021-05-02T14:47:30.1446232Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"68df4413-ace0-4718-b280-b9c3748b153d","createdDateTimeUtc":"2021-05-02T14:47:21.9540759Z","lastActionDateTimeUtc":"2021-05-02T14:47:23.0171958Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20dd3212-1ecc-45f0-89e7-7c7554c1c5de","createdDateTimeUtc":"2021-05-02T14:47:12.9738323Z","lastActionDateTimeUtc":"2021-05-02T14:47:17.7461643Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"51776f24-8c32-4e3b-8bb1-9189a44d8d38","createdDateTimeUtc":"2021-05-02T14:47:08.6432426Z","lastActionDateTimeUtc":"2021-05-02T14:47:09.006663Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"409fc7ee-eec7-4214-9fe2-8fe11d566cbe","createdDateTimeUtc":"2021-05-02T14:45:00.7848635Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.834537Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1155&$top=1316&$maxpagesize=50"}' + headers: + apim-request-id: 606f7e18-8773-49a1-8d41-2d90fe88b92b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:08 GMT + etag: '"0E9398171B79E30AAD529B80D8BEED5A3E396460D45C929512B6A5D84488417F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 606f7e18-8773-49a1-8d41-2d90fe88b92b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1105&$top=1366&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1155&$top=1316&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"99aa64c9-3283-497b-a5b5-e18f5f2905ab","createdDateTimeUtc":"2021-05-02T14:44:58.061832Z","lastActionDateTimeUtc":"2021-05-02T14:45:06.86927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2a2eefb-6a31-4c27-a1b5-34ddb64b0a4a","createdDateTimeUtc":"2021-05-02T14:44:55.3879941Z","lastActionDateTimeUtc":"2021-05-02T14:44:59.823792Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d850bd6-72a9-4681-82be-fd306ccbe374","createdDateTimeUtc":"2021-05-02T14:44:52.6730309Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8328247Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c980609c-6667-4c47-a548-e33760ea0aec","createdDateTimeUtc":"2021-05-02T14:44:49.990119Z","lastActionDateTimeUtc":"2021-05-02T14:44:58.8026345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7786b18-4120-4745-8e05-5a2343b6a42d","createdDateTimeUtc":"2021-05-02T14:44:38.6306934Z","lastActionDateTimeUtc":"2021-05-02T14:44:42.0810536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6e5fd94d-138b-428b-9ae2-c85fb3ef6ebc","createdDateTimeUtc":"2021-05-02T14:44:35.9284654Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.4919116Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f94dd864-5e88-4a35-8a1e-5f9df000c3d6","createdDateTimeUtc":"2021-05-02T14:44:33.269604Z","lastActionDateTimeUtc":"2021-05-02T14:44:41.5224441Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0c5a76b3-30e5-41be-b659-900dbfd2df22","createdDateTimeUtc":"2021-05-02T14:44:22.1930331Z","lastActionDateTimeUtc":"2021-05-02T14:44:24.5446161Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"087bb63a-330e-4e2c-a9b5-7f9c6ad2160c","createdDateTimeUtc":"2021-05-02T14:44:19.311709Z","lastActionDateTimeUtc":"2021-05-02T14:44:22.0457434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4321ddbb-be68-4d90-9874-12bd9b170736","createdDateTimeUtc":"2021-05-02T14:44:16.5285177Z","lastActionDateTimeUtc":"2021-05-02T14:44:19.1618299Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"04b591f0-d885-47ac-a5e6-b3d808c9d3c2","createdDateTimeUtc":"2021-05-02T14:44:13.2067685Z","lastActionDateTimeUtc":"2021-05-02T14:44:16.4934629Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"820d8c92-e362-49b1-9f10-070051184b28","createdDateTimeUtc":"2021-05-02T14:44:10.3925344Z","lastActionDateTimeUtc":"2021-05-02T14:44:13.3512248Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c3d6be4a-4bb2-4318-941d-89faa2f32002","createdDateTimeUtc":"2021-05-02T14:44:07.5823128Z","lastActionDateTimeUtc":"2021-05-02T14:44:10.3093108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e0249ee3-9511-48fa-ac12-664a8016ddfd","createdDateTimeUtc":"2021-05-02T14:44:04.2226003Z","lastActionDateTimeUtc":"2021-05-02T14:44:07.1785443Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a81c712f-ff0a-4df6-9308-99d6b9c44f4f","createdDateTimeUtc":"2021-05-02T14:44:01.2868999Z","lastActionDateTimeUtc":"2021-05-02T14:44:04.0906913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b2269f0c-9800-4cf6-bec2-9dec436fb15d","createdDateTimeUtc":"2021-05-02T14:43:58.5435645Z","lastActionDateTimeUtc":"2021-05-02T14:44:03.818987Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"10b0bfd6-57c3-4b0e-8e6b-c19c9bcdc164","createdDateTimeUtc":"2021-05-02T14:43:47.992708Z","lastActionDateTimeUtc":"2021-05-02T14:43:56.6943272Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"93e5d62b-0921-40d9-bd80-1097b67cc4d1","createdDateTimeUtc":"2021-05-02T14:43:44.1117967Z","lastActionDateTimeUtc":"2021-05-02T14:43:52.8190941Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d675c734-f49f-4610-b3e9-327c266eddeb","createdDateTimeUtc":"2021-05-02T14:43:38.0639349Z","lastActionDateTimeUtc":"2021-05-02T14:43:43.6830634Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4cfed115-3d7d-429b-b8bd-0301255b705a","createdDateTimeUtc":"2021-05-02T14:43:31.2053089Z","lastActionDateTimeUtc":"2021-05-02T14:43:36.9712704Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9ecd6063-af0b-4265-8e69-63d98a5b4380","createdDateTimeUtc":"2021-05-02T14:43:27.3926456Z","lastActionDateTimeUtc":"2021-05-02T14:43:33.5678485Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"7a33d43f-b9be-4fe8-a2e8-d2b67b2156cb","createdDateTimeUtc":"2021-05-02T14:41:21.9641497Z","lastActionDateTimeUtc":"2021-05-02T14:41:26.6519613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19c0b2f6-28fd-4522-843c-db6b9dbd0feb","createdDateTimeUtc":"2021-05-02T14:41:19.2836936Z","lastActionDateTimeUtc":"2021-05-02T14:41:21.6189281Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4f02adbb-4380-4d4e-95d6-ef367a690232","createdDateTimeUtc":"2021-05-02T14:41:16.562846Z","lastActionDateTimeUtc":"2021-05-02T14:41:20.5234349Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"29c4cf29-2657-4b08-94f9-d78cdaee7fde","createdDateTimeUtc":"2021-05-02T14:41:13.8912788Z","lastActionDateTimeUtc":"2021-05-02T14:41:17.5380913Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1e1fdfe7-cc86-470a-8607-10210ecd632a","createdDateTimeUtc":"2021-05-02T14:41:11.240002Z","lastActionDateTimeUtc":"2021-05-02T14:41:16.5064296Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f6025a-fd22-4494-ae06-91061a1fe16d","createdDateTimeUtc":"2021-05-02T14:41:00.6022789Z","lastActionDateTimeUtc":"2021-05-02T14:41:03.2793305Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"87068f5e-328c-481a-8885-cdc594847b98","createdDateTimeUtc":"2021-05-02T14:40:57.9123786Z","lastActionDateTimeUtc":"2021-05-02T14:41:00.308515Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73fbb5cd-8544-4cbe-b627-87a849597545","createdDateTimeUtc":"2021-05-02T14:40:55.0716859Z","lastActionDateTimeUtc":"2021-05-02T14:40:59.2146202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0aeca5c-7d7f-489c-9557-cafa3559c319","createdDateTimeUtc":"2021-05-02T14:40:43.6254565Z","lastActionDateTimeUtc":"2021-05-02T14:40:46.238953Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5bf9d47e-b492-4795-80bf-6e367f058e86","createdDateTimeUtc":"2021-05-02T14:40:40.8631851Z","lastActionDateTimeUtc":"2021-05-02T14:40:44.8655347Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"438b0e5f-c765-4f2d-8f58-3a983f682cbd","createdDateTimeUtc":"2021-05-02T14:40:38.2109392Z","lastActionDateTimeUtc":"2021-05-02T14:40:41.2968678Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31e90bb4-85e9-4ba5-9842-9abf592dfd8b","createdDateTimeUtc":"2021-05-02T14:40:34.9482532Z","lastActionDateTimeUtc":"2021-05-02T14:40:38.2251328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3ab51-e5d9-4179-aef4-60bc235d2b3e","createdDateTimeUtc":"2021-05-02T14:40:32.0145547Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.71375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ce35531-dc73-4a8d-ba27-4d27ec29546c","createdDateTimeUtc":"2021-05-02T14:40:29.2736953Z","lastActionDateTimeUtc":"2021-05-02T14:40:34.675009Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57ea5560-8590-4d59-89e3-dd8da59f80ba","createdDateTimeUtc":"2021-05-02T14:40:25.6664833Z","lastActionDateTimeUtc":"2021-05-02T14:40:27.6760406Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3367c658-9588-493f-9e7a-0d73deb0b219","createdDateTimeUtc":"2021-05-02T14:40:23.0283341Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1019403Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f402acf-01a8-44c9-b3a7-21392d66d60d","createdDateTimeUtc":"2021-05-02T14:40:20.1149288Z","lastActionDateTimeUtc":"2021-05-02T14:40:26.1407397Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"39c18178-9181-47ce-ba28-bbcd401290bb","createdDateTimeUtc":"2021-05-02T14:40:07.1546412Z","lastActionDateTimeUtc":"2021-05-02T14:40:14.8959002Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ef92c946-3953-46e7-a4a2-a00a8bce498f","createdDateTimeUtc":"2021-05-02T14:40:03.5406004Z","lastActionDateTimeUtc":"2021-05-02T14:40:11.2701503Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a8006f63-ad52-4ccc-b53f-4d21382cbd46","createdDateTimeUtc":"2021-05-02T14:39:59.8336757Z","lastActionDateTimeUtc":"2021-05-02T14:40:07.426687Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e1c73793-d407-4401-93c4-acf567b5c3f6","createdDateTimeUtc":"2021-05-02T14:39:56.3665996Z","lastActionDateTimeUtc":"2021-05-02T14:40:00.8943216Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"43fd87f8-73b6-4e26-a480-fc85ffe52e46","createdDateTimeUtc":"2021-05-02T14:39:53.0166426Z","lastActionDateTimeUtc":"2021-05-02T14:39:57.4245109Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"85e098a8-41d9-47e4-9eca-97203ca4391f","createdDateTimeUtc":"2021-05-02T14:39:41.8514014Z","lastActionDateTimeUtc":"2021-05-02T14:39:48.6756999Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c90993aa-397a-4fd5-9846-272c7ed8be0d","createdDateTimeUtc":"2021-05-02T14:39:29.0443158Z","lastActionDateTimeUtc":"2021-05-02T14:39:31.8508073Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62398e22-3767-417f-8ed6-ffdaa52feda4","createdDateTimeUtc":"2021-05-02T14:39:15.0867277Z","lastActionDateTimeUtc":"2021-05-02T14:39:19.7856223Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ba5d16ab-20ba-47e1-aebb-f0c7ca03f5e6","createdDateTimeUtc":"2021-05-02T14:39:02.0490592Z","lastActionDateTimeUtc":"2021-05-02T14:39:06.2222755Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"cf2fff46-486e-4750-9852-1f7f3679ff20","createdDateTimeUtc":"2021-05-02T14:38:47.3786809Z","lastActionDateTimeUtc":"2021-05-02T14:38:51.6638637Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c1b6cbea-9502-4d31-9ce9-8882fe9b70f9","createdDateTimeUtc":"2021-05-02T14:38:26.6327488Z","lastActionDateTimeUtc":"2021-05-02T14:38:36.0009727Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1d30bb70-d2e6-4f43-a0fb-1faf2998a6e8","createdDateTimeUtc":"2021-05-02T14:37:57.4841755Z","lastActionDateTimeUtc":"2021-05-02T14:38:16.9362538Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1205&$top=1266&$maxpagesize=50"}' + headers: + apim-request-id: 5b3b7c72-23c1-49a4-8d05-df19e0337477 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:08 GMT + etag: '"AE09FBBC6A32E15263EC74FB8ADDF2161912BA5E50E96648364B6DB2100761CA"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5b3b7c72-23c1-49a4-8d05-df19e0337477 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1155&$top=1316&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1205&$top=1266&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"b2b85360-def1-499a-b59c-4ee4e51f6706","createdDateTimeUtc":"2021-05-02T14:37:35.7826536Z","lastActionDateTimeUtc":"2021-05-02T14:37:40.4287414Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e5009148-d16a-477c-97f1-5c61ff0e7a04","createdDateTimeUtc":"2021-05-02T14:37:07.2029013Z","lastActionDateTimeUtc":"2021-05-02T14:37:20.1687615Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"010fffc1-96cf-4f6d-b689-b6babc90ae3d","createdDateTimeUtc":"2021-05-02T14:36:42.1982938Z","lastActionDateTimeUtc":"2021-05-02T14:36:53.7632297Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"d5acfae2-2cb4-4196-83ec-82b6e9cf081f","createdDateTimeUtc":"2021-05-02T14:36:17.7043668Z","lastActionDateTimeUtc":"2021-05-02T14:36:26.9294344Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d6e2d6a0-90ac-45d5-860f-12854200ba8b","createdDateTimeUtc":"2021-05-02T14:35:55.4994529Z","lastActionDateTimeUtc":"2021-05-02T14:36:05.1836627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"776fa29d-5b43-4bcc-86cb-00747e3a7929","createdDateTimeUtc":"2021-05-02T14:35:30.0237403Z","lastActionDateTimeUtc":"2021-05-02T14:35:39.5424222Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4cd8f61c-7162-45d3-acc0-5c1f3033ecf7","createdDateTimeUtc":"2021-05-02T14:35:07.8940122Z","lastActionDateTimeUtc":"2021-05-02T14:35:15.0644149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1519052f-f871-42e2-9476-c22715489786","createdDateTimeUtc":"2021-05-02T14:34:44.3635012Z","lastActionDateTimeUtc":"2021-05-02T14:35:03.1736912Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5eb4f020-ec45-476a-96f2-7b4caf78a3cc","createdDateTimeUtc":"2021-05-02T14:34:20.9716623Z","lastActionDateTimeUtc":"2021-05-02T14:34:38.1121761Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"b682c64a-79ef-4f6a-aa82-972de8a898cd","createdDateTimeUtc":"2021-05-02T14:34:01.4715211Z","lastActionDateTimeUtc":"2021-05-02T14:34:12.2826794Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9dcc3e77-c56c-4dee-bceb-7d4416d9348d","createdDateTimeUtc":"2021-05-02T14:33:44.2115095Z","lastActionDateTimeUtc":"2021-05-02T14:33:56.4236555Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d61dd3c6-086c-4791-a421-aff297e4bc74","createdDateTimeUtc":"2021-05-02T14:30:01.4644563Z","lastActionDateTimeUtc":"2021-05-02T14:30:11.8035966Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a2f1201f-b07d-4322-b657-6359e60710ce","createdDateTimeUtc":"2021-05-02T14:29:45.1385721Z","lastActionDateTimeUtc":"2021-05-02T14:29:52.3714559Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"6a7ed42e-7adf-4e7f-9062-58bca37c5690","createdDateTimeUtc":"2021-05-02T14:29:20.7668843Z","lastActionDateTimeUtc":"2021-05-02T14:29:31.6725954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdb25412-f4ad-46e5-985b-e62649bdc47e","createdDateTimeUtc":"2021-05-02T14:29:02.0163339Z","lastActionDateTimeUtc":"2021-05-02T14:29:08.1973103Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"da9dc86a-e9f5-442c-8e42-bcaee9867bfd","createdDateTimeUtc":"2021-05-02T14:28:36.059476Z","lastActionDateTimeUtc":"2021-05-02T14:28:46.1708588Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"15a9c843-dbba-4b99-99bf-e66c09ea57fb","createdDateTimeUtc":"2021-05-02T14:28:10.3233032Z","lastActionDateTimeUtc":"2021-05-02T14:28:29.0949444Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"210a8fd1-73d2-4bb2-82cd-52ee23044bdb","createdDateTimeUtc":"2021-05-02T14:27:43.3003254Z","lastActionDateTimeUtc":"2021-05-02T14:28:01.0453827Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8af88c08-6ae7-447e-ae1f-d71267824b0c","createdDateTimeUtc":"2021-05-02T14:22:17.8603597Z","lastActionDateTimeUtc":"2021-05-02T14:22:37.2287765Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"9e182ce1-b577-41c9-bf11-3c3efc840276","createdDateTimeUtc":"2021-05-02T14:21:28.0325981Z","lastActionDateTimeUtc":"2021-05-02T14:21:34.8104617Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cd472580-8a45-4201-aa55-6264feca9742","createdDateTimeUtc":"2021-05-02T14:19:08.8722643Z","lastActionDateTimeUtc":"2021-05-02T14:19:29.284607Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"f89af903-bf25-452b-8973-1660d4bc1fbc","createdDateTimeUtc":"2021-05-02T14:18:11.454531Z","lastActionDateTimeUtc":"2021-05-02T14:18:23.0896409Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6ef8e7d7-81ff-44a8-9547-fa6a4bbc7afd","createdDateTimeUtc":"2021-05-02T14:17:32.1770636Z","lastActionDateTimeUtc":"2021-05-02T14:17:46.9523273Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"75a5f1ef-803a-4059-b4fb-a14c8274d4e9","createdDateTimeUtc":"2021-05-02T14:16:24.4278378Z","lastActionDateTimeUtc":"2021-05-02T14:16:41.0272501Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"a00fa8de-8a53-42d8-953c-98189dbb00cf","createdDateTimeUtc":"2021-05-02T14:14:22.4968009Z","lastActionDateTimeUtc":"2021-05-02T14:14:38.8033928Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"43040351-a95f-4f95-97c0-4088084ac4ec","createdDateTimeUtc":"2021-05-02T14:10:25.1522983Z","lastActionDateTimeUtc":"2021-05-02T14:10:38.3780848Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"42739574-3809-49d5-8a94-b665fc9d792f","createdDateTimeUtc":"2021-05-02T14:08:26.8060101Z","lastActionDateTimeUtc":"2021-05-02T14:08:33.6291504Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d30d30d2-aaf7-44b4-acd2-585cc59c7437","createdDateTimeUtc":"2021-05-02T14:06:16.5259863Z","lastActionDateTimeUtc":"2021-05-02T14:06:22.0131603Z","status":"Succeeded","summary":{"total":7,"failed":0,"success":7,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":189}},{"id":"0f13d815-092d-48fc-bee7-abfc6f11e9ac","createdDateTimeUtc":"2021-05-02T14:05:33.4235423Z","lastActionDateTimeUtc":"2021-05-02T14:05:46.9160149Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c043820b-431a-4084-8eec-8a4dfa6fff25","createdDateTimeUtc":"2021-05-02T14:02:20.1138116Z","lastActionDateTimeUtc":"2021-05-02T14:02:30.9435971Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"91f343b2-65c2-4463-b9f4-81ff99adf210","createdDateTimeUtc":"2021-05-02T14:01:34.462856Z","lastActionDateTimeUtc":"2021-05-02T14:01:48.3162817Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ebaf007f-f261-4600-b4a6-984d05f26ab1","createdDateTimeUtc":"2021-05-02T14:00:30.3875586Z","lastActionDateTimeUtc":"2021-05-02T14:00:43.1846954Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"ccb16d1e-b1fd-423c-acf7-1dfaa9754e56","createdDateTimeUtc":"2021-05-02T13:59:35.8432126Z","lastActionDateTimeUtc":"2021-05-02T13:59:56.8247384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5d9b1a7d-1bea-4ff8-9e84-1c7ce5d6cb30","createdDateTimeUtc":"2021-05-02T13:58:53.4524449Z","lastActionDateTimeUtc":"2021-05-02T13:58:59.4831259Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b3a982d4-807a-4cde-abfe-5087a26a4924","createdDateTimeUtc":"2021-05-02T13:44:22.7565447Z","lastActionDateTimeUtc":"2021-05-02T13:44:42.1920428Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"467e5739-2f5b-481d-a33d-0b294109a8e6","createdDateTimeUtc":"2021-05-02T13:43:58.8081964Z","lastActionDateTimeUtc":"2021-05-02T13:44:07.9378627Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"fa0f5678-6361-4dbc-bdfe-43f1b68f979a","createdDateTimeUtc":"2021-05-02T13:43:36.952089Z","lastActionDateTimeUtc":"2021-05-02T13:43:46.874385Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6eba40b4-f405-4dc0-9048-9f757e8e8263","createdDateTimeUtc":"2021-05-02T13:43:13.9007981Z","lastActionDateTimeUtc":"2021-05-02T13:43:22.6861402Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2d81b864-7f26-431c-a8e4-daa8db55052f","createdDateTimeUtc":"2021-05-02T13:42:52.2486073Z","lastActionDateTimeUtc":"2021-05-02T13:43:08.0197716Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"4f587e1f-058c-4c43-9ac1-626ccfeea2b1","createdDateTimeUtc":"2021-05-02T13:42:29.343734Z","lastActionDateTimeUtc":"2021-05-02T13:42:36.787508Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"310ce70b-86a5-461f-b70d-88ffb5bbbd7f","createdDateTimeUtc":"2021-05-02T13:42:10.8350503Z","lastActionDateTimeUtc":"2021-05-02T13:42:22.9250876Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"90d85b19-a595-4828-a989-7f69f2ca4f29","createdDateTimeUtc":"2021-05-02T13:38:50.0946655Z","lastActionDateTimeUtc":"2021-05-02T13:39:11.0047089Z","status":"Succeeded","summary":{"total":25,"failed":0,"success":25,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4d51ee97-5732-4b7d-bf9b-5f440ba208b2","createdDateTimeUtc":"2021-05-02T13:36:33.7721388Z","lastActionDateTimeUtc":"2021-05-02T13:36:51.8203549Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"e9e653d1-21b2-44ad-90f0-bc8b74ab9142","createdDateTimeUtc":"2021-05-02T13:35:30.9465595Z","lastActionDateTimeUtc":"2021-05-02T13:35:56.3765058Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"383f2e49-6c69-4c84-87d9-22e35c084df0","createdDateTimeUtc":"2021-05-02T13:31:00.0115068Z","lastActionDateTimeUtc":"2021-05-02T13:31:22.5440958Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":297}},{"id":"da250914-9cd2-4258-90bf-d9ca3bd8365b","createdDateTimeUtc":"2021-05-02T13:27:22.8643169Z","lastActionDateTimeUtc":"2021-05-02T13:27:44.3728419Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"bd7404a1-5494-465c-80c6-050daf906887","createdDateTimeUtc":"2021-05-02T13:23:36.5223954Z","lastActionDateTimeUtc":"2021-05-02T13:23:49.9060016Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"7ae4a32a-5e1d-4b5c-a5dc-5bb00b74d9b5","createdDateTimeUtc":"2021-05-02T13:21:57.4331936Z","lastActionDateTimeUtc":"2021-05-02T13:22:13.2276343Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":216}},{"id":"33af6de5-29da-4d13-b6e4-2c963f26f0bb","createdDateTimeUtc":"2021-05-02T13:19:07.7815155Z","lastActionDateTimeUtc":"2021-05-02T13:19:26.4327483Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":324}},{"id":"7ee69dd6-f6c3-4af1-b418-a665501d4b4c","createdDateTimeUtc":"2021-05-02T13:17:15.977301Z","lastActionDateTimeUtc":"2021-05-02T13:17:36.0112933Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1255&$top=1216&$maxpagesize=50"}' + headers: + apim-request-id: 0371359d-24d9-4cbb-8068-33732b9537c2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:10 GMT + etag: '"6B9792A748AEEB110D5A44CD62C6453DAD73E721F6717C51CF591D2E8F4D87DA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0371359d-24d9-4cbb-8068-33732b9537c2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1205&$top=1266&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1255&$top=1216&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"d24129e4-6dde-41f6-a6d2-86e0f2d58975","createdDateTimeUtc":"2021-05-02T13:14:32.586762Z","lastActionDateTimeUtc":"2021-05-02T13:14:52.6174513Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"75d125cc-f972-45a0-8218-fff64e7de307","createdDateTimeUtc":"2021-05-02T13:09:53.371461Z","lastActionDateTimeUtc":"2021-05-02T13:10:05.6573524Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"6c6dc2f6-009d-4c18-b9d7-228b7fcf8597","createdDateTimeUtc":"2021-05-02T13:08:28.5364786Z","lastActionDateTimeUtc":"2021-05-02T13:08:42.7709716Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"639d85b5-7e4e-45cd-89bb-73c0ede118d0","createdDateTimeUtc":"2021-05-02T13:06:45.3124649Z","lastActionDateTimeUtc":"2021-05-02T13:06:59.0531238Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"9ebb9228-8674-4d60-9a23-1e70d1fc126c","createdDateTimeUtc":"2021-05-02T13:05:44.9495426Z","lastActionDateTimeUtc":"2021-05-02T13:06:03.0581266Z","status":"Succeeded","summary":{"total":15,"failed":0,"success":15,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":405}},{"id":"a8626975-ece0-4b19-b5d0-0a32929372ca","createdDateTimeUtc":"2021-05-02T13:00:56.1676154Z","lastActionDateTimeUtc":"2021-05-02T13:01:02.8228731Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"945c377f-3b9e-480d-afdb-001c84876604","createdDateTimeUtc":"2021-05-02T13:00:33.0307851Z","lastActionDateTimeUtc":"2021-05-02T13:00:41.2898846Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f17ee31c-ce30-4505-b575-d743245f4e30","createdDateTimeUtc":"2021-05-02T12:59:17.6317322Z","lastActionDateTimeUtc":"2021-05-02T12:59:33.8601067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d31edec0-8fc0-4d6a-870f-ac12b0f105f4","createdDateTimeUtc":"2021-05-02T12:56:29.8247787Z","lastActionDateTimeUtc":"2021-05-02T12:56:36.112702Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"fb9ea63e-43b9-449f-9f8e-62dd658cb0c6","createdDateTimeUtc":"2021-05-02T12:53:45.9646768Z","lastActionDateTimeUtc":"2021-05-02T12:54:05.6740258Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"57957ba0-8443-4b5d-b7c2-80a08382e7c8","createdDateTimeUtc":"2021-05-02T12:52:13.9553564Z","lastActionDateTimeUtc":"2021-05-02T12:52:24.9097305Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"2bdd87a0-3488-4941-9126-fc5c51d57a85","createdDateTimeUtc":"2021-05-02T12:51:18.2497202Z","lastActionDateTimeUtc":"2021-05-02T12:51:28.4679202Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"8ba31d13-3dd5-4343-8862-79c36dec5696","createdDateTimeUtc":"2021-05-02T12:48:29.6622423Z","lastActionDateTimeUtc":"2021-05-02T12:48:41.6733587Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e276801f-8421-4244-b84a-e3be13be7ddf","createdDateTimeUtc":"2021-05-02T00:34:54.911016Z","lastActionDateTimeUtc":"2021-05-02T00:35:05.6383339Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"9a9b95a0-abcc-414d-bbdb-d6ba2d03daa0","createdDateTimeUtc":"2021-05-02T00:33:18.4331897Z","lastActionDateTimeUtc":"2021-05-02T00:33:29.2107845Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"4bfbea5c-6905-4b2e-bb57-0979fda11c45","createdDateTimeUtc":"2021-05-02T00:24:40.3672959Z","lastActionDateTimeUtc":"2021-05-02T00:24:52.6755524Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"54ef0784-a5e1-4ab1-9445-cb1cf661272e","createdDateTimeUtc":"2021-05-02T00:23:38.3519739Z","lastActionDateTimeUtc":"2021-05-02T00:23:46.9414528Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"1032d4b9-b735-400e-a9b1-cba491258b3f","createdDateTimeUtc":"2021-05-02T00:22:46.3822524Z","lastActionDateTimeUtc":"2021-05-02T00:23:01.2310634Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"e8f347f3-cc4d-49e6-80ad-3eefd85d5c9d","createdDateTimeUtc":"2021-05-02T00:15:23.6525535Z","lastActionDateTimeUtc":"2021-05-02T00:15:39.1704933Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"8153e05c-2aab-4d1a-b8d2-143a0854a932","createdDateTimeUtc":"2021-05-02T00:14:41.6490968Z","lastActionDateTimeUtc":"2021-05-02T00:14:49.6274534Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"14da2d76-7ae3-47e2-b635-dcbcc9df5ada","createdDateTimeUtc":"2021-05-02T00:13:26.5732189Z","lastActionDateTimeUtc":"2021-05-02T00:13:42.6228644Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"efb453e6-fe00-49d3-ba7c-2edeb64e5885","createdDateTimeUtc":"2021-05-02T00:11:47.6217634Z","lastActionDateTimeUtc":"2021-05-02T00:11:58.9424375Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e9f8c602-6190-4e38-acd0-cd17934e4380","createdDateTimeUtc":"2021-05-01T15:44:14.8090286Z","lastActionDateTimeUtc":"2021-05-01T15:44:21.3998189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"6cfecda2-d34e-4a50-8976-52fd1987e163","createdDateTimeUtc":"2021-05-01T15:43:43.68497Z","lastActionDateTimeUtc":"2021-05-01T15:43:50.8843231Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"f11dc420-60f1-4f50-9317-56479f027518","createdDateTimeUtc":"2021-05-01T15:43:18.5572235Z","lastActionDateTimeUtc":"2021-05-01T15:43:25.8008046Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b445baa6-7f5d-4c0a-8bea-b1c59780b159","createdDateTimeUtc":"2021-05-01T15:42:49.3915321Z","lastActionDateTimeUtc":"2021-05-01T15:42:55.1410042Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"fe83ef0c-abcd-488f-89c2-cfd389b6f1b8","createdDateTimeUtc":"2021-05-01T15:39:52.5129541Z","lastActionDateTimeUtc":"2021-05-01T15:40:05.5519147Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"b93ed06c-8753-43a8-85e6-7e812f57a5bb","createdDateTimeUtc":"2021-05-01T15:37:46.3575287Z","lastActionDateTimeUtc":"2021-05-01T15:37:53.194668Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"284f1ec1-81b2-43c7-9dbe-435a757b7f30","createdDateTimeUtc":"2021-05-01T14:35:47.4260264Z","lastActionDateTimeUtc":"2021-05-01T14:35:53.8890608Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"06e2a46f-578e-4ea4-9fa6-a7cbe12e6731","createdDateTimeUtc":"2021-05-01T14:35:21.6002315Z","lastActionDateTimeUtc":"2021-05-01T14:35:28.6444108Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55f691af-1c95-4024-aaa7-2a1ee385626f","createdDateTimeUtc":"2021-05-01T14:34:25.0219626Z","lastActionDateTimeUtc":"2021-05-01T14:34:33.565562Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d110ed22-5865-49dd-bde5-228554b599a4","createdDateTimeUtc":"2021-05-01T14:33:13.0558239Z","lastActionDateTimeUtc":"2021-05-01T14:33:24.4082393Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"3afe1eaa-7e60-41a7-a9e9-07e13b7fc649","createdDateTimeUtc":"2021-05-01T14:33:07.7652571Z","lastActionDateTimeUtc":"2021-05-01T14:33:16.3556736Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"2c957604-179e-4575-8e3d-927127e0a3ce","createdDateTimeUtc":"2021-05-01T14:33:02.1897896Z","lastActionDateTimeUtc":"2021-05-01T14:33:14.4810522Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"50f3b2e3-bd8b-461d-9aea-cee290ff4c4a","createdDateTimeUtc":"2021-05-01T14:32:56.9151056Z","lastActionDateTimeUtc":"2021-05-01T14:33:02.6086232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"61831d6f-803d-471d-800a-a247024f03ba","createdDateTimeUtc":"2021-05-01T14:32:51.5019346Z","lastActionDateTimeUtc":"2021-05-01T14:33:05.5886832Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"c5796e7b-d3db-4c99-b495-551713cd1ef1","createdDateTimeUtc":"2021-05-01T13:55:23.1929386Z","lastActionDateTimeUtc":"2021-05-01T13:55:34.9924768Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4adf2784-5415-4174-acbf-9b9e3f8332b1","createdDateTimeUtc":"2021-05-01T13:54:00.3930217Z","lastActionDateTimeUtc":"2021-05-01T13:54:16.5818505Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6527c386-3280-48ef-9552-60b553a419c0","createdDateTimeUtc":"2021-05-01T13:43:56.6218063Z","lastActionDateTimeUtc":"2021-05-01T13:44:03.8160623Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56ee2897-c8fb-47d3-8697-bdcc23457de2","createdDateTimeUtc":"2021-05-01T13:40:30.7361527Z","lastActionDateTimeUtc":"2021-05-01T13:40:49.8240734Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4c3273b2-77c2-4d20-abb4-53bf5df490de","createdDateTimeUtc":"2021-05-01T13:39:37.7322428Z","lastActionDateTimeUtc":"2021-05-01T13:39:47.2903156Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"6a35307d-d770-417a-a6cd-8be6d8155ed3","createdDateTimeUtc":"2021-05-01T13:37:43.8701863Z","lastActionDateTimeUtc":"2021-05-01T13:37:51.9614295Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"544fd56c-6c74-495f-b587-198f77898924","createdDateTimeUtc":"2021-05-01T13:28:10.8054412Z","lastActionDateTimeUtc":"2021-05-01T13:28:25.3951252Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"65b50516-e7a6-4275-b5ac-e9c6772a067f","createdDateTimeUtc":"2021-05-01T13:26:47.3020644Z","lastActionDateTimeUtc":"2021-05-01T13:27:00.2173713Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b31bfc6d-8338-4bad-bb55-9824048b73e4","createdDateTimeUtc":"2021-05-01T13:18:36.5862407Z","lastActionDateTimeUtc":"2021-05-01T13:18:53.886607Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"a40fc66f-b4db-41d2-a555-954d401505f1","createdDateTimeUtc":"2021-05-01T13:17:00.7739856Z","lastActionDateTimeUtc":"2021-05-01T13:17:13.2492744Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"dd7ff181-54ef-4eaa-b0b0-43440bd82db0","createdDateTimeUtc":"2021-05-01T13:15:00.6142757Z","lastActionDateTimeUtc":"2021-05-01T13:15:12.7139367Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"046f8065-d7eb-445b-9959-81c6be79d05c","createdDateTimeUtc":"2021-05-01T13:14:20.0921464Z","lastActionDateTimeUtc":"2021-05-01T13:14:26.9951398Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08549f1d-9f5d-4251-861f-f312a2170e09","createdDateTimeUtc":"2021-05-01T13:13:47.8158602Z","lastActionDateTimeUtc":"2021-05-01T13:14:11.6353327Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bf232346-7cbd-4c71-9e7d-0e9721628c0f","createdDateTimeUtc":"2021-04-30T20:55:04.6297239Z","lastActionDateTimeUtc":"2021-04-30T20:55:09.8355485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1305&$top=1166&$maxpagesize=50"}' + headers: + apim-request-id: ce1ae57d-bad7-4c8f-9998-58ba7bd26aa8 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:10 GMT + etag: '"E6C785497840E3E70F4C7C901F56DA5334125D07ED9D4C2F0088255E1D1B7A8D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ce1ae57d-bad7-4c8f-9998-58ba7bd26aa8 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1255&$top=1216&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1305&$top=1166&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"dd15f70d-e888-4c14-af77-0c0288979c18","createdDateTimeUtc":"2021-04-30T20:55:01.6152164Z","lastActionDateTimeUtc":"2021-04-30T20:55:04.9846722Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f151c49-c053-4bf2-b5bf-66407efdd779","createdDateTimeUtc":"2021-04-30T20:54:58.778957Z","lastActionDateTimeUtc":"2021-04-30T20:55:01.4733027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"593f68a2-c8b5-4b6f-8ae0-077a92a99c80","createdDateTimeUtc":"2021-04-30T20:54:55.9547257Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5272504Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fac2272b-cac4-449d-bb8d-3e8bd0a3b307","createdDateTimeUtc":"2021-04-30T20:54:53.17274Z","lastActionDateTimeUtc":"2021-04-30T20:55:05.5118632Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f9b3a78-40d0-4252-a005-c1261c4d9602","createdDateTimeUtc":"2021-04-30T20:54:41.4808074Z","lastActionDateTimeUtc":"2021-04-30T20:54:45.2595507Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"50c22151-f5d1-4192-961f-5bdc19539bed","createdDateTimeUtc":"2021-04-30T20:54:38.744834Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6617333Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b5e582e-48e3-4864-811c-5bc9a23c44fd","createdDateTimeUtc":"2021-04-30T20:54:35.9530316Z","lastActionDateTimeUtc":"2021-04-30T20:54:41.6516954Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"021eab45-d13f-4fa0-9226-423bd22e1e68","createdDateTimeUtc":"2021-04-30T20:54:25.3744246Z","lastActionDateTimeUtc":"2021-04-30T20:54:28.128273Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cfa62a2c-8a97-4089-b60a-7a094a4cae63","createdDateTimeUtc":"2021-04-30T20:54:22.638039Z","lastActionDateTimeUtc":"2021-04-30T20:54:25.154617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"54664cf6-0f3a-4d3a-a220-8686da414ab5","createdDateTimeUtc":"2021-04-30T20:54:19.8924978Z","lastActionDateTimeUtc":"2021-04-30T20:54:22.0719189Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f7437b6-4d65-4e6d-a518-98a450d899d7","createdDateTimeUtc":"2021-04-30T20:54:16.5164923Z","lastActionDateTimeUtc":"2021-04-30T20:54:18.9665912Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ad70763c-20d5-4c38-952b-beb5fd951160","createdDateTimeUtc":"2021-04-30T20:54:13.7580958Z","lastActionDateTimeUtc":"2021-04-30T20:54:16.6909429Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4897505e-2257-4220-8853-32a374d00fd5","createdDateTimeUtc":"2021-04-30T20:54:10.9700944Z","lastActionDateTimeUtc":"2021-04-30T20:54:13.5355844Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"182dfbce-3977-4c34-9493-f64df2f8ea6b","createdDateTimeUtc":"2021-04-30T20:54:07.7319187Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9434268Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cea0b892-9b7d-4af9-b9ba-104902b1a255","createdDateTimeUtc":"2021-04-30T20:54:04.9580963Z","lastActionDateTimeUtc":"2021-04-30T20:54:12.0599619Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"63f4fe90-8964-44f6-a4ac-ec45b89fbbf7","createdDateTimeUtc":"2021-04-30T20:54:02.1976185Z","lastActionDateTimeUtc":"2021-04-30T20:54:11.9569065Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8375ce5e-4a44-4de3-b7db-645907aa23e5","createdDateTimeUtc":"2021-04-30T20:53:50.876231Z","lastActionDateTimeUtc":"2021-04-30T20:53:56.9383622Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f84c70e7-0872-442f-8d4f-65166224a114","createdDateTimeUtc":"2021-04-30T20:53:47.4086064Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3363099Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"689be74d-62e6-4ecb-b019-dec8f2e15972","createdDateTimeUtc":"2021-04-30T20:53:43.6146698Z","lastActionDateTimeUtc":"2021-04-30T20:53:53.3556747Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f7731edb-8020-45f6-9e9c-513d99565db8","createdDateTimeUtc":"2021-04-30T20:53:40.1269527Z","lastActionDateTimeUtc":"2021-04-30T20:53:52.2937379Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdfa5a7f-fa93-4b35-9792-e9a1d9df6e2c","createdDateTimeUtc":"2021-04-30T20:53:36.5532721Z","lastActionDateTimeUtc":"2021-04-30T20:53:51.5297476Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d9dd4f2e-b9e3-4551-a184-6d18c189880c","createdDateTimeUtc":"2021-04-30T20:18:16.7481934Z","lastActionDateTimeUtc":"2021-04-30T20:18:19.8330616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"721eef5e-7ed7-4796-b0aa-0833fd4b34f4","createdDateTimeUtc":"2021-04-30T20:18:13.920279Z","lastActionDateTimeUtc":"2021-04-30T20:18:22.1185105Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc16e9bf-40e8-4726-bd97-aa4d864d1b05","createdDateTimeUtc":"2021-04-30T20:18:10.72238Z","lastActionDateTimeUtc":"2021-04-30T20:18:12.8604848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67287bfb-a5d4-4a42-95bd-90862cc52289","createdDateTimeUtc":"2021-04-30T20:16:23.9121265Z","lastActionDateTimeUtc":"2021-04-30T20:16:29.9235544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a789407c-0efb-4b41-bdc6-234dc3ceb969","createdDateTimeUtc":"2021-04-30T20:16:21.1911515Z","lastActionDateTimeUtc":"2021-04-30T20:16:24.9537603Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69a35313-ce96-464e-bddb-11ab071e6b71","createdDateTimeUtc":"2021-04-30T20:16:18.3803867Z","lastActionDateTimeUtc":"2021-04-30T20:16:28.1758897Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5c88227-a08c-49ad-b1a4-6a7af4750e67","createdDateTimeUtc":"2021-04-30T20:13:35.9018839Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6871162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"87b1b86f-8d13-485a-be06-b061bd7cafa4","createdDateTimeUtc":"2021-04-30T20:13:32.7331528Z","lastActionDateTimeUtc":"2021-04-30T20:13:38.6939518Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4533e571-4790-4d69-b300-5a26095b00d9","createdDateTimeUtc":"2021-04-30T20:13:29.3284151Z","lastActionDateTimeUtc":"2021-04-30T20:13:31.8005209Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3fa4c4e2-06ec-4ba8-992d-e02e1c7fe216","createdDateTimeUtc":"2021-04-30T20:13:21.1308339Z","lastActionDateTimeUtc":"2021-04-30T20:13:27.3923983Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3690ec44-4327-4aca-85a2-664e1ab6c088","createdDateTimeUtc":"2021-04-30T20:13:17.6472141Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9282461Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"33b8870c-5b8b-4264-aac0-a15dca1204a4","createdDateTimeUtc":"2021-04-30T20:13:14.3179505Z","lastActionDateTimeUtc":"2021-04-30T20:13:23.9395213Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e2e6e27c-f0ea-4eec-b4d1-7f3872d1ddd1","createdDateTimeUtc":"2021-04-30T20:03:03.7739068Z","lastActionDateTimeUtc":"2021-04-30T20:03:06.2760294Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e8a56a01-07d8-4254-9d48-492e53e2e4a8","createdDateTimeUtc":"2021-04-30T20:03:00.8842455Z","lastActionDateTimeUtc":"2021-04-30T20:03:03.1580324Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8a2b3e70-92fb-4424-982c-c3f7aab7fa4a","createdDateTimeUtc":"2021-04-30T20:02:58.0139194Z","lastActionDateTimeUtc":"2021-04-30T20:03:02.644345Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"231008d8-4d50-4d15-a5fd-e2639a586bc7","createdDateTimeUtc":"2021-04-30T19:56:04.2493446Z","lastActionDateTimeUtc":"2021-04-30T19:56:09.7576096Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"062e2a3c-1d58-453a-9a5d-6c807c86c6c6","createdDateTimeUtc":"2021-04-30T19:56:00.7836104Z","lastActionDateTimeUtc":"2021-04-30T19:56:06.1700496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e02416c4-0227-4a4a-b5e9-ad7dbb2416b3","createdDateTimeUtc":"2021-04-30T19:55:57.9547328Z","lastActionDateTimeUtc":"2021-04-30T19:56:11.8982739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"572dd6b1-ae35-4d66-973e-8b0396bbd79b","createdDateTimeUtc":"2021-04-30T19:54:07.6124611Z","lastActionDateTimeUtc":"2021-04-30T19:54:12.8031901Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8fb17030-4066-40a1-a2c0-8b6ced21cf9c","createdDateTimeUtc":"2021-04-30T19:54:04.8790535Z","lastActionDateTimeUtc":"2021-04-30T19:54:10.9078587Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf5ccfe6-4726-4e4c-95a0-c06d2b26cdde","createdDateTimeUtc":"2021-04-30T19:54:02.0826342Z","lastActionDateTimeUtc":"2021-04-30T19:54:06.9441101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"04a37828-2d71-417e-a91f-2a206dfdfa08","createdDateTimeUtc":"2021-04-30T17:45:09.5455113Z","lastActionDateTimeUtc":"2021-04-30T17:45:17.5698084Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73ad617f-448a-47d0-8c95-9d2536842e93","createdDateTimeUtc":"2021-04-30T17:45:06.9439125Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.726878Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b35de06-edd0-46a8-a619-5eac41aacba6","createdDateTimeUtc":"2021-04-30T17:45:03.8630199Z","lastActionDateTimeUtc":"2021-04-30T17:45:16.7258886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"208dfd61-b588-4632-8a9f-2179bfa6f035","createdDateTimeUtc":"2021-04-30T17:38:05.1409325Z","lastActionDateTimeUtc":"2021-04-30T17:38:10.2527072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"10400301-4551-4fde-8814-880edee2b9ce","createdDateTimeUtc":"2021-04-30T17:38:02.7026002Z","lastActionDateTimeUtc":"2021-04-30T17:38:07.6591037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"9a791b78-f105-441b-a0b1-75c59675c078","createdDateTimeUtc":"2021-04-30T17:38:00.2946058Z","lastActionDateTimeUtc":"2021-04-30T17:38:02.2946795Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"71eaff8d-788c-4dfa-a1af-ee6964a9feb0","createdDateTimeUtc":"2021-04-30T17:37:57.8848527Z","lastActionDateTimeUtc":"2021-04-30T17:37:59.3422683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2620bf31-3b7c-472c-8bd0-5d9cf0960fec","createdDateTimeUtc":"2021-04-30T17:37:55.4728087Z","lastActionDateTimeUtc":"2021-04-30T17:37:58.2564679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1355&$top=1116&$maxpagesize=50"}' + headers: + apim-request-id: e933ac26-b54e-4795-bd21-42561256e55e + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:10 GMT + etag: '"2BC97314366DCC6BFE1812869EAAC1DA9F5A433F5FE0536804D47214C69E536D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: e933ac26-b54e-4795-bd21-42561256e55e + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1305&$top=1166&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1355&$top=1116&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"8de845b9-9fe3-43e5-9d68-a46a1db6b2d1","createdDateTimeUtc":"2021-04-30T17:37:53.0472148Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.171404Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"cf5dcb5f-b259-4c78-b16c-d586b9362995","createdDateTimeUtc":"2021-04-30T17:37:50.6372591Z","lastActionDateTimeUtc":"2021-04-30T17:38:16.0178448Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7a993808-8b96-4384-ac61-b79acd8a97f1","createdDateTimeUtc":"2021-04-30T17:37:48.261767Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.8650887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"102b1f23-715a-4d1a-8a32-3d111fc7e696","createdDateTimeUtc":"2021-04-30T17:37:45.8677683Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.6964954Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"45c40f54-2c53-44d1-9a6f-615628372c88","createdDateTimeUtc":"2021-04-30T17:37:43.4129871Z","lastActionDateTimeUtc":"2021-04-30T17:38:15.4967782Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95489512-dae3-4d9f-9785-17b1b258ab39","createdDateTimeUtc":"2021-04-30T17:28:19.8055002Z","lastActionDateTimeUtc":"2021-04-30T17:28:22.6395877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"68330a79-e60c-45be-8964-db16b848cd7d","createdDateTimeUtc":"2021-04-30T17:28:17.126257Z","lastActionDateTimeUtc":"2021-04-30T17:28:20.0952143Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b5502e90-c6d2-48dd-ad62-7bcbca566181","createdDateTimeUtc":"2021-04-30T17:28:14.3885633Z","lastActionDateTimeUtc":"2021-04-30T17:28:17.2598465Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9179d13f-d00a-4aff-9a84-ee52cd51723d","createdDateTimeUtc":"2021-04-30T17:28:11.7278347Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6773295Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5c03d88e-e5f3-4724-b74b-2dc422263d21","createdDateTimeUtc":"2021-04-30T17:28:08.9684273Z","lastActionDateTimeUtc":"2021-04-30T17:28:15.6496332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"81f7f4e4-2d92-4841-874d-378d8f1dd383","createdDateTimeUtc":"2021-04-30T17:24:56.8607583Z","lastActionDateTimeUtc":"2021-04-30T17:24:59.7329315Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2a6f6235-e3b3-48af-8f99-6e7ca9e62a73","createdDateTimeUtc":"2021-04-30T17:24:54.1325312Z","lastActionDateTimeUtc":"2021-04-30T17:24:56.8681386Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dba2a023-5861-4848-901c-9782f4bac616","createdDateTimeUtc":"2021-04-30T17:24:51.4546345Z","lastActionDateTimeUtc":"2021-04-30T17:24:54.358798Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bf7d734c-c6fa-4e8d-9729-8c6d260d11bf","createdDateTimeUtc":"2021-04-30T17:24:48.709254Z","lastActionDateTimeUtc":"2021-04-30T17:24:57.5612824Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fb0b9e63-d6c3-4f58-9cf1-33c41b02d7ff","createdDateTimeUtc":"2021-04-30T17:24:46.163661Z","lastActionDateTimeUtc":"2021-04-30T17:24:48.2546196Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e0c983d8-d49b-4b07-b539-b711ce6a9f0a","createdDateTimeUtc":"2021-04-30T17:24:37.0965953Z","lastActionDateTimeUtc":"2021-04-30T17:24:41.6065892Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ceea5f47-d17d-4909-aedf-e78dd85f4c80","createdDateTimeUtc":"2021-04-30T17:24:33.7130891Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.1515631Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"3844a04d-1d26-491d-8a40-2a409e6035d9","createdDateTimeUtc":"2021-04-30T17:24:30.3168054Z","lastActionDateTimeUtc":"2021-04-30T17:24:40.8106526Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"5f36e52f-70a1-402c-b920-c84dd0157262","createdDateTimeUtc":"2021-04-30T17:24:26.9481798Z","lastActionDateTimeUtc":"2021-04-30T17:24:31.4996465Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5ba1ebe3-af34-4488-bc02-ca032777b0be","createdDateTimeUtc":"2021-04-30T17:24:23.4676147Z","lastActionDateTimeUtc":"2021-04-30T17:24:38.8706384Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"87092aa2-0772-4c8f-9b97-8d8084d04f61","createdDateTimeUtc":"2021-04-30T14:55:42.7394285Z","lastActionDateTimeUtc":"2021-04-30T14:55:46.3851841Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"8f7a772a-2097-4c3f-922c-c5fe725f1f9a","createdDateTimeUtc":"2021-04-30T14:55:40.0303648Z","lastActionDateTimeUtc":"2021-04-30T14:55:43.2840432Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"069857ef-b830-4da3-a03a-010c45ff78ba","createdDateTimeUtc":"2021-04-30T14:55:37.1413642Z","lastActionDateTimeUtc":"2021-04-30T14:55:40.2182558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fff4ad3d-71f9-4e2f-bbf6-56a720130bc5","createdDateTimeUtc":"2021-04-30T14:55:34.4893265Z","lastActionDateTimeUtc":"2021-04-30T14:55:41.6568126Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4847984b-4a97-4002-abc0-b4ebeec14401","createdDateTimeUtc":"2021-04-30T14:55:31.7620214Z","lastActionDateTimeUtc":"2021-04-30T14:55:36.6169231Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b6ab723-4f36-4690-9083-9e515704eb6b","createdDateTimeUtc":"2021-04-30T14:55:22.0130158Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.9440914Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"69fe4416-51e3-446a-b9cd-57d5dc7c4862","createdDateTimeUtc":"2021-04-30T14:55:19.3419886Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4365156Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8187e129-4941-4b72-b11d-cac32dafa593","createdDateTimeUtc":"2021-04-30T14:55:16.5818857Z","lastActionDateTimeUtc":"2021-04-30T14:55:25.4232313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"05cc3340-c8f6-484f-b736-e00177e34daf","createdDateTimeUtc":"2021-04-30T14:55:07.16213Z","lastActionDateTimeUtc":"2021-04-30T14:55:10.3709224Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"cd76ff36-2b63-45fd-89b0-0e2397bddbbd","createdDateTimeUtc":"2021-04-30T14:55:04.5090802Z","lastActionDateTimeUtc":"2021-04-30T14:55:07.4342704Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"57b93cde-9756-48a4-bf45-28eabb1704f1","createdDateTimeUtc":"2021-04-30T14:55:01.7583565Z","lastActionDateTimeUtc":"2021-04-30T14:55:04.3944952Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"72fb6f7d-d0cf-43a1-8082-e2f68c87442c","createdDateTimeUtc":"2021-04-30T14:54:58.3322772Z","lastActionDateTimeUtc":"2021-04-30T14:55:01.5214779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bdcaf299-4e28-4ce3-9e84-63399f0a5821","createdDateTimeUtc":"2021-04-30T14:54:55.7088679Z","lastActionDateTimeUtc":"2021-04-30T14:54:58.4882233Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2069b1b7-cd6d-41ef-b4a3-447da6554f81","createdDateTimeUtc":"2021-04-30T14:54:52.9589629Z","lastActionDateTimeUtc":"2021-04-30T14:54:55.4693567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4b3e99e9-43e3-4d11-b120-1970acc7ff99","createdDateTimeUtc":"2021-04-30T14:54:49.601227Z","lastActionDateTimeUtc":"2021-04-30T14:54:52.3893719Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8b7b813-d4be-4de4-b2b0-767cb6ba8d52","createdDateTimeUtc":"2021-04-30T14:54:46.8093798Z","lastActionDateTimeUtc":"2021-04-30T14:54:49.4230107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9f289573-87e0-4dd2-b569-14ca33d0d3ba","createdDateTimeUtc":"2021-04-30T14:54:44.1370191Z","lastActionDateTimeUtc":"2021-04-30T14:54:48.5483969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d0cda4f7-b380-4c05-8d69-cf19d9d7760d","createdDateTimeUtc":"2021-04-30T14:54:34.8247651Z","lastActionDateTimeUtc":"2021-04-30T14:54:41.2437067Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"1c250077-135a-4a2e-b180-a448c1efab4a","createdDateTimeUtc":"2021-04-30T14:54:31.4423903Z","lastActionDateTimeUtc":"2021-04-30T14:54:37.6079306Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"57965deb-26ba-44b4-ab12-d4e6468b7257","createdDateTimeUtc":"2021-04-30T14:54:28.0476204Z","lastActionDateTimeUtc":"2021-04-30T14:54:36.5563087Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"56a32b3d-7b83-4eba-b6e0-a365878d57a9","createdDateTimeUtc":"2021-04-30T14:54:24.6594005Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.8912455Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3090361f-6bc7-4553-947f-76b4d20e5fa6","createdDateTimeUtc":"2021-04-30T14:54:21.1814437Z","lastActionDateTimeUtc":"2021-04-30T14:54:32.2284674Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"27a6f3bb-df7c-49c2-a2c5-9fdd68797cbc","createdDateTimeUtc":"2021-04-30T14:50:23.6745486Z","lastActionDateTimeUtc":"2021-04-30T14:50:28.3581868Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2b47204b-5aff-4bf8-b157-95b61268cf9a","createdDateTimeUtc":"2021-04-30T14:50:21.0177779Z","lastActionDateTimeUtc":"2021-04-30T14:50:25.4026922Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3d1b737-df7c-4ff7-8366-151468345a72","createdDateTimeUtc":"2021-04-30T14:50:18.3000573Z","lastActionDateTimeUtc":"2021-04-30T14:50:20.8488666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3758b908-0aa5-49cf-9240-0ad021f488cc","createdDateTimeUtc":"2021-04-30T14:50:15.672043Z","lastActionDateTimeUtc":"2021-04-30T14:50:18.900909Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3b5ab80d-de79-43c0-9892-343fe37db596","createdDateTimeUtc":"2021-04-30T14:50:12.9881561Z","lastActionDateTimeUtc":"2021-04-30T14:50:15.9189133Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"491021f4-3cae-454b-b969-cfe1a1d706eb","createdDateTimeUtc":"2021-04-30T14:50:03.5225754Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.7509679Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3fafe2af-32c3-4630-a2a3-f2e5e5a84ec5","createdDateTimeUtc":"2021-04-30T14:50:00.5602799Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2260319Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1b3816ac-256e-4ab3-9649-d51207466eff","createdDateTimeUtc":"2021-04-30T14:49:57.3544841Z","lastActionDateTimeUtc":"2021-04-30T14:50:05.2995864Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1405&$top=1066&$maxpagesize=50"}' + headers: + apim-request-id: c6288585-c0d4-4ab1-92da-5e11bd403b4a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:11 GMT + etag: '"A9199F84F7AD879CC998EDB31E1B4D1F4C433593568006CD3FEAD7E5DE0EF1FE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c6288585-c0d4-4ab1-92da-5e11bd403b4a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1355&$top=1116&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1405&$top=1066&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"052d8534-595d-4182-ba13-68efbb93abce","createdDateTimeUtc":"2021-04-30T14:49:47.9558441Z","lastActionDateTimeUtc":"2021-04-30T14:49:50.8258069Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0a6a1177-85eb-4a8b-a8ff-4d581498b63e","createdDateTimeUtc":"2021-04-30T14:49:45.3212519Z","lastActionDateTimeUtc":"2021-04-30T14:49:47.8266511Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5dd8a0ed-7cfc-4b00-84d0-87f11aa6eb18","createdDateTimeUtc":"2021-04-30T14:49:42.7107026Z","lastActionDateTimeUtc":"2021-04-30T14:49:48.1522238Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"62109afc-1da7-40a3-8481-a2073acf6d99","createdDateTimeUtc":"2021-04-30T14:49:39.4161451Z","lastActionDateTimeUtc":"2021-04-30T14:49:44.9878099Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6fb1a24-eca2-4120-9ce4-5e6db49dd7d8","createdDateTimeUtc":"2021-04-30T14:49:36.813119Z","lastActionDateTimeUtc":"2021-04-30T14:49:40.079887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a2cad5e-e269-4a09-be32-38b646c51e8b","createdDateTimeUtc":"2021-04-30T14:49:34.1631535Z","lastActionDateTimeUtc":"2021-04-30T14:49:43.1861562Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"046722f6-c8ab-4e3b-82a8-074ae0bffc9e","createdDateTimeUtc":"2021-04-30T14:49:30.8286189Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.245434Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8b5be55f-9e83-4890-9a90-e25ec1106a37","createdDateTimeUtc":"2021-04-30T14:49:28.1248025Z","lastActionDateTimeUtc":"2021-04-30T14:49:35.3214725Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b7c18dd8-7c22-4c1a-8b27-2904a7cb1909","createdDateTimeUtc":"2021-04-30T14:49:25.4463924Z","lastActionDateTimeUtc":"2021-04-30T14:49:28.8895211Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"96f0bb7d-6c70-4906-bdab-490408d5cc32","createdDateTimeUtc":"2021-04-30T14:49:15.9188508Z","lastActionDateTimeUtc":"2021-04-30T14:49:21.8906343Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"cdfb64ca-242f-4b0e-a023-0b2162e8807a","createdDateTimeUtc":"2021-04-30T14:49:12.4295069Z","lastActionDateTimeUtc":"2021-04-30T14:49:24.6290215Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"adc8da3b-561a-4eab-a95b-162468e949ec","createdDateTimeUtc":"2021-04-30T14:49:08.9837383Z","lastActionDateTimeUtc":"2021-04-30T14:49:14.5690776Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"0fa5cf17-565d-4288-86e4-c2f3dcc4c3cc","createdDateTimeUtc":"2021-04-30T14:49:05.5897985Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.315249Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"55550c4f-cb0b-4eef-83d0-635c0216e885","createdDateTimeUtc":"2021-04-30T14:49:02.1228032Z","lastActionDateTimeUtc":"2021-04-30T14:49:23.293439Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"4d02f007-ac87-4c0d-8bd4-85de08f94e8a","createdDateTimeUtc":"2021-04-29T01:41:55.5777838Z","lastActionDateTimeUtc":"2021-04-29T01:41:59.4555165Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"733fe237-1a0d-415d-bc0c-5064126c661b","createdDateTimeUtc":"2021-04-29T01:41:52.9606906Z","lastActionDateTimeUtc":"2021-04-29T01:41:56.4204328Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"60189545-359a-4c76-a816-ee9b9aa35253","createdDateTimeUtc":"2021-04-29T01:41:50.3363838Z","lastActionDateTimeUtc":"2021-04-29T01:41:53.4152256Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2cf3ee13-b4fc-457a-b703-1a28c745a564","createdDateTimeUtc":"2021-04-29T01:41:47.6993686Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.8131739Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"98fd1cf7-432f-47d6-abc5-4389398b8f9c","createdDateTimeUtc":"2021-04-29T01:41:44.8462587Z","lastActionDateTimeUtc":"2021-04-29T01:41:51.815876Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d1b66527-c8f4-4f44-b960-43174428dd28","createdDateTimeUtc":"2021-04-29T01:39:13.9275714Z","lastActionDateTimeUtc":"2021-04-29T01:39:20.5552866Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d717bcb9-23a4-49c8-a4f0-08345283f011","createdDateTimeUtc":"2021-04-29T01:39:11.2551903Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.0382936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"be364ef3-5e9c-4135-8d37-e39fab3463cf","createdDateTimeUtc":"2021-04-29T01:39:08.542805Z","lastActionDateTimeUtc":"2021-04-29T01:39:14.552274Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0882b34e-fb4c-4694-b465-7b3e35c80b2d","createdDateTimeUtc":"2021-04-29T01:38:40.9514547Z","lastActionDateTimeUtc":"2021-04-29T01:38:49.3916031Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bea62512-5a49-4f1d-9aee-ef5eda57d4ee","createdDateTimeUtc":"2021-04-29T01:38:38.157037Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6098544Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3c49d76d-65cb-4174-a79c-19bbcd436401","createdDateTimeUtc":"2021-04-29T01:38:35.5781687Z","lastActionDateTimeUtc":"2021-04-29T01:38:47.6288401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"dc2eeff2-1a14-4217-bdab-412921e423ef","createdDateTimeUtc":"2021-04-29T01:32:55.331561Z","lastActionDateTimeUtc":"2021-04-29T01:33:01.5733176Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ae4d3a68-e1e6-4138-8d90-a580ad7ea098","createdDateTimeUtc":"2021-04-29T01:32:52.4133401Z","lastActionDateTimeUtc":"2021-04-29T01:32:56.446447Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"434937fe-5f23-4472-acec-01e808d03e9d","createdDateTimeUtc":"2021-04-29T01:32:49.5601546Z","lastActionDateTimeUtc":"2021-04-29T01:32:53.3493999Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bddba688-4a21-4563-b76e-37344c51fd77","createdDateTimeUtc":"2021-04-29T01:32:46.813133Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.9088716Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6220e89a-b2da-4b38-9f11-2bd4a1347749","createdDateTimeUtc":"2021-04-29T01:32:44.0079978Z","lastActionDateTimeUtc":"2021-04-29T01:32:55.6188902Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"20b4295d-60f8-4016-b6df-3798f01792be","createdDateTimeUtc":"2021-04-29T01:31:59.5404143Z","lastActionDateTimeUtc":"2021-04-29T01:32:02.4437009Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f167dfd5-1fa1-4eb2-9169-adcb1d1f57f7","createdDateTimeUtc":"2021-04-29T01:31:56.6283159Z","lastActionDateTimeUtc":"2021-04-29T01:31:59.4095041Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f7b0a780-abba-4dff-be46-e819486137b7","createdDateTimeUtc":"2021-04-29T01:31:53.8082329Z","lastActionDateTimeUtc":"2021-04-29T01:31:58.389714Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ca77e41a-36d2-4ac2-9ad3-1d0b19df3c86","createdDateTimeUtc":"2021-04-29T01:31:50.9036354Z","lastActionDateTimeUtc":"2021-04-29T01:31:55.2835786Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"be390f2e-a557-4f07-af5a-34c4fead85f7","createdDateTimeUtc":"2021-04-29T01:31:48.0251363Z","lastActionDateTimeUtc":"2021-04-29T01:31:52.2960539Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a3192599-7675-440a-afe3-6654bf921c64","createdDateTimeUtc":"2021-04-29T01:31:45.1023641Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.496433Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"acc695cf-388f-431f-bfad-24fbdb1d2d89","createdDateTimeUtc":"2021-04-29T01:31:42.2906687Z","lastActionDateTimeUtc":"2021-04-29T01:32:00.3340183Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"c7560bde-312b-487a-8ab4-2eb533ea0264","createdDateTimeUtc":"2021-04-29T01:31:39.4015433Z","lastActionDateTimeUtc":"2021-04-29T01:31:46.0628647Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8c66c15b-7f6f-40c8-86b5-b1b9a8eb03f4","createdDateTimeUtc":"2021-04-29T01:31:36.5716069Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.933689Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"21cbed87-56e9-4e55-90ee-6117e00a8edf","createdDateTimeUtc":"2021-04-29T01:31:33.6936925Z","lastActionDateTimeUtc":"2021-04-29T01:31:42.9534933Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"2d2455f8-85df-4f00-98fe-b644e3a1334c","createdDateTimeUtc":"2021-04-29T01:29:11.2635148Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.6562978Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"daefbf91-feba-4928-9663-8885494536c5","createdDateTimeUtc":"2021-04-29T01:29:08.3575855Z","lastActionDateTimeUtc":"2021-04-29T01:29:14.0925185Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4edef358-5bb8-4cf5-bd41-5cfd0be79a06","createdDateTimeUtc":"2021-04-29T01:29:05.4716625Z","lastActionDateTimeUtc":"2021-04-29T01:29:08.1910879Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62da544-a003-4274-bbc1-d79757fc7dd9","createdDateTimeUtc":"2021-04-29T01:29:02.587703Z","lastActionDateTimeUtc":"2021-04-29T01:29:10.061058Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"e17c3886-f2da-4f5c-9520-a6a169697d20","createdDateTimeUtc":"2021-04-29T01:28:59.7536177Z","lastActionDateTimeUtc":"2021-04-29T01:29:06.0137042Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"746877d4-278f-4bc1-9c5b-13f9b569fed2","createdDateTimeUtc":"2021-04-29T01:28:56.8718241Z","lastActionDateTimeUtc":"2021-04-29T01:29:12.1613353Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4399f711-8444-428e-9d19-957189efd97b","createdDateTimeUtc":"2021-04-29T01:28:54.0221196Z","lastActionDateTimeUtc":"2021-04-29T01:29:01.3289519Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"6214b5fb-aa5a-4beb-981c-822a7ea7a3ee","createdDateTimeUtc":"2021-04-29T01:28:51.1734482Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.8578425Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"95b33dd1-19a0-4238-81e6-273d47fd75fc","createdDateTimeUtc":"2021-04-29T01:28:48.3198837Z","lastActionDateTimeUtc":"2021-04-29T01:29:00.3583895Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f0e4e140-ce6a-4adc-9545-a90f9b57ab1e","createdDateTimeUtc":"2021-04-29T01:28:45.4573075Z","lastActionDateTimeUtc":"2021-04-29T01:29:11.558918Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1455&$top=1016&$maxpagesize=50"}' + headers: + apim-request-id: ab6ec709-37c6-4dd2-88fe-6155eefca446 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:11 GMT + etag: '"1DBA3F7357E51CD9C91225DE651244C23C0612B97A15289CB88CDFD297142818"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ab6ec709-37c6-4dd2-88fe-6155eefca446 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1405&$top=1066&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1455&$top=1016&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f18f06e7-a70c-4e88-9c8a-54b471f8d239","createdDateTimeUtc":"2021-04-29T01:26:07.8263011Z","lastActionDateTimeUtc":"2021-04-29T01:26:11.0014411Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5e3ae106-f8cf-4d4b-8024-969916ee2c47","createdDateTimeUtc":"2021-04-29T01:26:04.9531392Z","lastActionDateTimeUtc":"2021-04-29T01:26:07.9561271Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77227bda-1107-4975-89b7-b6237af700c6","createdDateTimeUtc":"2021-04-29T01:26:02.0458289Z","lastActionDateTimeUtc":"2021-04-29T01:26:05.2800935Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"df995241-925a-4ed6-93fc-04e156ab6e9b","createdDateTimeUtc":"2021-04-29T01:25:59.1027548Z","lastActionDateTimeUtc":"2021-04-29T01:26:02.9096869Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a82f39f6-66b4-47cc-b984-e87c61ecdedf","createdDateTimeUtc":"2021-04-29T01:25:56.0987281Z","lastActionDateTimeUtc":"2021-04-29T01:25:59.7985675Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9c5a87d9-4380-4d59-9bf9-036006a721d5","createdDateTimeUtc":"2021-04-29T01:25:53.2465513Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.8040085Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"af30533f-85a7-4de0-a5ae-6a178bfe7057","createdDateTimeUtc":"2021-04-29T01:25:50.4062165Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.6496938Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35af9dbf-84af-4404-ad08-fa7ef94d3db6","createdDateTimeUtc":"2021-04-29T01:25:47.5335377Z","lastActionDateTimeUtc":"2021-04-29T01:25:54.2476012Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"127c3704-e69a-4a27-a052-600078b0695a","createdDateTimeUtc":"2021-04-29T01:25:44.5165404Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.2636649Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4e7c6f91-3f53-4765-acd5-1011e95d8571","createdDateTimeUtc":"2021-04-29T01:25:41.5855739Z","lastActionDateTimeUtc":"2021-04-29T01:26:08.1187951Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f59539ed-b32d-4862-96af-5ed59d58c1a7","createdDateTimeUtc":"2021-04-29T01:24:55.8818039Z","lastActionDateTimeUtc":"2021-04-29T01:25:04.3923972Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"35f13a46-456c-4189-8d5c-cf6be7e1e866","createdDateTimeUtc":"2021-04-29T01:24:51.2517156Z","lastActionDateTimeUtc":"2021-04-29T01:25:00.7081893Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"46fa2195-1e06-4d1a-8bbf-a5ffdec6f98d","createdDateTimeUtc":"2021-04-29T01:24:46.5678223Z","lastActionDateTimeUtc":"2021-04-29T01:24:59.6692712Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"6bf598e4-3dfd-411b-925f-d0465e910623","createdDateTimeUtc":"2021-04-29T01:24:41.966932Z","lastActionDateTimeUtc":"2021-04-29T01:24:54.3417332Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"416651c2-de96-48e4-8458-3bd22ce6b168","createdDateTimeUtc":"2021-04-29T01:24:37.4223411Z","lastActionDateTimeUtc":"2021-04-29T01:24:47.827218Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4b458b3d-b998-4dea-89a3-5864b05b40a3","createdDateTimeUtc":"2021-04-29T01:24:32.7750616Z","lastActionDateTimeUtc":"2021-04-29T01:24:40.0317823Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2afd6ffa-4d10-47af-84a8-2dbea847adc8","createdDateTimeUtc":"2021-04-29T01:24:27.8154701Z","lastActionDateTimeUtc":"2021-04-29T01:24:38.4508463Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6578456e-e2fc-464b-9942-82dd7334d1cb","createdDateTimeUtc":"2021-04-29T01:24:23.0910587Z","lastActionDateTimeUtc":"2021-04-29T01:24:32.4506134Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"c926df9d-14e5-4aba-9cd9-25d3712dd85a","createdDateTimeUtc":"2021-04-29T01:24:18.5622174Z","lastActionDateTimeUtc":"2021-04-29T01:24:57.2778848Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":162}},{"id":"22a9980c-89bb-4a19-a2e8-c7107c364899","createdDateTimeUtc":"2021-04-29T01:24:13.8679787Z","lastActionDateTimeUtc":"2021-04-29T01:24:23.7312685Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"cf3f64b1-d36a-4310-9844-0c622b430300","createdDateTimeUtc":"2021-04-29T01:24:09.2301786Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.9545402Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"c321c8a0-6cdc-462e-8190-ac028586f855","createdDateTimeUtc":"2021-04-29T01:24:04.6383127Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.8001915Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"6bd8d4bf-939a-46d6-ba0c-886a60487d52","createdDateTimeUtc":"2021-04-29T01:24:00.0803307Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.6383131Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"654cbbb0-1e78-4255-ac97-a73f6be27e4b","createdDateTimeUtc":"2021-04-29T01:23:55.5975668Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.4684317Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"9d17b72e-5433-4c45-b322-daee388d28e0","createdDateTimeUtc":"2021-04-29T01:23:51.0468905Z","lastActionDateTimeUtc":"2021-04-29T01:24:56.2191408Z","status":"Succeeded","summary":{"total":10,"failed":0,"success":10,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":270}},{"id":"23331343-5177-43a3-975a-69452fa0181f","createdDateTimeUtc":"2021-04-29T01:16:01.5546351Z","lastActionDateTimeUtc":"2021-04-29T01:16:04.6589848Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"acd29bbe-5590-4e69-92bb-92786a46f0b5","createdDateTimeUtc":"2021-04-29T01:15:58.8396587Z","lastActionDateTimeUtc":"2021-04-29T01:16:05.4850613Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"115eedeb-708e-4523-ae73-832b1af8eb16","createdDateTimeUtc":"2021-04-29T01:15:56.0292438Z","lastActionDateTimeUtc":"2021-04-29T01:16:06.881337Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"73d8e869-b087-4719-a8fb-3d10080c300b","createdDateTimeUtc":"2021-04-29T01:15:26.4446645Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.4435364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1ec6a361-11aa-4c58-bc38-f925f591341e","createdDateTimeUtc":"2021-04-29T01:15:23.7575516Z","lastActionDateTimeUtc":"2021-04-29T01:15:30.471682Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eab0695f-5b77-4679-b780-c5d8334b283d","createdDateTimeUtc":"2021-04-29T01:15:21.0070336Z","lastActionDateTimeUtc":"2021-04-29T01:15:27.3654191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a4d0750a-a0ee-405d-ba5e-96f5c2ecc777","createdDateTimeUtc":"2021-04-29T01:14:06.3019763Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7664655Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"696df1de-ee3e-47d8-b781-0cd2ffcb99bd","createdDateTimeUtc":"2021-04-29T01:14:03.606881Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548392Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6fa44efb-6e5e-47a4-86b5-fa2855951648","createdDateTimeUtc":"2021-04-29T01:14:00.9049071Z","lastActionDateTimeUtc":"2021-04-29T01:14:09.7548428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a625fb9-eac5-40f8-9e8e-0ebc51b5733f","createdDateTimeUtc":"2021-04-29T01:13:28.4392458Z","lastActionDateTimeUtc":"2021-04-29T01:13:32.2071769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e5796acb-cfef-4220-93ea-9e09d8c0b71a","createdDateTimeUtc":"2021-04-29T01:13:25.8424709Z","lastActionDateTimeUtc":"2021-04-29T01:13:29.1519767Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5368c328-4bdd-47a8-8217-abc28f8fb077","createdDateTimeUtc":"2021-04-29T01:13:22.8924439Z","lastActionDateTimeUtc":"2021-04-29T01:13:26.5828671Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ce76d523-c295-40bb-b1b1-c69e9ec7d009","createdDateTimeUtc":"2021-04-29T01:11:08.1819376Z","lastActionDateTimeUtc":"2021-04-29T01:11:10.8538469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5d9eff16-4dfa-4782-94ff-70ddda8a2664","createdDateTimeUtc":"2021-04-29T01:11:04.1354809Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.3159836Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"deb7a99c-d313-4136-aac8-46632753281b","createdDateTimeUtc":"2021-04-29T01:11:00.9843159Z","lastActionDateTimeUtc":"2021-04-29T01:11:15.315991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb498727-31ce-42a3-b2fc-c58a77360467","createdDateTimeUtc":"2021-04-29T01:10:52.8295901Z","lastActionDateTimeUtc":"2021-04-29T01:10:59.0190297Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"bbf66901-1715-44b4-b1fb-f72d7f77a594","createdDateTimeUtc":"2021-04-29T01:10:49.1686385Z","lastActionDateTimeUtc":"2021-04-29T01:10:52.9224058Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59805cde-95d1-4c2f-9a96-0c898fc37aae","createdDateTimeUtc":"2021-04-29T01:10:45.8985975Z","lastActionDateTimeUtc":"2021-04-29T01:10:50.4033624Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a548e47e-d2cc-4558-b7ba-3b4da9f95987","createdDateTimeUtc":"2021-04-29T01:05:17.8111149Z","lastActionDateTimeUtc":"2021-04-29T01:05:20.4037051Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d09c7f4a-70a5-4594-906b-582f5d253bcd","createdDateTimeUtc":"2021-04-29T01:05:15.0972778Z","lastActionDateTimeUtc":"2021-04-29T01:05:17.3938744Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a99b0493-f508-4629-ba60-134eed5897d0","createdDateTimeUtc":"2021-04-29T01:05:12.419747Z","lastActionDateTimeUtc":"2021-04-29T01:05:16.3635646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab98b723-7276-45dd-8bce-6d8c8cb995ca","createdDateTimeUtc":"2021-04-29T01:05:09.7335353Z","lastActionDateTimeUtc":"2021-04-29T01:05:13.3298237Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e4067859-36ef-427e-b1a0-e773d9537a71","createdDateTimeUtc":"2021-04-29T01:05:07.0456655Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9684359Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c6b1adb5-806a-468f-b7e9-a3232c573c50","createdDateTimeUtc":"2021-04-29T01:05:04.3787736Z","lastActionDateTimeUtc":"2021-04-29T01:05:12.9371523Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8a26044a-0fc2-413f-9dd8-a5db0e636608","createdDateTimeUtc":"2021-04-29T01:01:50.8641384Z","lastActionDateTimeUtc":"2021-04-29T01:01:53.9665013Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1505&$top=966&$maxpagesize=50"}' + headers: + apim-request-id: dff67fa8-41d2-427e-8b23-8c99277ae647 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:11 GMT + etag: '"1A10CB79AF184C51FD078E7600316B05E9D523AC68EC7604DC361860D1D1AACD"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: dff67fa8-41d2-427e-8b23-8c99277ae647 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1455&$top=1016&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1505&$top=966&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f869a30a-3dbe-4fda-9405-879f43c785bb","createdDateTimeUtc":"2021-04-29T01:01:48.1532526Z","lastActionDateTimeUtc":"2021-04-29T01:01:50.9403387Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6f1dcebc-4763-41a3-b648-4c69b117bb92","createdDateTimeUtc":"2021-04-29T01:01:45.5077715Z","lastActionDateTimeUtc":"2021-04-29T01:01:47.863025Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"45e64202-7805-4719-9ff0-a288fbc95307","createdDateTimeUtc":"2021-04-29T01:01:42.7541326Z","lastActionDateTimeUtc":"2021-04-29T01:01:45.0280327Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b6cf4347-c3be-4974-aab4-baa587844c52","createdDateTimeUtc":"2021-04-29T01:01:40.0533786Z","lastActionDateTimeUtc":"2021-04-29T01:01:44.0490596Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3e935f0e-b37f-4c13-868f-ed6e5ab6e5b5","createdDateTimeUtc":"2021-04-29T01:01:37.3669775Z","lastActionDateTimeUtc":"2021-04-29T01:01:43.6453162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7347be25-11d7-491c-a4c3-a08a0fa6d14c","createdDateTimeUtc":"2021-04-29T01:00:45.040936Z","lastActionDateTimeUtc":"2021-04-29T01:00:48.4592279Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a2dbe0ac-55e4-4835-98ab-9acec2b7229c","createdDateTimeUtc":"2021-04-29T01:00:42.4248871Z","lastActionDateTimeUtc":"2021-04-29T01:00:45.4438829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f06b05b7-6cd0-435c-bfd0-b6c5ad627241","createdDateTimeUtc":"2021-04-29T01:00:39.705892Z","lastActionDateTimeUtc":"2021-04-29T01:00:42.3967366Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3b03f32c-c5f2-469a-be2a-136fe4f05e4c","createdDateTimeUtc":"2021-04-29T01:00:36.9540541Z","lastActionDateTimeUtc":"2021-04-29T01:00:39.7695928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c47cc9a9-4fe4-4318-866a-827d89a85fa9","createdDateTimeUtc":"2021-04-29T01:00:34.3157593Z","lastActionDateTimeUtc":"2021-04-29T01:00:36.7272042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0810bff9-ddd2-4aec-aadf-98429c05175f","createdDateTimeUtc":"2021-04-29T01:00:31.4008192Z","lastActionDateTimeUtc":"2021-04-29T01:00:37.6981832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ffe7e011-fb3f-4698-a96d-c232473cb9e3","createdDateTimeUtc":"2021-04-29T00:59:46.8262296Z","lastActionDateTimeUtc":"2021-04-29T00:59:50.734367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d5b21fdf-de78-4f80-a257-c9cac1adb332","createdDateTimeUtc":"2021-04-29T00:59:44.1149067Z","lastActionDateTimeUtc":"2021-04-29T00:59:47.5892877Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a62bac3c-1497-46d8-bb71-27ea60045e63","createdDateTimeUtc":"2021-04-29T00:59:41.40418Z","lastActionDateTimeUtc":"2021-04-29T00:59:46.4803636Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93be0563-e468-4743-9178-f7be5b28ae4c","createdDateTimeUtc":"2021-04-29T00:59:38.8140288Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.9963367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59df2b7a-35b7-4afc-a61b-961ddcf3f0ff","createdDateTimeUtc":"2021-04-29T00:59:36.1098219Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3847496Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3137f503-35a8-4f3c-975c-57f93d5cf7c8","createdDateTimeUtc":"2021-04-29T00:59:33.4769411Z","lastActionDateTimeUtc":"2021-04-29T00:59:44.3709769Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d2cc347-015f-48aa-bc87-b32a683f5442","createdDateTimeUtc":"2021-04-29T00:53:33.4043808Z","lastActionDateTimeUtc":"2021-04-29T00:53:38.6488822Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"31f25ddd-2a18-4c0a-a3d5-005b3dcc93d0","createdDateTimeUtc":"2021-04-29T00:53:30.7374304Z","lastActionDateTimeUtc":"2021-04-29T00:53:33.8434128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a499c2ca-2e65-4016-9360-eb0460372e19","createdDateTimeUtc":"2021-04-29T00:53:28.101732Z","lastActionDateTimeUtc":"2021-04-29T00:53:30.8467358Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5ef9f9b4-360e-4cc2-9e37-ed14d0bb0312","createdDateTimeUtc":"2021-04-29T00:53:25.4464575Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.7817818Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1cdf3f5-3361-459f-a25d-8355f9263cc5","createdDateTimeUtc":"2021-04-29T00:53:22.8126742Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2649212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"2f5dd6b2-0f2e-4d49-bdfa-688e30d7fcf9","createdDateTimeUtc":"2021-04-29T00:53:18.2516802Z","lastActionDateTimeUtc":"2021-04-29T00:53:27.2822318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6afb60dc-f971-43da-9b19-2bb795a6bc9f","createdDateTimeUtc":"2021-04-29T00:50:26.3881605Z","lastActionDateTimeUtc":"2021-04-29T00:50:31.9180666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a27a1635-3357-4f4d-a525-5e706b189a38","createdDateTimeUtc":"2021-04-29T00:50:22.7254894Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.8256626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"296e59c9-ea06-44ac-9397-8f2f6b9f8639","createdDateTimeUtc":"2021-04-29T00:50:20.0399447Z","lastActionDateTimeUtc":"2021-04-29T00:50:24.2637981Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6c074b1e-4e47-49c4-ada7-923b928312be","createdDateTimeUtc":"2021-04-29T00:50:17.4403307Z","lastActionDateTimeUtc":"2021-04-29T00:50:20.9069791Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3eb57a01-6f3a-4be8-a41d-b0a02bee6276","createdDateTimeUtc":"2021-04-29T00:50:14.7975756Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.2980068Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7cffafd6-41cf-49ae-a0be-daf2ba699ca6","createdDateTimeUtc":"2021-04-29T00:50:12.20058Z","lastActionDateTimeUtc":"2021-04-29T00:50:17.3709162Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"364f2cac-0352-4d0a-9842-72ededc3025f","createdDateTimeUtc":"2021-04-29T00:47:56.0489328Z","lastActionDateTimeUtc":"2021-04-29T00:47:58.55252Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e1a2b29d-6cc0-4d77-94b8-53170fe6da34","createdDateTimeUtc":"2021-04-29T00:47:53.4881105Z","lastActionDateTimeUtc":"2021-04-29T00:47:55.5243768Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c7c351ba-6fc5-4df9-95c9-45edadcf35fd","createdDateTimeUtc":"2021-04-29T00:47:50.907327Z","lastActionDateTimeUtc":"2021-04-29T00:47:54.5072946Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8ea687bf-498d-4605-9aa1-8687885b9b00","createdDateTimeUtc":"2021-04-29T00:47:48.3880935Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.5058149Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d23e3e87-d27e-4e77-9b6c-a234a518f899","createdDateTimeUtc":"2021-04-29T00:47:45.5945375Z","lastActionDateTimeUtc":"2021-04-29T00:47:53.8017585Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ca30e22d-a067-4a85-b100-2f5ead9858b6","createdDateTimeUtc":"2021-04-29T00:47:42.9797867Z","lastActionDateTimeUtc":"2021-04-29T00:47:51.2489474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ecc9e939-74c8-4b14-a818-0e48254ce77e","createdDateTimeUtc":"2021-04-29T00:46:03.6155661Z","lastActionDateTimeUtc":"2021-04-29T00:46:06.0483276Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f36aa9b4-e4ff-4db3-a3fa-e00edafb83e0","createdDateTimeUtc":"2021-04-29T00:46:00.979936Z","lastActionDateTimeUtc":"2021-04-29T00:46:03.001381Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"57b5b486-a731-4862-845b-c4b4f3f1003f","createdDateTimeUtc":"2021-04-29T00:45:58.4023237Z","lastActionDateTimeUtc":"2021-04-29T00:46:01.9671815Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"119ca47f-9b2b-4322-a1ca-23a1273ab81e","createdDateTimeUtc":"2021-04-29T00:45:55.7617938Z","lastActionDateTimeUtc":"2021-04-29T00:45:58.8235968Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4a706711-d98e-4686-8c35-ef0ed8968ca9","createdDateTimeUtc":"2021-04-29T00:45:53.2229526Z","lastActionDateTimeUtc":"2021-04-29T00:45:56.325667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3306c409-e1cd-4725-aeed-569d4c759a87","createdDateTimeUtc":"2021-04-29T00:45:49.4359883Z","lastActionDateTimeUtc":"2021-04-29T00:45:51.9209905Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"43928b48-73ac-4b78-88c7-5c915ec328e5","createdDateTimeUtc":"2021-04-29T00:45:09.173353Z","lastActionDateTimeUtc":"2021-04-29T00:45:11.2483262Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f89ad2e2-881e-42d4-ba13-9edd25dcd1fc","createdDateTimeUtc":"2021-04-29T00:45:05.8178708Z","lastActionDateTimeUtc":"2021-04-29T00:45:08.2941321Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eecda542-0a0a-4929-a860-ba41301cb281","createdDateTimeUtc":"2021-04-29T00:45:03.1911084Z","lastActionDateTimeUtc":"2021-04-29T00:45:06.6908159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6342aaae-feab-4f4e-ae0f-745aca6c9126","createdDateTimeUtc":"2021-04-29T00:45:00.5412889Z","lastActionDateTimeUtc":"2021-04-29T00:45:03.6889883Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e700c383-c32b-409a-a382-ed56d5719f8b","createdDateTimeUtc":"2021-04-29T00:44:57.8902007Z","lastActionDateTimeUtc":"2021-04-29T00:45:00.6086463Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3f266baf-b36c-4213-9bcf-330c2a60622e","createdDateTimeUtc":"2021-04-29T00:44:55.279585Z","lastActionDateTimeUtc":"2021-04-29T00:44:58.0844428Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"77b6abac-53e2-427f-bfb7-e605a3dd823b","createdDateTimeUtc":"2021-04-29T00:43:50.3514057Z","lastActionDateTimeUtc":"2021-04-29T00:43:53.04957Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"dabbe9f9-a449-43af-997a-bb1e4a183f47","createdDateTimeUtc":"2021-04-29T00:43:47.0405704Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7519191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"5636dca3-55a4-41ae-b8c8-038e0dc73061","createdDateTimeUtc":"2021-04-29T00:43:43.8172579Z","lastActionDateTimeUtc":"2021-04-29T00:43:57.7209918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1555&$top=916&$maxpagesize=50"}' + headers: + apim-request-id: d3f28b39-a0b3-4035-91ad-f7d2cb6c72e3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:11 GMT + etag: '"36A711DC9FBD89533B786F8B4C7117A65A7470E2262F3B4F6E8E5126BEF36E18"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: d3f28b39-a0b3-4035-91ad-f7d2cb6c72e3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1505&$top=966&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1555&$top=916&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"4e9027f1-2998-4e5f-a5b1-75039cbf1456","createdDateTimeUtc":"2021-04-28T20:11:48.4324982Z","lastActionDateTimeUtc":"2021-04-28T20:11:51.6650667Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"376254b3-21b9-4c1c-8626-0ddeae499712","createdDateTimeUtc":"2021-04-28T20:11:45.8417352Z","lastActionDateTimeUtc":"2021-04-28T20:11:48.6349717Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2fdf31cc-1b0e-47b7-acb2-72d64235c54d","createdDateTimeUtc":"2021-04-28T20:11:43.2469475Z","lastActionDateTimeUtc":"2021-04-28T20:11:47.679469Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"457e8cd2-850b-4346-98ca-45bdacfb91d3","createdDateTimeUtc":"2021-04-28T20:09:48.8094021Z","lastActionDateTimeUtc":"2021-04-28T20:10:01.7398599Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fe2b3172-549f-40e4-80bc-d5ed723cc0e4","createdDateTimeUtc":"2021-04-28T20:09:46.0764001Z","lastActionDateTimeUtc":"2021-04-28T20:09:58.7272062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7da189c9-ee7e-433d-bd9d-22af10e3d14f","createdDateTimeUtc":"2021-04-28T20:09:43.3297544Z","lastActionDateTimeUtc":"2021-04-28T20:09:55.0496111Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3a914dd4-9da6-4eb2-b283-736df4be15cf","createdDateTimeUtc":"2021-04-28T20:00:08.6853923Z","lastActionDateTimeUtc":"2021-04-28T20:00:10.7956364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"0707949a-cafe-4225-a62f-2258a234d91a","createdDateTimeUtc":"2021-04-28T20:00:06.0598565Z","lastActionDateTimeUtc":"2021-04-28T20:00:09.9318984Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b477e2d2-b1b4-4d09-a17d-e48535b36465","createdDateTimeUtc":"2021-04-28T20:00:03.3798366Z","lastActionDateTimeUtc":"2021-04-28T20:00:06.722943Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9b968328-8278-4246-9d77-1248f55d5761","createdDateTimeUtc":"2021-04-28T20:00:00.719806Z","lastActionDateTimeUtc":"2021-04-28T20:00:03.7068117Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"affcc4d8-dc1c-4a57-9b08-31511193e7f5","createdDateTimeUtc":"2021-04-28T19:59:58.0591538Z","lastActionDateTimeUtc":"2021-04-28T20:00:08.0892243Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a76edd24-c76f-40bf-adb3-5c9c095cd843","createdDateTimeUtc":"2021-04-28T19:59:55.4740673Z","lastActionDateTimeUtc":"2021-04-28T20:00:00.1181699Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"17dcc196-acb1-459c-b9ed-35ef6dc6268d","createdDateTimeUtc":"2021-04-28T19:59:38.8604828Z","lastActionDateTimeUtc":"2021-04-28T19:59:41.8900289Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ce83196f-fd4a-41b6-a188-e5ea077bbd74","createdDateTimeUtc":"2021-04-28T19:59:36.3027511Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7362854Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"661d0612-2d59-456d-8a6b-db49364a39a6","createdDateTimeUtc":"2021-04-28T19:59:33.651471Z","lastActionDateTimeUtc":"2021-04-28T19:59:51.7763886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"518bf967-f27f-48d0-a22b-b62ffd7468dc","createdDateTimeUtc":"2021-04-28T19:53:50.0877823Z","lastActionDateTimeUtc":"2021-04-28T19:53:52.9778144Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa275711-76ad-48c5-bd15-b378c5571e91","createdDateTimeUtc":"2021-04-28T19:53:47.527881Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.8041128Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aa371760-0e7d-43b3-a9dc-c3ac00a33734","createdDateTimeUtc":"2021-04-28T19:53:44.9116683Z","lastActionDateTimeUtc":"2021-04-28T19:53:49.3484385Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d8747ae5-f48d-4642-8d47-da6f8cb18db4","createdDateTimeUtc":"2021-04-28T19:51:22.9772938Z","lastActionDateTimeUtc":"2021-04-28T19:51:25.8754166Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"30994bd6-6429-4e39-bd00-4a0a5d5bcdc0","createdDateTimeUtc":"2021-04-28T19:51:20.0604018Z","lastActionDateTimeUtc":"2021-04-28T19:51:22.8995611Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"78bd4c33-1d2d-41ca-b447-877dc31bc397","createdDateTimeUtc":"2021-04-28T19:51:17.1479396Z","lastActionDateTimeUtc":"2021-04-28T19:51:20.4351647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7c20931c-bba4-4b1e-aa86-c09c3feba84f","createdDateTimeUtc":"2021-04-28T19:51:14.2148145Z","lastActionDateTimeUtc":"2021-04-28T19:51:17.3107413Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"77717fce-9ee9-496e-90cb-5d45f0494447","createdDateTimeUtc":"2021-04-28T19:51:11.2589024Z","lastActionDateTimeUtc":"2021-04-28T19:51:14.8388353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"846a4b72-dba9-4ade-88ac-cfd801813027","createdDateTimeUtc":"2021-04-28T19:41:44.4847622Z","lastActionDateTimeUtc":"2021-04-28T19:41:48.1358081Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"66dab76a-11e5-4704-a453-224b3de778b8","createdDateTimeUtc":"2021-04-28T19:41:29.6629429Z","lastActionDateTimeUtc":"2021-04-28T19:41:33.0591108Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"64b224c5-890e-404c-b25f-03d91239117a","createdDateTimeUtc":"2021-04-28T19:41:11.5493115Z","lastActionDateTimeUtc":"2021-04-28T19:41:19.1092198Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1d65384f-bf18-4f33-b0e6-bde26b7cf784","createdDateTimeUtc":"2021-04-28T19:40:53.4351353Z","lastActionDateTimeUtc":"2021-04-28T19:41:06.8818062Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"94db1eed-7569-4731-b82e-ba322f447782","createdDateTimeUtc":"2021-04-28T19:40:40.1851267Z","lastActionDateTimeUtc":"2021-04-28T19:40:43.0093073Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"f4f5cfcc-55d6-4e48-bb41-5774435651cc","createdDateTimeUtc":"2021-04-28T19:38:42.0783315Z","lastActionDateTimeUtc":"2021-04-28T19:38:50.3156949Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4439dcae-ab89-43d1-94c3-0a6cdaaabb0f","createdDateTimeUtc":"2021-04-28T19:38:28.6314551Z","lastActionDateTimeUtc":"2021-04-28T19:38:32.8344852Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"0dc62be7-005b-458d-a14f-16498f1653ea","createdDateTimeUtc":"2021-04-28T19:38:10.732176Z","lastActionDateTimeUtc":"2021-04-28T19:38:17.6681512Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"59704bb8-ce78-4ca3-b754-e753c33e96fc","createdDateTimeUtc":"2021-04-28T19:37:58.0518339Z","lastActionDateTimeUtc":"2021-04-28T19:38:02.6065563Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2cc02db1-d80e-4409-bbbc-c87a746797e8","createdDateTimeUtc":"2021-04-28T19:37:42.5548016Z","lastActionDateTimeUtc":"2021-04-28T19:37:48.0186353Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"50f8d98f-3577-4f03-9268-ac64f02cfbbd","createdDateTimeUtc":"2021-04-28T19:35:15.6524449Z","lastActionDateTimeUtc":"2021-04-28T19:35:34.6115583Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f5704cf9-5c65-4f60-85ef-1aa8259f16c5","createdDateTimeUtc":"2021-04-28T19:35:11.6504512Z","lastActionDateTimeUtc":"2021-04-28T19:35:20.0612801Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"bdba3472-fed7-467b-9207-4968bd86f3c5","createdDateTimeUtc":"2021-04-28T19:35:08.2444447Z","lastActionDateTimeUtc":"2021-04-28T19:35:12.366936Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"e8c36f13-fe87-42fa-85f6-31a2050fb767","createdDateTimeUtc":"2021-04-28T19:35:04.7375197Z","lastActionDateTimeUtc":"2021-04-28T19:35:09.0972863Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":108}},{"id":"4a3308ac-306c-4c3f-94c9-951c1262caff","createdDateTimeUtc":"2021-04-28T19:35:00.935727Z","lastActionDateTimeUtc":"2021-04-28T19:35:07.5846372Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"d24d202b-948c-4cfc-8f22-9ac411c7e383","createdDateTimeUtc":"2021-04-28T19:34:39.0131225Z","lastActionDateTimeUtc":"2021-04-28T19:34:51.1398531Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"20bf23cb-c45d-4a44-9350-89301661a733","createdDateTimeUtc":"2021-04-28T19:34:35.7667646Z","lastActionDateTimeUtc":"2021-04-28T19:34:52.5378232Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":135}},{"id":"f118192e-6905-4e9b-815e-103405f4fcea","createdDateTimeUtc":"2021-04-28T19:34:32.3837586Z","lastActionDateTimeUtc":"2021-04-28T19:34:37.4954638Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2a307ede-f0bc-474d-94fe-92a1f414f154","createdDateTimeUtc":"2021-04-28T19:34:29.0878716Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.6780195Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0b96d4c8-2ea0-4370-bdb3-38ed5f48f95a","createdDateTimeUtc":"2021-04-28T19:34:25.6867376Z","lastActionDateTimeUtc":"2021-04-28T19:34:36.1066189Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ef4cf41f-b53d-4e93-9b36-faaa9be67191","createdDateTimeUtc":"2021-04-28T19:33:00.0913506Z","lastActionDateTimeUtc":"2021-04-28T19:33:12.5004431Z","status":"Succeeded","summary":{"total":5,"failed":0,"success":5,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"ab27c9d5-3a03-4885-a447-a047868dcd7d","createdDateTimeUtc":"2021-04-28T19:29:11.6113909Z","lastActionDateTimeUtc":"2021-04-28T19:30:00.4117322Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"18be61b6-f885-4f3a-8628-cbaa75ac2dc2","createdDateTimeUtc":"2021-04-28T19:22:25.1672368Z","lastActionDateTimeUtc":"2021-04-28T19:22:28.3386887Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"53f27441-9731-4ecb-9f33-3bdba0baaf4d","createdDateTimeUtc":"2021-04-28T19:22:22.4824849Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.77122Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"53d6c168-af38-4535-bb58-182652aa7355","createdDateTimeUtc":"2021-04-28T19:22:19.9141464Z","lastActionDateTimeUtc":"2021-04-28T19:22:27.7705681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d229e6c-dc5e-47e7-9f61-23278311cd4d","createdDateTimeUtc":"2021-04-28T19:21:53.4436074Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.3390812Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fcb4e7a2-2801-49d2-92c5-bc378c2d330c","createdDateTimeUtc":"2021-04-28T19:21:50.8597497Z","lastActionDateTimeUtc":"2021-04-28T19:21:55.8135999Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1605&$top=866&$maxpagesize=50"}' + headers: + apim-request-id: b5e4bf68-5ff7-405f-85a1-abb08965f6c2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:12 GMT + etag: '"241337E8230A187AB497A23092C31734158B186632B2D449D5EB62828CAD4C7A"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: b5e4bf68-5ff7-405f-85a1-abb08965f6c2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1555&$top=916&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1605&$top=866&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"b2d4a95c-d82b-4dad-89ef-c88e714a7067","createdDateTimeUtc":"2021-04-28T19:21:48.256145Z","lastActionDateTimeUtc":"2021-04-28T19:22:06.386903Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b0d436a8-34fb-4919-97ba-c5febfa74aea","createdDateTimeUtc":"2021-04-28T19:14:42.630211Z","lastActionDateTimeUtc":"2021-04-28T19:14:49.6154372Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c66a0a37-e051-4127-a0ba-e3044cd97227","createdDateTimeUtc":"2021-04-28T19:14:40.0099961Z","lastActionDateTimeUtc":"2021-04-28T19:14:42.2352208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"76ff1668-6dcb-4d2c-a496-2b97e30bfff6","createdDateTimeUtc":"2021-04-28T19:14:37.3909948Z","lastActionDateTimeUtc":"2021-04-28T19:14:48.0372384Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d710802-68f7-4d2d-a907-b372bd33d107","createdDateTimeUtc":"2021-04-28T16:34:33.1263686Z","lastActionDateTimeUtc":"2021-04-28T16:34:36.2647057Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"93bcf3de-e54d-44e5-97b1-a8ef9a4a045c","createdDateTimeUtc":"2021-04-28T16:34:18.0648353Z","lastActionDateTimeUtc":"2021-04-28T16:34:24.8760555Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6012045c-7523-4fdc-95b7-7ebbd50a179d","createdDateTimeUtc":"2021-04-28T16:34:06.7180191Z","lastActionDateTimeUtc":"2021-04-28T16:34:10.9814066Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9ad59967-853d-493a-8f66-f5caf582ca60","createdDateTimeUtc":"2021-04-28T16:33:53.4533608Z","lastActionDateTimeUtc":"2021-04-28T16:34:02.9100265Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"00a3b60c-bce1-4715-be5b-9ee5d7ee92fb","createdDateTimeUtc":"2021-04-28T16:33:36.575787Z","lastActionDateTimeUtc":"2021-04-28T16:33:40.8448038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"df81f56b-e3be-468a-9307-4e8856a7864d","createdDateTimeUtc":"2021-04-28T16:32:12.7910701Z","lastActionDateTimeUtc":"2021-04-28T16:32:20.3337626Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"b01666fb-a542-4801-b538-9538d88d3d12","createdDateTimeUtc":"2021-04-28T16:31:57.1917233Z","lastActionDateTimeUtc":"2021-04-28T16:32:04.6415779Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a729b672-fe19-41be-a50e-c8b8a69cce7a","createdDateTimeUtc":"2021-04-28T16:31:48.3429422Z","lastActionDateTimeUtc":"2021-04-28T16:31:50.8671886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"826345ad-bbe2-4e75-960f-6612102da2b4","createdDateTimeUtc":"2021-04-28T16:31:40.8219317Z","lastActionDateTimeUtc":"2021-04-28T16:31:45.5023923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4df300c5-30d0-4251-b552-a389f53bf2f0","createdDateTimeUtc":"2021-04-28T16:31:33.4499677Z","lastActionDateTimeUtc":"2021-04-28T16:31:38.1920497Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"aec5516a-189f-4302-be35-c669a84d9e1b","createdDateTimeUtc":"2021-04-28T16:31:30.3026164Z","lastActionDateTimeUtc":"2021-04-28T16:31:35.2073923Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2326bf00-bf26-47ff-8179-62800c5a812d","createdDateTimeUtc":"2021-04-28T16:31:27.6752011Z","lastActionDateTimeUtc":"2021-04-28T16:31:32.1701389Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"58e05645-11fe-42b3-bcd4-1d904baa5ade","createdDateTimeUtc":"2021-04-28T16:31:25.0691052Z","lastActionDateTimeUtc":"2021-04-28T16:31:27.4553367Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"56bd4520-0f3b-410f-8b80-4672143cf5d9","createdDateTimeUtc":"2021-04-28T16:31:21.9256761Z","lastActionDateTimeUtc":"2021-04-28T16:31:24.4234401Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ae2242b7-a337-4ac5-a28d-b9d7ab100416","createdDateTimeUtc":"2021-04-28T16:31:19.3016507Z","lastActionDateTimeUtc":"2021-04-28T16:31:21.3614215Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1545ad67-2d23-44d9-b9f9-d62f539fa7b1","createdDateTimeUtc":"2021-04-28T16:31:16.6138636Z","lastActionDateTimeUtc":"2021-04-28T16:31:19.6031356Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"342ca9e7-4140-41a6-9ab1-8504c798172d","createdDateTimeUtc":"2021-04-28T16:31:13.3016179Z","lastActionDateTimeUtc":"2021-04-28T16:31:18.9373956Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6ca95664-6ab2-4f5e-aa5f-363a9b37930c","createdDateTimeUtc":"2021-04-28T16:31:10.6644276Z","lastActionDateTimeUtc":"2021-04-28T16:31:13.5074578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"0c947538-c1b4-4374-ae3e-8933e93708ff","createdDateTimeUtc":"2021-04-28T16:31:08.0300076Z","lastActionDateTimeUtc":"2021-04-28T16:31:10.4804829Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"93971ab1-6ffe-427f-9848-be4725e0ea33","createdDateTimeUtc":"2021-04-28T16:31:05.4018496Z","lastActionDateTimeUtc":"2021-04-28T16:31:09.0339695Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f142a0b-3bd4-4809-b747-5c1b7bdce273","createdDateTimeUtc":"2021-04-28T16:31:02.820047Z","lastActionDateTimeUtc":"2021-04-28T16:31:06.4892226Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"d4747994-62a5-4cb9-9203-da36e33c4e2b","createdDateTimeUtc":"2021-04-28T16:30:59.6717328Z","lastActionDateTimeUtc":"2021-04-28T16:31:03.4082052Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7766dc19-672b-4e2d-bc9b-1a55a80bb87e","createdDateTimeUtc":"2021-04-28T16:30:57.0834821Z","lastActionDateTimeUtc":"2021-04-28T16:31:00.3366737Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"86c34b2e-ccf2-497c-8322-86e51a1040d8","createdDateTimeUtc":"2021-04-28T16:30:54.3337148Z","lastActionDateTimeUtc":"2021-04-28T16:30:57.4093694Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6a090146-7683-44cb-a98b-f6d836b84e03","createdDateTimeUtc":"2021-04-28T16:30:51.7266366Z","lastActionDateTimeUtc":"2021-04-28T16:30:59.7206148Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6bff9fb0-b351-4ad7-b402-a5ed8e1fbe09","createdDateTimeUtc":"2021-04-28T16:30:49.0900088Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.2073173Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"4d72ef57-6856-4e02-88c6-6a1a7ed29ae9","createdDateTimeUtc":"2021-04-28T16:30:45.6641153Z","lastActionDateTimeUtc":"2021-04-28T16:30:52.751633Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7866819f-d8e6-4f55-99f2-9b17402d8c9b","createdDateTimeUtc":"2021-04-28T16:30:43.0575475Z","lastActionDateTimeUtc":"2021-04-28T16:30:51.7148375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"3df3e19b-1c5d-4efe-988a-fc4fcb7c828a","createdDateTimeUtc":"2021-04-28T16:30:40.4324194Z","lastActionDateTimeUtc":"2021-04-28T16:30:53.6734502Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"19488f28-b93d-47f0-ada1-dda681284e4b","createdDateTimeUtc":"2021-04-28T16:30:32.5332334Z","lastActionDateTimeUtc":"2021-04-28T16:30:36.7555972Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"a3af59a2-3952-4d32-994d-835055f5ecab","createdDateTimeUtc":"2021-04-28T16:30:29.7757493Z","lastActionDateTimeUtc":"2021-04-28T16:30:33.6273326Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"02d3ce35-3b5c-4552-8afa-787bb9f94add","createdDateTimeUtc":"2021-04-28T16:30:27.1092092Z","lastActionDateTimeUtc":"2021-04-28T16:30:30.6171635Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"98f26fad-5124-4ad7-aa86-ff926dc510a0","createdDateTimeUtc":"2021-04-28T16:30:24.4820973Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.5324661Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"eb5bf631-13ed-4a98-9d37-93b7c6ea00ae","createdDateTimeUtc":"2021-04-28T16:30:21.9263403Z","lastActionDateTimeUtc":"2021-04-28T16:30:29.6423975Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"4e5fb185-d585-481e-9fe6-f485698c8577","createdDateTimeUtc":"2021-04-28T16:30:19.1841158Z","lastActionDateTimeUtc":"2021-04-28T16:30:21.3075806Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9bdad082-1c0b-485a-9bab-8075165aed02","createdDateTimeUtc":"2021-04-28T16:30:15.8177274Z","lastActionDateTimeUtc":"2021-04-28T16:30:20.3607374Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c059454f-63cd-4c04-a718-b56560944ba7","createdDateTimeUtc":"2021-04-28T16:30:13.2401163Z","lastActionDateTimeUtc":"2021-04-28T16:30:16.380192Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"e6d9ecae-1897-4841-90db-bb61a81d8959","createdDateTimeUtc":"2021-04-28T16:30:10.6760704Z","lastActionDateTimeUtc":"2021-04-28T16:30:18.4813383Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"8083b8bf-f1b9-44d6-b530-dbd6982ba184","createdDateTimeUtc":"2021-04-28T16:30:02.3929715Z","lastActionDateTimeUtc":"2021-04-28T16:30:08.1522402Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"fbb92c53-1764-4ef8-b918-2540a822eac4","createdDateTimeUtc":"2021-04-28T16:29:59.7479799Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.601647Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"32458096-34fd-4b6c-9c3b-32769a81924d","createdDateTimeUtc":"2021-04-28T16:29:57.0353016Z","lastActionDateTimeUtc":"2021-04-28T16:30:07.6007495Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d11aff7f-ed30-4f6b-a4ab-ee2c710c6d87","createdDateTimeUtc":"2021-04-28T15:40:29.075588Z","lastActionDateTimeUtc":"2021-04-28T15:40:33.3686501Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7f4706e4-a711-4b3a-807b-9389605fda80","createdDateTimeUtc":"2021-04-28T15:40:17.0108149Z","lastActionDateTimeUtc":"2021-04-28T15:40:25.6646651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"9d1461b8-2696-4a16-a6ce-95486e487739","createdDateTimeUtc":"2021-04-28T15:40:01.5384131Z","lastActionDateTimeUtc":"2021-04-28T15:40:08.147447Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"7135df59-bc6f-4bbc-8d5a-5a3092dee240","createdDateTimeUtc":"2021-04-28T15:39:50.3963263Z","lastActionDateTimeUtc":"2021-04-28T15:39:55.8131042Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"c4bb7cb1-072f-4113-81d6-a953aaa8a134","createdDateTimeUtc":"2021-04-28T15:39:38.3779914Z","lastActionDateTimeUtc":"2021-04-28T15:39:47.533666Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1655&$top=816&$maxpagesize=50"}' + headers: + apim-request-id: ab33ebea-d845-43d5-a3c7-dcac278d7ef4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:12 GMT + etag: '"02816BE3071AA32B8F5710AB8D2C3E7C8E1F9232B6F68723A1EB87F0FF3D0573"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ab33ebea-d845-43d5-a3c7-dcac278d7ef4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1605&$top=866&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1655&$top=816&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"f896a81f-8b27-4a16-9441-7d8beeb1fae8","createdDateTimeUtc":"2021-04-28T15:33:32.589135Z","lastActionDateTimeUtc":"2021-04-28T15:33:34.8445967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6da88035-8088-456d-9457-87d3c26f53f3","createdDateTimeUtc":"2021-04-28T15:33:21.7204856Z","lastActionDateTimeUtc":"2021-04-28T15:33:27.768928Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"723855b4-5c56-4ea8-866c-31d5ec0e33ef","createdDateTimeUtc":"2021-04-28T15:33:10.2975673Z","lastActionDateTimeUtc":"2021-04-28T15:33:16.1083558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"fad4f8b5-95e7-4f68-aaa3-5f54b3d9875a","createdDateTimeUtc":"2021-04-28T15:24:38.3233526Z","lastActionDateTimeUtc":"2021-04-28T15:24:40.1339773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"344efcf1-25a1-4a3a-9d29-7e9c79136650","createdDateTimeUtc":"2021-04-28T15:24:30.4531723Z","lastActionDateTimeUtc":"2021-04-28T15:24:34.4151173Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bab4165d-babc-4c46-a438-dd5e206e3e8a","createdDateTimeUtc":"2021-04-28T15:24:23.257666Z","lastActionDateTimeUtc":"2021-04-28T15:24:26.0601723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d9fcb7e-6e4e-43d6-b220-13b69e4c0ae2","createdDateTimeUtc":"2021-04-28T15:24:16.1535955Z","lastActionDateTimeUtc":"2021-04-28T15:24:18.9833168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed99fb06-2799-4c41-86ab-4b55fc0e6401","createdDateTimeUtc":"2021-04-28T15:24:10.14796Z","lastActionDateTimeUtc":"2021-04-28T15:24:12.1381936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c0d65a1e-9075-449f-b51c-687ccca1136e","createdDateTimeUtc":"2021-04-28T15:24:00.6182414Z","lastActionDateTimeUtc":"2021-04-28T15:24:04.4690268Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19510726-0994-4a55-b1a9-d20ee80f6c83","createdDateTimeUtc":"2021-04-28T15:16:32.5238696Z","lastActionDateTimeUtc":"2021-04-28T15:16:36.6956356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8b1a9f46-bec1-4660-bcf9-04923e80a4ab","createdDateTimeUtc":"2021-04-28T15:16:18.7486548Z","lastActionDateTimeUtc":"2021-04-28T15:16:28.9726936Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66cc8ab9-3990-43c2-bb50-de4db9dbea6b","createdDateTimeUtc":"2021-04-28T15:16:04.4493551Z","lastActionDateTimeUtc":"2021-04-28T15:16:08.5233612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"732a2962-e8e6-455b-8443-ab5f789af9d0","createdDateTimeUtc":"2021-04-28T15:15:49.9829921Z","lastActionDateTimeUtc":"2021-04-28T15:15:56.5146579Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae997b7f-0462-404c-8921-ced9c680a093","createdDateTimeUtc":"2021-04-28T15:15:37.0869549Z","lastActionDateTimeUtc":"2021-04-28T15:15:43.5067526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14a7371b-250c-4164-a12e-f2e82698205d","createdDateTimeUtc":"2021-04-28T15:15:26.1872362Z","lastActionDateTimeUtc":"2021-04-28T15:15:33.9405899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d65abdc2-fb84-4a69-bce3-aaf51ad327b6","createdDateTimeUtc":"2021-04-28T04:18:19.6897204Z","lastActionDateTimeUtc":"2021-04-28T04:18:29.0421602Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e0caa337-8b47-4a19-b47c-1d84a5493f39","createdDateTimeUtc":"2021-04-28T04:18:06.6181545Z","lastActionDateTimeUtc":"2021-04-28T04:18:17.222471Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3f0c1da6-a45c-4f8e-8612-09e7723019aa","createdDateTimeUtc":"2021-04-28T04:17:54.8021568Z","lastActionDateTimeUtc":"2021-04-28T04:18:03.9945565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fc2e4272-41db-4b37-9bac-060946df8aae","createdDateTimeUtc":"2021-04-28T04:17:41.8303946Z","lastActionDateTimeUtc":"2021-04-28T04:17:52.1981461Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab2f9ece-03c7-4526-925a-d54e19a2c9b0","createdDateTimeUtc":"2021-04-28T04:17:29.9550048Z","lastActionDateTimeUtc":"2021-04-28T04:17:38.6817672Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c460c94-5b41-4244-8c01-29bb76c91f1a","createdDateTimeUtc":"2021-04-28T04:17:14.6069154Z","lastActionDateTimeUtc":"2021-04-28T04:17:27.1432906Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b46236a9-efdf-47da-90a0-7d7c3d58bfc0","createdDateTimeUtc":"2021-04-28T04:15:54.8501021Z","lastActionDateTimeUtc":"2021-04-28T04:16:03.5556374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"20a08844-6945-43eb-9093-6571ed309eaf","createdDateTimeUtc":"2021-04-28T04:15:41.7780845Z","lastActionDateTimeUtc":"2021-04-28T04:15:51.9945531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"814b7077-0d2a-4343-8701-39f55fb2191f","createdDateTimeUtc":"2021-04-28T04:15:29.956984Z","lastActionDateTimeUtc":"2021-04-28T04:15:38.4774237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1b5dbeb5-ad79-48a9-bf57-4e46756aed6a","createdDateTimeUtc":"2021-04-28T04:15:14.2447939Z","lastActionDateTimeUtc":"2021-04-28T04:15:26.9793373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df32f816-320c-4f6e-a672-251c8a1c7e54","createdDateTimeUtc":"2021-04-28T04:15:00.1409234Z","lastActionDateTimeUtc":"2021-04-28T04:15:11.9370097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db602e64-fefd-49f4-ba08-6f54d1b4a7e8","createdDateTimeUtc":"2021-04-28T04:14:50.7081577Z","lastActionDateTimeUtc":"2021-04-28T04:14:56.9364786Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b39bc754-7034-4acc-ba96-751bb55b5bcc","createdDateTimeUtc":"2021-04-28T04:13:34.6369197Z","lastActionDateTimeUtc":"2021-04-28T04:13:43.2733052Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"35d04ea8-6923-4783-8b42-534ec1a96c14","createdDateTimeUtc":"2021-04-28T04:13:21.719995Z","lastActionDateTimeUtc":"2021-04-28T04:13:31.7335375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53086df5-adb7-4049-954c-f119d6d18614","createdDateTimeUtc":"2021-04-28T04:13:09.9770234Z","lastActionDateTimeUtc":"2021-04-28T04:13:18.2419905Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea13f0d9-377d-47e5-9ed0-0b1ebf55cff4","createdDateTimeUtc":"2021-04-28T04:12:54.7745573Z","lastActionDateTimeUtc":"2021-04-28T04:13:06.7208413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8f4601ba-0ff0-46f6-afde-0b1dd3dfa1be","createdDateTimeUtc":"2021-04-28T04:12:39.5143692Z","lastActionDateTimeUtc":"2021-04-28T04:12:51.6690059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ccafe6f-ed3c-4dec-b57c-4f61df9902d0","createdDateTimeUtc":"2021-04-28T04:12:15.8006805Z","lastActionDateTimeUtc":"2021-04-28T04:12:36.6785152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3eda141-fc14-4a6a-aee3-237e37b6b6e5","createdDateTimeUtc":"2021-04-28T04:12:07.8526776Z","lastActionDateTimeUtc":"2021-04-28T04:12:11.6068167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"87f94b2e-3629-437d-8034-43155bade911","createdDateTimeUtc":"2021-04-28T04:12:00.6724279Z","lastActionDateTimeUtc":"2021-04-28T04:12:04.5909679Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"96654872-773f-4869-86a7-05370fc7607e","createdDateTimeUtc":"2021-04-28T04:11:54.6050613Z","lastActionDateTimeUtc":"2021-04-28T04:11:57.5579296Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9efd8322-7a59-4ea2-ac4f-78e63ecc4ca0","createdDateTimeUtc":"2021-04-28T04:11:46.7364646Z","lastActionDateTimeUtc":"2021-04-28T04:11:50.5632021Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5f1af1e-c710-400a-a1f3-29d1b03c718c","createdDateTimeUtc":"2021-04-28T04:11:39.5117493Z","lastActionDateTimeUtc":"2021-04-28T04:11:43.5096687Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84247e22-b2c6-4ec8-890a-a1ddd6eaa14b","createdDateTimeUtc":"2021-04-28T04:11:32.2391444Z","lastActionDateTimeUtc":"2021-04-28T04:11:36.5166397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5fc078cf-420f-4c73-9b5d-61a29ab2e04b","createdDateTimeUtc":"2021-04-28T04:11:28.9629997Z","lastActionDateTimeUtc":"2021-04-28T04:11:33.4679092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6d58b7af-51ed-4d37-a0e6-fc7fd46fe416","createdDateTimeUtc":"2021-04-28T04:11:26.576814Z","lastActionDateTimeUtc":"2021-04-28T04:11:30.4472964Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1a9ad12-ba15-4f04-8028-5f6f77aaedd1","createdDateTimeUtc":"2021-04-28T04:11:24.1499206Z","lastActionDateTimeUtc":"2021-04-28T04:11:27.4240599Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"454f6dad-1b3d-4498-9ab4-9379126dba58","createdDateTimeUtc":"2021-04-28T04:11:21.7080625Z","lastActionDateTimeUtc":"2021-04-28T04:11:26.4677113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcb81d2e-4502-4c78-862c-61299cb6ed17","createdDateTimeUtc":"2021-04-28T04:11:19.3025649Z","lastActionDateTimeUtc":"2021-04-28T04:11:23.4592867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2352bce4-d0c4-4f47-b551-5210227a05b9","createdDateTimeUtc":"2021-04-28T04:11:16.8654376Z","lastActionDateTimeUtc":"2021-04-28T04:11:20.427656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"295652ec-9913-4bfc-b474-9431f7dd1af9","createdDateTimeUtc":"2021-04-28T04:11:14.4663587Z","lastActionDateTimeUtc":"2021-04-28T04:11:19.3652421Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"788b87cb-0774-4b9c-94f1-93aca3b5b03a","createdDateTimeUtc":"2021-04-28T04:11:12.011383Z","lastActionDateTimeUtc":"2021-04-28T04:11:16.4747876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e27cc3a1-8d19-4336-ad9b-78b922cc4584","createdDateTimeUtc":"2021-04-28T04:11:08.6144701Z","lastActionDateTimeUtc":"2021-04-28T04:11:13.4746416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc710f3c-98fe-43a9-a5fe-f989317c4d6c","createdDateTimeUtc":"2021-04-28T04:11:06.184502Z","lastActionDateTimeUtc":"2021-04-28T04:11:10.3964079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1778bcbe-9e25-4a3f-99e6-a6a725b94160","createdDateTimeUtc":"2021-04-28T04:11:03.800037Z","lastActionDateTimeUtc":"2021-04-28T04:11:07.3650571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1705&$top=766&$maxpagesize=50"}' + headers: + apim-request-id: 9726fc17-4a4a-41a1-b77a-1200737c08df + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:12 GMT + etag: '"FB1D1809DE24C8335AA5B3B9CD405ED1C4D5DC2EB9888A68BA5D530400143716"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9726fc17-4a4a-41a1-b77a-1200737c08df + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1655&$top=816&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1705&$top=766&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"4e854eca-9551-4897-9282-361cce59a4bd","createdDateTimeUtc":"2021-04-28T04:11:01.4622623Z","lastActionDateTimeUtc":"2021-04-28T04:11:04.318233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"edcea856-95e3-4591-b2b8-5c02885931f5","createdDateTimeUtc":"2021-04-28T04:10:59.0933319Z","lastActionDateTimeUtc":"2021-04-28T04:11:03.3492926Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42f813df-004d-4ad5-92d3-ecbec351b1a9","createdDateTimeUtc":"2021-04-28T04:10:56.6857563Z","lastActionDateTimeUtc":"2021-04-28T04:11:00.4121868Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e54f79ac-4078-4226-b2ed-1980b15a6f51","createdDateTimeUtc":"2021-04-28T04:10:54.3050759Z","lastActionDateTimeUtc":"2021-04-28T04:10:57.318032Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9321b8f-7b5d-4b53-ab23-b088ada885c5","createdDateTimeUtc":"2021-04-28T04:10:51.746454Z","lastActionDateTimeUtc":"2021-04-28T04:10:56.3506287Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d5bfb52-bd96-433a-adad-55bf0e03d981","createdDateTimeUtc":"2021-04-28T04:10:49.2969487Z","lastActionDateTimeUtc":"2021-04-28T04:10:53.2869155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e1a68a45-175a-475b-8515-1d078bf89c3b","createdDateTimeUtc":"2021-04-28T04:10:46.7814826Z","lastActionDateTimeUtc":"2021-04-28T04:10:50.2556293Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69cd63c5-8128-4132-9de5-d39a7df0649f","createdDateTimeUtc":"2021-04-28T04:10:44.3283693Z","lastActionDateTimeUtc":"2021-04-28T04:10:47.1620146Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"df728369-9e12-493e-a9bb-0e5bd5b7ea9e","createdDateTimeUtc":"2021-04-28T04:10:41.6259078Z","lastActionDateTimeUtc":"2021-04-28T04:10:46.3180477Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b103b9d-f05b-4bfb-9931-e6094c7f1451","createdDateTimeUtc":"2021-04-28T04:10:38.3935373Z","lastActionDateTimeUtc":"2021-04-28T04:10:43.1931412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21b88d14-eaf4-4ead-8068-83fb5fb71536","createdDateTimeUtc":"2021-04-28T04:10:35.9793463Z","lastActionDateTimeUtc":"2021-04-28T04:10:40.1461051Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9252ca35-1d2e-45b8-b55a-9e2b2baa05eb","createdDateTimeUtc":"2021-04-28T04:10:33.6159533Z","lastActionDateTimeUtc":"2021-04-28T04:10:37.0990832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c699457d-da9b-4960-a41b-82103c0d0296","createdDateTimeUtc":"2021-04-28T04:10:31.2213126Z","lastActionDateTimeUtc":"2021-04-28T04:10:36.0678777Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec7fedaf-9cbc-4ac6-8b5b-d6ca94c26148","createdDateTimeUtc":"2021-04-28T04:10:28.6949039Z","lastActionDateTimeUtc":"2021-04-28T04:10:33.0835096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e38360f-86b2-46eb-81b5-62e62e1e6757","createdDateTimeUtc":"2021-04-28T04:10:26.226356Z","lastActionDateTimeUtc":"2021-04-28T04:10:30.0058655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e168f7d5-08f3-48ea-9350-bece3e475669","createdDateTimeUtc":"2021-04-28T04:10:23.7976673Z","lastActionDateTimeUtc":"2021-04-28T04:10:28.9745019Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72e988e5-f76a-4e61-8332-e923672df973","createdDateTimeUtc":"2021-04-28T04:10:21.3924657Z","lastActionDateTimeUtc":"2021-04-28T04:10:25.9898542Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"32db69db-7e77-49c4-8e3c-b043ba3c8b05","createdDateTimeUtc":"2021-04-28T04:10:19.0005112Z","lastActionDateTimeUtc":"2021-04-28T04:10:22.9427261Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"91fc3ee5-bc96-4f20-b937-1ffb25bc7551","createdDateTimeUtc":"2021-04-28T04:10:16.5788293Z","lastActionDateTimeUtc":"2021-04-28T04:10:19.8960383Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"067763e6-7824-4d57-8c38-8b9a0764c6aa","createdDateTimeUtc":"2021-04-28T04:10:13.9074236Z","lastActionDateTimeUtc":"2021-04-28T04:10:16.9115791Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f9406c9-0f38-40e9-a3dc-f84803d47f55","createdDateTimeUtc":"2021-04-28T04:10:11.4807315Z","lastActionDateTimeUtc":"2021-04-28T04:10:15.8646057Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72865b80-a7bc-40ba-b0ea-ec6ff8c9ed0b","createdDateTimeUtc":"2021-04-28T04:10:09.0470859Z","lastActionDateTimeUtc":"2021-04-28T04:10:12.8645645Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2bb30f2-5393-4e23-8c78-33e79286adba","createdDateTimeUtc":"2021-04-28T04:10:06.6562402Z","lastActionDateTimeUtc":"2021-04-28T04:10:09.8176153Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4133ba40-075a-4ba5-bbec-9cf223814c10","createdDateTimeUtc":"2021-04-28T04:10:04.2440275Z","lastActionDateTimeUtc":"2021-04-28T04:10:08.9745931Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aba0b995-4785-456c-8997-e7aad96bead8","createdDateTimeUtc":"2021-04-28T04:10:01.8633071Z","lastActionDateTimeUtc":"2021-04-28T04:10:05.7872223Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9500cc7e-fcd3-4837-a9c9-03b199104f56","createdDateTimeUtc":"2021-04-28T04:09:59.5546309Z","lastActionDateTimeUtc":"2021-04-28T04:10:02.7239416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9fae9ad2-d13a-45c2-9600-f1f2a070131b","createdDateTimeUtc":"2021-04-28T04:09:57.1594287Z","lastActionDateTimeUtc":"2021-04-28T04:10:01.797253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28335ba1-70ea-4ccd-83f7-b09dac992a77","createdDateTimeUtc":"2021-04-28T04:09:54.800311Z","lastActionDateTimeUtc":"2021-04-28T04:09:58.6302269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4d230e1e-5e81-4adc-9c8c-821ece0415e6","createdDateTimeUtc":"2021-04-28T04:09:52.3584888Z","lastActionDateTimeUtc":"2021-04-28T04:09:55.6144832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f7ee1864-51be-4056-9755-3978d99e0966","createdDateTimeUtc":"2021-04-28T04:09:49.2136146Z","lastActionDateTimeUtc":"2021-04-28T04:09:52.6146464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99e3c4d4-7352-42c2-b649-56d8121168c3","createdDateTimeUtc":"2021-04-28T04:09:46.8062329Z","lastActionDateTimeUtc":"2021-04-28T04:09:51.5987359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"95711be5-b334-4343-b813-ff639d236ac8","createdDateTimeUtc":"2021-04-28T04:09:44.4344137Z","lastActionDateTimeUtc":"2021-04-28T04:09:48.5674112Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b807665-725b-4667-934c-aebac61f5746","createdDateTimeUtc":"2021-04-28T04:09:42.072266Z","lastActionDateTimeUtc":"2021-04-28T04:09:45.5676431Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"74ab2091-c62f-4fff-b5f6-79019f08b498","createdDateTimeUtc":"2021-04-28T04:09:39.6267882Z","lastActionDateTimeUtc":"2021-04-28T04:09:42.5673418Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e13835da-08a2-4bb3-af03-a58437f3745a","createdDateTimeUtc":"2021-04-28T04:09:37.2622461Z","lastActionDateTimeUtc":"2021-04-28T04:09:41.520428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b32f00b3-9336-4e0f-9ccd-5c4ed20ab70d","createdDateTimeUtc":"2021-04-28T04:09:34.2286197Z","lastActionDateTimeUtc":"2021-04-28T04:09:40.5521314Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc9e8-e0b2-4fa1-accf-06506cbd61e6","createdDateTimeUtc":"2021-04-28T04:09:31.8941913Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8716536Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c10499-4fbe-4919-a5a5-f1032af45add","createdDateTimeUtc":"2021-04-28T04:09:29.5725327Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.8954552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"deda90a9-63d6-4f3e-a2f4-e9f713f4f8a0","createdDateTimeUtc":"2021-04-28T04:09:27.10393Z","lastActionDateTimeUtc":"2021-04-28T04:09:37.442232Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1c73080-e2ac-44c9-aa94-ba29bca234d3","createdDateTimeUtc":"2021-04-28T04:09:15.7253271Z","lastActionDateTimeUtc":"2021-04-28T04:09:23.0516689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"68f0af64-c06c-4d1a-9f20-bab919c0992a","createdDateTimeUtc":"2021-04-28T04:09:00.4051448Z","lastActionDateTimeUtc":"2021-04-28T04:09:12.3118884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81944560-de81-4b7d-b904-0babc4db3764","createdDateTimeUtc":"2021-04-28T04:08:45.173851Z","lastActionDateTimeUtc":"2021-04-28T04:08:57.98897Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1579c25-7c1e-4fba-91fe-d1b309973f5f","createdDateTimeUtc":"2021-04-28T04:08:25.9082715Z","lastActionDateTimeUtc":"2021-04-28T04:08:37.2808808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c601780-7aab-4826-bb52-40a5e83a12ca","createdDateTimeUtc":"2021-04-28T04:08:15.1235321Z","lastActionDateTimeUtc":"2021-04-28T04:08:23.0040972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14834c2b-4e69-4256-926c-2fb298d6e810","createdDateTimeUtc":"2021-04-28T04:08:00.7915047Z","lastActionDateTimeUtc":"2021-04-28T04:08:12.2657911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"450728b8-0c63-448a-b6fa-1b9175f833e1","createdDateTimeUtc":"2021-04-28T04:07:50.147772Z","lastActionDateTimeUtc":"2021-04-28T04:07:57.8789346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7328984-4829-46cd-accf-24a56e1a1cc7","createdDateTimeUtc":"2021-04-28T04:07:36.0165195Z","lastActionDateTimeUtc":"2021-04-28T04:07:47.0816682Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"48a555a5-2d19-4e62-b5f5-78f63c5e2ab4","createdDateTimeUtc":"2021-04-28T04:07:25.451851Z","lastActionDateTimeUtc":"2021-04-28T04:07:32.8472708Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4770679c-adea-4af3-8211-f9e2deece0dd","createdDateTimeUtc":"2021-04-28T04:07:10.437943Z","lastActionDateTimeUtc":"2021-04-28T04:07:22.0395253Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d577f13c-6983-48e2-a714-c75bcad89ec6","createdDateTimeUtc":"2021-04-28T04:06:55.0879699Z","lastActionDateTimeUtc":"2021-04-28T04:07:06.9970389Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1755&$top=716&$maxpagesize=50"}' + headers: + apim-request-id: 78c4741f-6f85-4f55-979b-6dde32822c29 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:13 GMT + etag: '"B827AC985EEA412022BD8BA4802F6215384EF2DC2E354779E8BDB6B43C0D60AA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 78c4741f-6f85-4f55-979b-6dde32822c29 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1705&$top=766&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1755&$top=716&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"90226322-c852-4ed1-a573-7635ce977273","createdDateTimeUtc":"2021-04-28T04:06:45.6783394Z","lastActionDateTimeUtc":"2021-04-28T04:06:51.9875372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e610f48-e577-496f-a4c2-a7816768c4e7","createdDateTimeUtc":"2021-04-28T04:06:30.4129196Z","lastActionDateTimeUtc":"2021-04-28T04:06:37.7374829Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f68b1677-5887-45a8-b8f5-33a789975d95","createdDateTimeUtc":"2021-04-28T04:06:16.2509204Z","lastActionDateTimeUtc":"2021-04-28T04:06:26.9251743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"520dd3f7-39e5-4551-9261-c6dbaa340f05","createdDateTimeUtc":"2021-04-28T04:06:01.8441831Z","lastActionDateTimeUtc":"2021-04-28T04:06:12.7216303Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76f18a82-ef10-4682-a863-98adc97325f8","createdDateTimeUtc":"2021-04-28T04:04:49.6041543Z","lastActionDateTimeUtc":"2021-04-28T04:05:01.9086571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"220bd597-ca53-4fc3-8e75-4ad252d946ca","createdDateTimeUtc":"2021-04-28T04:04:35.4995946Z","lastActionDateTimeUtc":"2021-04-28T04:04:46.7686256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55758161-885f-44c4-ad0f-554586e4d9a5","createdDateTimeUtc":"2021-04-28T04:04:19.1029489Z","lastActionDateTimeUtc":"2021-04-28T04:04:32.1736919Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d3e9e8e-1c3c-4869-ab71-47f628d2b3cf","createdDateTimeUtc":"2021-04-28T04:01:39.9108311Z","lastActionDateTimeUtc":"2021-04-28T04:01:47.3910643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"39648743-9ce5-4e1d-98a2-b4507f6188c6","createdDateTimeUtc":"2021-04-28T04:01:26.2049862Z","lastActionDateTimeUtc":"2021-04-28T04:01:36.6412189Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b75c2a8b-9849-4d25-9bf1-6161846cf76a","createdDateTimeUtc":"2021-04-28T04:01:16.9640328Z","lastActionDateTimeUtc":"2021-04-28T04:01:22.7815367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b26188b1-e870-48fd-b8c1-f08a924afbbd","createdDateTimeUtc":"2021-04-28T03:53:29.8304792Z","lastActionDateTimeUtc":"2021-04-28T03:53:41.0423857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3b5e2a53-5be9-4287-8750-30260c2444d2","createdDateTimeUtc":"2021-04-28T03:53:19.8354243Z","lastActionDateTimeUtc":"2021-04-28T03:53:26.8701447Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef18844b-4275-44f9-ab39-ed3007ef3484","createdDateTimeUtc":"2021-04-28T03:53:02.4941522Z","lastActionDateTimeUtc":"2021-04-28T03:53:16.4170429Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"16598fdd-b3b2-4875-bd85-90efc518c426","createdDateTimeUtc":"2021-04-28T03:34:32.9940983Z","lastActionDateTimeUtc":"2021-04-28T03:34:40.8430159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aadf5210-53f3-44c1-ab2b-ce36f08e079b","createdDateTimeUtc":"2021-04-28T03:34:19.5188365Z","lastActionDateTimeUtc":"2021-04-28T03:34:29.8589059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b66611da-73cb-44ae-bde9-1266900b0507","createdDateTimeUtc":"2021-04-28T03:34:08.7387298Z","lastActionDateTimeUtc":"2021-04-28T03:34:16.2181624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8618297-e08f-4bb5-ad26-6bfa13f7355e","createdDateTimeUtc":"2021-04-28T02:36:31.0359222Z","lastActionDateTimeUtc":"2021-04-28T02:36:41.2840072Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25fde0ca-427e-495d-9ba2-4df3028b70c4","createdDateTimeUtc":"2021-04-28T02:36:19.1765378Z","lastActionDateTimeUtc":"2021-04-28T02:36:27.5577442Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee2c5020-55b4-47c0-ba88-8b0b8ecf2788","createdDateTimeUtc":"2021-04-28T02:36:05.0177541Z","lastActionDateTimeUtc":"2021-04-28T02:36:16.284689Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9ac3100-e8cb-467a-9ce9-6767bf08fe01","createdDateTimeUtc":"2021-04-28T02:34:24.2757794Z","lastActionDateTimeUtc":"2021-04-28T02:34:32.4158857Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d147cf8-7178-4332-86cc-6f601cb23874","createdDateTimeUtc":"2021-04-28T02:34:10.8378804Z","lastActionDateTimeUtc":"2021-04-28T02:34:21.2592702Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e51d6c28-8efa-4a63-930d-07dffe88b5c8","createdDateTimeUtc":"2021-04-28T02:33:54.0288037Z","lastActionDateTimeUtc":"2021-04-28T02:34:07.7749566Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9826343-4ec3-4a99-8253-714081443d04","createdDateTimeUtc":"2021-04-28T02:29:25.4483045Z","lastActionDateTimeUtc":"2021-04-28T02:29:35.8661989Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea056125-6300-4d51-89fe-bfb2547658cd","createdDateTimeUtc":"2021-04-28T02:29:14.338418Z","lastActionDateTimeUtc":"2021-04-28T02:29:21.9973834Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fda068f7-5e1e-40c9-a726-15d81440526a","createdDateTimeUtc":"2021-04-28T02:28:57.8703252Z","lastActionDateTimeUtc":"2021-04-28T02:29:10.8658741Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc55faa5-9808-4d00-bf5d-3a6b7bac120d","createdDateTimeUtc":"2021-04-28T02:27:48.8115098Z","lastActionDateTimeUtc":"2021-04-28T02:27:56.8749659Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9a2fc2d-6e12-4716-b6fe-e6f7f645607e","createdDateTimeUtc":"2021-04-28T02:27:34.4567898Z","lastActionDateTimeUtc":"2021-04-28T02:27:45.6930337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b3583886-66e2-42f4-a92c-1d3872a0aa77","createdDateTimeUtc":"2021-04-28T02:27:19.8066303Z","lastActionDateTimeUtc":"2021-04-28T02:27:31.841968Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cad1e8f-b139-4c8f-ab2e-08f361d1eb68","createdDateTimeUtc":"2021-04-28T02:26:49.9339996Z","lastActionDateTimeUtc":"2021-04-28T02:27:00.5989514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46cdad59-f66a-4da1-8f38-eed2a983f38d","createdDateTimeUtc":"2021-04-28T02:26:36.9133992Z","lastActionDateTimeUtc":"2021-04-28T02:26:46.7797561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3265a46d-8de7-42e3-98c4-ed65ef0c6ade","createdDateTimeUtc":"2021-04-28T02:26:15.0492232Z","lastActionDateTimeUtc":"2021-04-28T02:26:25.5825764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"65a6f1ce-85cf-403d-8f3e-e5e073054c76","createdDateTimeUtc":"2021-04-28T02:26:03.145739Z","lastActionDateTimeUtc":"2021-04-28T02:26:11.8653269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"656d6204-22ea-4730-9f99-d1b74fc06da7","createdDateTimeUtc":"2021-04-28T02:25:49.97667Z","lastActionDateTimeUtc":"2021-04-28T02:26:00.5668377Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b435a725-690c-402f-b913-44f86ab483e4","createdDateTimeUtc":"2021-04-28T02:25:39.9628491Z","lastActionDateTimeUtc":"2021-04-28T02:25:46.6901472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f9bd7104-9cf5-46e6-a3d7-b287784505d8","createdDateTimeUtc":"2021-04-28T02:25:24.566277Z","lastActionDateTimeUtc":"2021-04-28T02:25:35.5539264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"815c7677-a153-4b6f-be11-56508c8c2a0a","createdDateTimeUtc":"2021-04-28T02:25:13.6461376Z","lastActionDateTimeUtc":"2021-04-28T02:25:21.5722022Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56186d7f-e840-445b-ae6b-52284d681665","createdDateTimeUtc":"2021-04-28T02:24:59.2977299Z","lastActionDateTimeUtc":"2021-04-28T02:25:10.4574784Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94feb2d-0c8a-43bc-8d49-1b11f9d09af9","createdDateTimeUtc":"2021-04-28T02:24:48.4497069Z","lastActionDateTimeUtc":"2021-04-28T02:24:56.5195576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"203d440c-0dda-4d97-a765-d7754b7f35e0","createdDateTimeUtc":"2021-04-28T02:24:35.054131Z","lastActionDateTimeUtc":"2021-04-28T02:24:45.394402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b16731f6-16e7-435b-8082-33d69525401d","createdDateTimeUtc":"2021-04-28T02:24:27.6262133Z","lastActionDateTimeUtc":"2021-04-28T02:24:31.4372902Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"70d675bd-8f4b-4659-a5b1-ab6303d6c866","createdDateTimeUtc":"2021-04-28T02:24:21.0394278Z","lastActionDateTimeUtc":"2021-04-28T02:24:24.443963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7d457014-a9e4-4bea-834d-336c2ab87429","createdDateTimeUtc":"2021-04-28T02:24:13.519904Z","lastActionDateTimeUtc":"2021-04-28T02:24:17.3908619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fab2595f-d470-4154-992b-f6971d47e7d2","createdDateTimeUtc":"2021-04-28T02:24:07.1811727Z","lastActionDateTimeUtc":"2021-04-28T02:24:10.3793025Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7300eef6-75d7-46b7-ad29-936b030e382c","createdDateTimeUtc":"2021-04-28T02:23:59.0267429Z","lastActionDateTimeUtc":"2021-04-28T02:24:03.3335307Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aff93706-910a-456f-b8e7-4862b5652192","createdDateTimeUtc":"2021-04-28T02:23:52.8695092Z","lastActionDateTimeUtc":"2021-04-28T02:23:56.308446Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bf9b8bf-668f-474a-8a2b-4e1d8086f997","createdDateTimeUtc":"2021-04-28T02:23:45.3180833Z","lastActionDateTimeUtc":"2021-04-28T02:23:49.3781861Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377a2490-88b1-4b27-93ef-3dc1329c80d6","createdDateTimeUtc":"2021-04-28T02:23:41.973698Z","lastActionDateTimeUtc":"2021-04-28T02:23:46.2981277Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a7298d85-82d0-4a98-bb65-59333040a3b7","createdDateTimeUtc":"2021-04-28T02:23:39.1891223Z","lastActionDateTimeUtc":"2021-04-28T02:23:43.2638243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"261db727-8f2d-4c3b-91fe-dfc34b0cf958","createdDateTimeUtc":"2021-04-28T02:23:36.62149Z","lastActionDateTimeUtc":"2021-04-28T02:23:40.2869705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f857d8e-93b9-457b-b341-bbbce2a87766","createdDateTimeUtc":"2021-04-28T02:23:33.9588204Z","lastActionDateTimeUtc":"2021-04-28T02:23:37.1865952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1805&$top=666&$maxpagesize=50"}' + headers: + apim-request-id: 80471ba9-8730-4073-9c8a-a45c0a778fb1 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:13 GMT + etag: '"5DDA0EB32CA75B266BDABB0AE997345B9D564C7F832F08FF321A02755B50D51F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 80471ba9-8730-4073-9c8a-a45c0a778fb1 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1755&$top=716&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1805&$top=666&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"7c10899e-57c1-4ff7-b728-df7ec827782d","createdDateTimeUtc":"2021-04-28T02:23:31.278221Z","lastActionDateTimeUtc":"2021-04-28T02:23:36.1816294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe792102-6456-43be-b44a-4ab4c863da8b","createdDateTimeUtc":"2021-04-28T02:23:28.6844983Z","lastActionDateTimeUtc":"2021-04-28T02:23:33.169035Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fb97c3a4-d988-4516-880a-2f87ffe9e646","createdDateTimeUtc":"2021-04-28T02:23:26.053728Z","lastActionDateTimeUtc":"2021-04-28T02:23:30.1468612Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"987b7cca-afc4-4559-a1eb-36faa0b41952","createdDateTimeUtc":"2021-04-28T02:23:23.4917004Z","lastActionDateTimeUtc":"2021-04-28T02:23:27.1282808Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a431816f-3ac6-4a50-954a-e348f51086be","createdDateTimeUtc":"2021-04-28T02:23:20.8829166Z","lastActionDateTimeUtc":"2021-04-28T02:23:24.0928305Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580a1555-7b52-44a1-90f3-7f87a9aedc27","createdDateTimeUtc":"2021-04-28T02:23:18.4324249Z","lastActionDateTimeUtc":"2021-04-28T02:23:23.0711472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad117724-ee71-431d-9e72-49e6aa972335","createdDateTimeUtc":"2021-04-28T02:23:15.9150311Z","lastActionDateTimeUtc":"2021-04-28T02:23:20.0576853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c8b13a9f-1355-42ab-965b-9732f548dbcc","createdDateTimeUtc":"2021-04-28T02:23:13.2622292Z","lastActionDateTimeUtc":"2021-04-28T02:23:17.0878903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6a663755-f1b6-49b9-a722-67c2e93b2a50","createdDateTimeUtc":"2021-04-28T02:23:10.5821826Z","lastActionDateTimeUtc":"2021-04-28T02:23:14.0166012Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33c7d406-545f-4f9f-9b82-14b489079089","createdDateTimeUtc":"2021-04-28T02:23:08.0935125Z","lastActionDateTimeUtc":"2021-04-28T02:23:12.9874876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6993ace-b8e4-4817-91d2-960a02e7e2e9","createdDateTimeUtc":"2021-04-28T02:23:05.6947166Z","lastActionDateTimeUtc":"2021-04-28T02:23:09.991115Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e65d897-44d9-4117-9845-48fea6c0ccbe","createdDateTimeUtc":"2021-04-28T02:23:03.2612566Z","lastActionDateTimeUtc":"2021-04-28T02:23:06.9549623Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e12d4290-6907-4c71-8053-2200d4010720","createdDateTimeUtc":"2021-04-28T02:23:00.8052644Z","lastActionDateTimeUtc":"2021-04-28T02:23:03.932836Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"774d8ba1-c716-421c-84a8-0661fbdfcb80","createdDateTimeUtc":"2021-04-28T02:22:58.3421446Z","lastActionDateTimeUtc":"2021-04-28T02:23:02.9154907Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46bf0a85-b6ad-4741-b4ab-abeb40a6aebd","createdDateTimeUtc":"2021-04-28T02:22:55.8214923Z","lastActionDateTimeUtc":"2021-04-28T02:22:59.8825484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c7ac9193-f8e9-4ad8-b9f5-6a671e2060c0","createdDateTimeUtc":"2021-04-28T02:22:53.3440277Z","lastActionDateTimeUtc":"2021-04-28T02:22:56.8828352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf925cfb-c676-4c8e-aeda-8fa3466009d5","createdDateTimeUtc":"2021-04-28T02:22:50.2203696Z","lastActionDateTimeUtc":"2021-04-28T02:22:53.8275326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a76d3f14-72a0-4700-a084-e91e8553cf69","createdDateTimeUtc":"2021-04-28T02:22:47.8405893Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.8317911Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"46326228-2e0a-449b-b723-d6d9e7c447d9","createdDateTimeUtc":"2021-04-28T02:22:45.354206Z","lastActionDateTimeUtc":"2021-04-28T02:22:50.236799Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93e8c264-b08c-45ec-a156-bd301977901f","createdDateTimeUtc":"2021-04-28T02:22:42.926484Z","lastActionDateTimeUtc":"2021-04-28T02:22:47.2055426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c339811-8f79-4e08-a54a-fb0eb2164104","createdDateTimeUtc":"2021-04-28T02:22:40.6058329Z","lastActionDateTimeUtc":"2021-04-28T02:22:44.1587462Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"198f125c-d325-420b-b8ed-09ba61726c11","createdDateTimeUtc":"2021-04-28T02:22:38.2389291Z","lastActionDateTimeUtc":"2021-04-28T02:22:43.211207Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4893e5ac-0bd5-499a-838a-9afcd2e3722a","createdDateTimeUtc":"2021-04-28T02:22:35.7889659Z","lastActionDateTimeUtc":"2021-04-28T02:22:40.1744317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"086c80af-131d-48ee-8134-cb165c2427ca","createdDateTimeUtc":"2021-04-28T02:22:33.3774391Z","lastActionDateTimeUtc":"2021-04-28T02:22:37.2525152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"719edb94-ec86-41d5-92f2-ab86e57f9cad","createdDateTimeUtc":"2021-04-28T02:22:30.9266545Z","lastActionDateTimeUtc":"2021-04-28T02:22:36.1584963Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93cc6bbb-7f9a-4cca-aa4c-d26aa806f5f6","createdDateTimeUtc":"2021-04-28T02:22:28.5165987Z","lastActionDateTimeUtc":"2021-04-28T02:22:33.1115518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1bec227d-cca4-41ed-9e08-c2838ee1ea18","createdDateTimeUtc":"2021-04-28T02:22:26.1642608Z","lastActionDateTimeUtc":"2021-04-28T02:22:30.0807779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"99c26c82-7354-4399-b0bf-6599bb6259bc","createdDateTimeUtc":"2021-04-28T02:22:23.7820102Z","lastActionDateTimeUtc":"2021-04-28T02:22:29.0960194Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"248acbbe-013a-4926-ad18-944666b1b023","createdDateTimeUtc":"2021-04-28T02:22:21.372305Z","lastActionDateTimeUtc":"2021-04-28T02:22:26.0335363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"55d414e4-df44-4d69-943c-8241c6e7e502","createdDateTimeUtc":"2021-04-28T02:22:18.8537712Z","lastActionDateTimeUtc":"2021-04-28T02:22:23.0021569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c5cb59da-23ec-473e-a846-43c8f152a14a","createdDateTimeUtc":"2021-04-28T02:22:16.4127272Z","lastActionDateTimeUtc":"2021-04-28T02:22:19.9866927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"078dc0ba-63d1-4c11-90d3-c7678b05d3bd","createdDateTimeUtc":"2021-04-28T02:22:14.0274835Z","lastActionDateTimeUtc":"2021-04-28T02:22:18.9875779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de58d52a-3c81-4ee9-b891-70ff3b21eb1b","createdDateTimeUtc":"2021-04-28T02:22:11.5640879Z","lastActionDateTimeUtc":"2021-04-28T02:22:15.986412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1084c015-4c3c-473c-a3b5-915fcd361379","createdDateTimeUtc":"2021-04-28T02:22:08.9078731Z","lastActionDateTimeUtc":"2021-04-28T02:22:12.9397033Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3fc88c93-0709-4a34-b819-89380d46db2c","createdDateTimeUtc":"2021-04-28T02:22:06.5091439Z","lastActionDateTimeUtc":"2021-04-28T02:22:09.9397068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ead43fb8-db19-4def-a753-0c00131ba964","createdDateTimeUtc":"2021-04-28T02:22:04.0515539Z","lastActionDateTimeUtc":"2021-04-28T02:22:08.8769754Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"112f5096-fb53-406a-84a2-6a652013b4d1","createdDateTimeUtc":"2021-04-28T02:22:01.0226096Z","lastActionDateTimeUtc":"2021-04-28T02:22:05.8935913Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7c006ee4-7b19-4c64-8607-41e7c4dc3f5a","createdDateTimeUtc":"2021-04-28T02:21:58.5655967Z","lastActionDateTimeUtc":"2021-04-28T02:22:02.861224Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b67baef6-d2c2-44a0-8dea-7415595844d7","createdDateTimeUtc":"2021-04-28T02:21:56.1501372Z","lastActionDateTimeUtc":"2021-04-28T02:21:59.8304375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7e499bdc-8647-435a-a412-90ece95d0151","createdDateTimeUtc":"2021-04-28T02:21:53.7264563Z","lastActionDateTimeUtc":"2021-04-28T02:21:58.7518256Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0fdddd33-a4a7-49b7-a9d7-8fa27850ec5a","createdDateTimeUtc":"2021-04-28T02:21:51.2367037Z","lastActionDateTimeUtc":"2021-04-28T02:21:55.814619Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a61c457d-0f1e-40e3-adde-bc7219d90a29","createdDateTimeUtc":"2021-04-28T02:21:48.840384Z","lastActionDateTimeUtc":"2021-04-28T02:21:52.7994062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"519b3267-2f62-46c7-a43d-d35c0b8091f7","createdDateTimeUtc":"2021-04-28T02:21:46.3105649Z","lastActionDateTimeUtc":"2021-04-28T02:21:49.7360959Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6df35a18-bc55-47b5-84a9-e2251968a6f1","createdDateTimeUtc":"2021-04-28T02:21:43.915265Z","lastActionDateTimeUtc":"2021-04-28T02:21:48.6582367Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2596183-6f66-4e42-984a-32cf59d8f51e","createdDateTimeUtc":"2021-04-28T02:21:41.5448787Z","lastActionDateTimeUtc":"2021-04-28T02:21:45.6737867Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b9608a8c-ea94-4ab3-bad5-76e4fe30f3e1","createdDateTimeUtc":"2021-04-28T02:21:39.1600006Z","lastActionDateTimeUtc":"2021-04-28T02:21:43.1270592Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aface370-213f-49f9-af54-9c462d2ada94","createdDateTimeUtc":"2021-04-28T02:21:31.403095Z","lastActionDateTimeUtc":"2021-04-28T02:21:35.7342582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a31dbe3c-dc3b-427d-9786-4dbee931f687","createdDateTimeUtc":"2021-04-28T02:21:24.2462401Z","lastActionDateTimeUtc":"2021-04-28T02:21:28.6722526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4de3c4df-99a1-4232-9f3b-9e97dfc70af9","createdDateTimeUtc":"2021-04-28T02:21:18.1863904Z","lastActionDateTimeUtc":"2021-04-28T02:21:21.6522732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a4557e3-f7f5-45e1-99df-43b953371b78","createdDateTimeUtc":"2021-04-28T02:21:09.8469655Z","lastActionDateTimeUtc":"2021-04-28T02:21:14.6603811Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1855&$top=616&$maxpagesize=50"}' + headers: + apim-request-id: 9c1f8fa4-edff-44a9-a0b3-ec92e938a4a9 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:13 GMT + etag: '"5FAFAA1DDF66EBFD2BAEC4B0E2473D6B532C079BB2457903467B88F419AC47C4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 9c1f8fa4-edff-44a9-a0b3-ec92e938a4a9 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1805&$top=666&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1855&$top=616&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"e82e0793-05f9-4732-b3e7-4628f1044f32","createdDateTimeUtc":"2021-04-28T02:21:03.8577998Z","lastActionDateTimeUtc":"2021-04-28T02:21:07.5927738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d7146daa-6a79-4c48-8c95-bf44a7c8b3b5","createdDateTimeUtc":"2021-04-28T02:20:56.2714235Z","lastActionDateTimeUtc":"2021-04-28T02:21:00.5689425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bd509321-c686-43b1-b0b5-57ef7f2216e7","createdDateTimeUtc":"2021-04-28T02:20:48.9747783Z","lastActionDateTimeUtc":"2021-04-28T02:20:53.5207149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a89e86c8-4cc4-414c-9244-5583178d37eb","createdDateTimeUtc":"2021-04-28T02:20:42.7880942Z","lastActionDateTimeUtc":"2021-04-28T02:20:46.4788727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa361b4c-824d-4696-865f-caf835e782fe","createdDateTimeUtc":"2021-04-28T02:20:35.4230315Z","lastActionDateTimeUtc":"2021-04-28T02:20:39.4554899Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ce7a6837-f692-4027-8caa-82c9160b931f","createdDateTimeUtc":"2021-04-28T02:20:28.9179176Z","lastActionDateTimeUtc":"2021-04-28T02:20:32.5322578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"653c00b2-dd47-4ff5-9856-64a3fa976040","createdDateTimeUtc":"2021-04-28T02:20:21.6632082Z","lastActionDateTimeUtc":"2021-04-28T02:20:25.5009206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ea192e77-da95-4e40-972c-31ad716d7c3d","createdDateTimeUtc":"2021-04-28T02:20:14.34958Z","lastActionDateTimeUtc":"2021-04-28T02:20:18.4384096Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"783defec-ee0b-455c-bf91-40c2c254715f","createdDateTimeUtc":"2021-04-28T02:20:07.6325055Z","lastActionDateTimeUtc":"2021-04-28T02:20:11.3445316Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c8505b4-aa29-4e1b-a24f-3df308e707b4","createdDateTimeUtc":"2021-04-28T02:20:00.4367008Z","lastActionDateTimeUtc":"2021-04-28T02:20:04.2979533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2572b67a-0b37-4abc-8418-efdf5e6d22e5","createdDateTimeUtc":"2021-04-28T02:19:47.2170895Z","lastActionDateTimeUtc":"2021-04-28T02:19:57.2355704Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7cda516b-13e8-4d9a-85a6-0be6e202d171","createdDateTimeUtc":"2021-04-28T02:19:17.9816509Z","lastActionDateTimeUtc":"2021-04-28T02:19:22.1097145Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9d1dd61-1595-4b48-8e59-d5327f81acb2","createdDateTimeUtc":"2021-04-28T02:19:11.9532782Z","lastActionDateTimeUtc":"2021-04-28T02:19:15.1118925Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97d1757d-772d-4b5a-9666-210ff6ee974d","createdDateTimeUtc":"2021-04-28T02:19:03.966667Z","lastActionDateTimeUtc":"2021-04-28T02:19:08.1096793Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3a49da3-a813-451f-8c4f-4de044c88bd3","createdDateTimeUtc":"2021-04-28T02:18:56.7780474Z","lastActionDateTimeUtc":"2021-04-28T02:19:01.109624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26faab0f-6020-4a76-84f5-da2367382b1b","createdDateTimeUtc":"2021-04-28T02:18:50.684515Z","lastActionDateTimeUtc":"2021-04-28T02:18:54.0469909Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d3661d35-f836-4eab-b754-139503a4dd90","createdDateTimeUtc":"2021-04-28T02:18:43.4311766Z","lastActionDateTimeUtc":"2021-04-28T02:18:47.4998728Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e7714d05-3d25-412c-9431-fdcedbd63128","createdDateTimeUtc":"2021-04-28T02:18:36.1633193Z","lastActionDateTimeUtc":"2021-04-28T02:18:40.437885Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d55aac1-8ebf-4257-9809-52fb7dd81a8d","createdDateTimeUtc":"2021-04-28T02:18:30.1515581Z","lastActionDateTimeUtc":"2021-04-28T02:18:33.4064029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d18a574-fd48-49d6-bd9f-07c19b1109bd","createdDateTimeUtc":"2021-04-28T02:18:22.4943837Z","lastActionDateTimeUtc":"2021-04-28T02:18:26.4380961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d706a40-4cdf-4109-b2b2-f09e1b880d52","createdDateTimeUtc":"2021-04-28T02:18:15.2940024Z","lastActionDateTimeUtc":"2021-04-28T02:18:19.4059352Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a80f272d-ca7c-4edd-891a-c26f9be3f114","createdDateTimeUtc":"2021-04-28T02:18:08.1095424Z","lastActionDateTimeUtc":"2021-04-28T02:18:12.3588851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34dd2702-40f6-4a71-9098-ebd9a7b12afa","createdDateTimeUtc":"2021-04-28T02:18:01.6885186Z","lastActionDateTimeUtc":"2021-04-28T02:18:05.296144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"db0edbed-f2a2-425a-83d1-6ccff8ed9dc0","createdDateTimeUtc":"2021-04-28T02:17:54.4999383Z","lastActionDateTimeUtc":"2021-04-28T02:17:58.2803826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed9524dc-0e1b-4a82-bf71-fb0ebcc0079a","createdDateTimeUtc":"2021-04-28T02:17:47.2787443Z","lastActionDateTimeUtc":"2021-04-28T02:17:51.327629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36f0304f-1b9a-437e-9454-3ae12d8f6df8","createdDateTimeUtc":"2021-04-28T02:17:44.329472Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.181062Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21aa77e6-8e73-4584-a7cc-2c61c579408b","createdDateTimeUtc":"2021-04-28T02:17:41.8999144Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2178918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cca5e173-9d44-4f02-bc6c-f4d66e45b22a","createdDateTimeUtc":"2021-04-28T02:17:39.4356541Z","lastActionDateTimeUtc":"2021-04-28T02:17:48.2094206Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe7a0b7a-60e0-4832-9ce8-476fe3723715","createdDateTimeUtc":"2021-04-28T02:17:36.9627483Z","lastActionDateTimeUtc":"2021-04-28T02:17:41.233486Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"387264fa-dca7-4424-9610-0e1cbeccf3b0","createdDateTimeUtc":"2021-04-28T02:17:34.5551096Z","lastActionDateTimeUtc":"2021-04-28T02:17:38.1508271Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c82471d-b0d0-4717-9ec2-54e1c45ff54d","createdDateTimeUtc":"2021-04-28T02:17:32.1028703Z","lastActionDateTimeUtc":"2021-04-28T02:17:37.2119908Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7910c3dc-8dbc-4bdc-8006-0dfd691fa473","createdDateTimeUtc":"2021-04-28T02:17:29.6545448Z","lastActionDateTimeUtc":"2021-04-28T02:17:34.137355Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a6590a38-59ee-4156-ac5c-fb9b497fa166","createdDateTimeUtc":"2021-04-28T02:17:27.2826516Z","lastActionDateTimeUtc":"2021-04-28T02:17:31.1086817Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5303ab7f-6aa9-4edc-b2f6-f2b0e8af5f41","createdDateTimeUtc":"2021-04-28T02:17:24.5041618Z","lastActionDateTimeUtc":"2021-04-28T02:17:28.0752641Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8edb5903-18a4-4c43-99e6-a31614d4b50d","createdDateTimeUtc":"2021-04-28T02:17:22.0636352Z","lastActionDateTimeUtc":"2021-04-28T02:17:27.0894136Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de2bb1dc-c779-4c3e-ad25-0393c7e80a40","createdDateTimeUtc":"2021-04-28T02:17:19.6777644Z","lastActionDateTimeUtc":"2021-04-28T02:17:24.0364156Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de69cbda-a5ff-4a41-90bc-019e21fc61ec","createdDateTimeUtc":"2021-04-28T02:17:17.3358706Z","lastActionDateTimeUtc":"2021-04-28T02:17:21.0158216Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"42dbd826-64cb-4fdd-a84c-ffcacee1298f","createdDateTimeUtc":"2021-04-28T02:17:14.8469331Z","lastActionDateTimeUtc":"2021-04-28T02:17:18.983076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd503599-6631-46b2-96f5-eef48529f434","createdDateTimeUtc":"2021-04-28T02:17:12.4278971Z","lastActionDateTimeUtc":"2021-04-28T02:17:17.9519734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6630c57-2b83-47ff-b70e-3ffead15c7ac","createdDateTimeUtc":"2021-04-28T02:17:10.0425788Z","lastActionDateTimeUtc":"2021-04-28T02:17:14.8893656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eb2e2b5a-43ec-4dfb-a909-dbd7d5c55015","createdDateTimeUtc":"2021-04-28T02:17:07.6413462Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9862554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82839c12-24d1-4976-bd37-28117bc6f268","createdDateTimeUtc":"2021-04-28T02:17:05.2111938Z","lastActionDateTimeUtc":"2021-04-28T02:17:11.9206149Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"127254d6-9eed-4798-bac8-c62f1ea11829","createdDateTimeUtc":"2021-04-28T02:17:02.8462782Z","lastActionDateTimeUtc":"2021-04-28T02:17:08.8891709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"40bb8a60-423a-45c8-baca-5c0026feed43","createdDateTimeUtc":"2021-04-28T02:17:00.3050386Z","lastActionDateTimeUtc":"2021-04-28T02:17:05.9876518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae028958-a777-4bc4-8863-fb144ed010d4","createdDateTimeUtc":"2021-04-28T02:16:57.9175291Z","lastActionDateTimeUtc":"2021-04-28T02:17:03.2795774Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b704d887-0ac9-4e4a-8dae-2ffb798629b6","createdDateTimeUtc":"2021-04-28T02:16:54.9755365Z","lastActionDateTimeUtc":"2021-04-28T02:16:59.9311095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e02914d-b6e8-43c3-8d54-02bc2cdfb1d7","createdDateTimeUtc":"2021-04-28T02:16:52.4590676Z","lastActionDateTimeUtc":"2021-04-28T02:16:56.915595Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a94f0427-b71b-4987-afc5-d0e75ac51151","createdDateTimeUtc":"2021-04-28T02:16:49.9858611Z","lastActionDateTimeUtc":"2021-04-28T02:16:53.9313939Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"12aff11b-7c99-451c-994c-a7771c44a6eb","createdDateTimeUtc":"2021-04-28T02:16:47.4930978Z","lastActionDateTimeUtc":"2021-04-28T02:16:50.9203671Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d14dc3a9-ba55-4407-895c-06235ce6f10e","createdDateTimeUtc":"2021-04-28T02:16:44.2730255Z","lastActionDateTimeUtc":"2021-04-28T02:16:47.9830372Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1905&$top=566&$maxpagesize=50"}' + headers: + apim-request-id: 6c900116-14d6-4b37-ab33-164968aa5dd3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:13 GMT + etag: '"B5388A4E40F31B00D305F51F11B642B74ED18A6A8231C2833E5BB789E966C6C8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6c900116-14d6-4b37-ab33-164968aa5dd3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1855&$top=616&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1905&$top=566&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"0ae8e2a6-7279-4f7a-88d9-163ad8d4ac2c","createdDateTimeUtc":"2021-04-28T02:16:41.8318317Z","lastActionDateTimeUtc":"2021-04-28T02:16:46.8735961Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0e3f72b3-1d00-4e65-ab16-86401de57923","createdDateTimeUtc":"2021-04-28T02:16:39.4226418Z","lastActionDateTimeUtc":"2021-04-28T02:16:43.888851Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bcec3293-a6fe-401b-8ec0-84ad30013654","createdDateTimeUtc":"2021-04-28T02:16:36.9289105Z","lastActionDateTimeUtc":"2021-04-28T02:16:40.8576094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a307c6fd-30a2-44a8-a7ef-f1502585b03c","createdDateTimeUtc":"2021-04-28T02:16:34.5273943Z","lastActionDateTimeUtc":"2021-04-28T02:16:37.9047629Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed28144-d37b-4e54-9043-eb7e66ea867a","createdDateTimeUtc":"2021-04-28T02:16:32.1528356Z","lastActionDateTimeUtc":"2021-04-28T02:16:36.8267577Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"21815b81-b073-4261-84be-24de2a31cb49","createdDateTimeUtc":"2021-04-28T02:16:29.7217847Z","lastActionDateTimeUtc":"2021-04-28T02:16:33.8420559Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a0cd610-a5da-41ba-b013-2000eb05230e","createdDateTimeUtc":"2021-04-28T02:16:27.2909087Z","lastActionDateTimeUtc":"2021-04-28T02:16:30.79533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dccf003b-4083-4c9c-95d9-8b393fe6f905","createdDateTimeUtc":"2021-04-28T02:16:24.8202963Z","lastActionDateTimeUtc":"2021-04-28T02:16:29.7797944Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c57cd04-a14a-4b77-8458-f68e27cd3982","createdDateTimeUtc":"2021-04-28T02:16:22.2992606Z","lastActionDateTimeUtc":"2021-04-28T02:16:26.7796269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f79152bc-11ec-425b-9633-a88b23a503cc","createdDateTimeUtc":"2021-04-28T02:16:19.911268Z","lastActionDateTimeUtc":"2021-04-28T02:16:23.748241Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3362f6e7-c5d2-42ac-b788-77e503f3dd23","createdDateTimeUtc":"2021-04-28T02:16:17.4962187Z","lastActionDateTimeUtc":"2021-04-28T02:16:20.7326743Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ac009478-c36e-4d00-b4a4-967b1b612411","createdDateTimeUtc":"2021-04-28T02:16:15.0571769Z","lastActionDateTimeUtc":"2021-04-28T02:16:19.7014871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"912468ba-3719-4728-bd6c-634a1fe1687b","createdDateTimeUtc":"2021-04-28T02:16:12.5830669Z","lastActionDateTimeUtc":"2021-04-28T02:16:16.7012088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"47259f00-a045-461e-97e8-68f577925cac","createdDateTimeUtc":"2021-04-28T02:16:10.1139068Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7963832Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"09df2051-8f6e-4325-9652-70af1089fe0b","createdDateTimeUtc":"2021-04-28T02:16:07.7160538Z","lastActionDateTimeUtc":"2021-04-28T02:16:13.7884141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b048a6bc-d0c8-40ca-9654-52c366d40f16","createdDateTimeUtc":"2021-04-28T02:16:04.6709739Z","lastActionDateTimeUtc":"2021-04-28T02:16:10.7795088Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a5ce375-7902-4a9f-9d83-6487f08a6e2f","createdDateTimeUtc":"2021-04-28T02:16:02.2462982Z","lastActionDateTimeUtc":"2021-04-28T02:16:07.7645331Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c32f7513-5cd8-41d9-83b0-54d8dd852fd7","createdDateTimeUtc":"2021-04-28T02:15:59.8520337Z","lastActionDateTimeUtc":"2021-04-28T02:16:04.7226828Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"229349d9-760b-4f6f-a5d1-b9ebd6014795","createdDateTimeUtc":"2021-04-28T02:15:57.4999419Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6544413Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ace110d0-a199-4302-91ca-d1f3fa4e5248","createdDateTimeUtc":"2021-04-28T02:15:55.1796378Z","lastActionDateTimeUtc":"2021-04-28T02:16:01.6545274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d995dc5-f8c2-411d-a788-f03789b110bc","createdDateTimeUtc":"2021-04-28T02:15:52.7703683Z","lastActionDateTimeUtc":"2021-04-28T02:15:58.9355561Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"012e4896-586d-4a7e-9eae-6d9f223c67e4","createdDateTimeUtc":"2021-04-28T02:15:50.3588724Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.6390008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0b40a62-dfcc-4e8c-95d7-998d482208f2","createdDateTimeUtc":"2021-04-28T02:15:47.9192869Z","lastActionDateTimeUtc":"2021-04-28T02:15:55.0151379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"85107601-6a54-4dd8-b674-60a3416e02a1","createdDateTimeUtc":"2021-04-28T02:15:45.4147978Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.5135647Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ad6b4710-0b1e-46e3-bbda-b320548fcc8a","createdDateTimeUtc":"2021-04-28T02:15:43.0623193Z","lastActionDateTimeUtc":"2021-04-28T02:15:54.9655853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9761a765-36fa-47e8-9698-af79c31078b2","createdDateTimeUtc":"2021-04-28T02:15:31.8424342Z","lastActionDateTimeUtc":"2021-04-28T02:15:39.7011734Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6e03a27f-fb94-461e-a79b-8f8ac83f61dd","createdDateTimeUtc":"2021-04-28T02:15:17.6697647Z","lastActionDateTimeUtc":"2021-04-28T02:15:29.4200243Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"24944246-ccd1-4fa7-bcc5-798f437a705a","createdDateTimeUtc":"2021-04-28T02:15:03.5407463Z","lastActionDateTimeUtc":"2021-04-28T02:15:14.5756164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"19686170-617a-4faf-8f89-30d36c63b718","createdDateTimeUtc":"2021-04-28T02:14:55.69373Z","lastActionDateTimeUtc":"2021-04-28T02:14:59.5601527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"05a06726-cc0c-4f18-8398-8cb9bb9225a9","createdDateTimeUtc":"2021-04-28T02:14:48.5129576Z","lastActionDateTimeUtc":"2021-04-28T02:14:52.6067411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aabbcb0f-0473-4136-8e11-361196596288","createdDateTimeUtc":"2021-04-28T02:14:41.1853259Z","lastActionDateTimeUtc":"2021-04-28T02:14:45.5287092Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9694019-bdb3-44b0-8d3e-b97f3440b30c","createdDateTimeUtc":"2021-04-28T02:14:35.0637518Z","lastActionDateTimeUtc":"2021-04-28T02:14:38.8256164Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4caa3335-689a-4935-b64b-a428ef5a6f41","createdDateTimeUtc":"2021-04-28T02:14:20.7208914Z","lastActionDateTimeUtc":"2021-04-28T02:14:31.4346079Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af568ea5-3179-45b8-8948-64cb7e9f1848","createdDateTimeUtc":"2021-04-28T02:13:58.4717583Z","lastActionDateTimeUtc":"2021-04-28T02:14:06.4034353Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"67293ede-f21c-49b8-8cda-1c97cfda2287","createdDateTimeUtc":"2021-04-28T02:13:44.7630034Z","lastActionDateTimeUtc":"2021-04-28T02:13:54.3407918Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2c340b1b-1e25-4203-b4ae-de8f1bce6ae2","createdDateTimeUtc":"2021-04-28T02:13:31.6627284Z","lastActionDateTimeUtc":"2021-04-28T02:13:41.3879356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb28c3fc-9352-472a-894e-82e95e78c8f6","createdDateTimeUtc":"2021-04-28T02:13:19.9591455Z","lastActionDateTimeUtc":"2021-04-28T02:13:29.3417706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e181bcdd-fffd-4ad2-8363-9bb33a677713","createdDateTimeUtc":"2021-04-28T02:13:07.6012435Z","lastActionDateTimeUtc":"2021-04-28T02:13:16.2778889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b5f49d18-eb7a-4898-85cc-439e81ada7b6","createdDateTimeUtc":"2021-04-28T02:12:53.4819477Z","lastActionDateTimeUtc":"2021-04-28T02:13:04.309185Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"741989fc-d453-46c0-bd49-032837296da1","createdDateTimeUtc":"2021-04-28T02:12:39.4168503Z","lastActionDateTimeUtc":"2021-04-28T02:12:51.121306Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0799423a-feb7-49bc-833f-77b1db2f2cba","createdDateTimeUtc":"2021-04-28T02:01:01.7113493Z","lastActionDateTimeUtc":"2021-04-28T02:01:05.5211155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28a8fe3c-a57c-4d7c-9659-ba060c951a05","createdDateTimeUtc":"2021-04-28T02:00:54.5089369Z","lastActionDateTimeUtc":"2021-04-28T02:00:58.5285742Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7ba2ea54-0374-4544-836a-5e5fd4dac5b9","createdDateTimeUtc":"2021-04-28T02:00:47.3160533Z","lastActionDateTimeUtc":"2021-04-28T02:00:51.5065547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b005a7eb-a964-40c7-b7e2-57ab33cfe009","createdDateTimeUtc":"2021-04-28T02:00:40.8606028Z","lastActionDateTimeUtc":"2021-04-28T02:00:44.507437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"58d85c64-f513-4814-8114-ac9284655a2d","createdDateTimeUtc":"2021-04-28T02:00:33.6205783Z","lastActionDateTimeUtc":"2021-04-28T02:00:37.5241663Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b240ce80-bfc0-4e60-884e-79ce0c9f0b44","createdDateTimeUtc":"2021-04-28T02:00:26.4237524Z","lastActionDateTimeUtc":"2021-04-28T02:00:30.5980361Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"64bfc922-d650-4e2e-a54e-408d42e57da0","createdDateTimeUtc":"2021-04-28T02:00:19.5301361Z","lastActionDateTimeUtc":"2021-04-28T02:00:23.4731116Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ed159fe-e86c-47b9-9368-d3648b9481ab","createdDateTimeUtc":"2021-04-28T02:00:12.6854481Z","lastActionDateTimeUtc":"2021-04-28T02:00:16.4415437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"17bceb3a-dd5c-4471-8c64-9c95304fb555","createdDateTimeUtc":"2021-04-28T02:00:04.8350081Z","lastActionDateTimeUtc":"2021-04-28T02:00:09.4417677Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1df306d6-e2e5-4a56-8fda-9d599d8cf971","createdDateTimeUtc":"2021-04-28T01:59:58.7383434Z","lastActionDateTimeUtc":"2021-04-28T02:00:02.4415709Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1955&$top=516&$maxpagesize=50"}' + headers: + apim-request-id: 5e0ad476-a105-437b-a1ff-88dde19f231c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:14 GMT + etag: '"42DDBFECB7C97379D6BB86543DEEC64FF71B5647D846604B9D41F64BD774B582"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 5e0ad476-a105-437b-a1ff-88dde19f231c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1905&$top=566&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=1955&$top=516&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"a9ad54c5-712c-4de8-a170-78c9872bc901","createdDateTimeUtc":"2021-04-28T01:59:44.2941409Z","lastActionDateTimeUtc":"2021-04-28T01:59:55.4102375Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"377421a9-ac74-4b38-9cd9-d0ecd71363ab","createdDateTimeUtc":"2021-04-28T01:59:36.4200163Z","lastActionDateTimeUtc":"2021-04-28T01:59:40.394369Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ba7b182-d78a-4584-95a1-ab0736917a1e","createdDateTimeUtc":"2021-04-28T01:59:29.8358814Z","lastActionDateTimeUtc":"2021-04-28T01:59:33.3318661Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"51b9f59e-4e9d-4adf-b13d-6243eeecd789","createdDateTimeUtc":"2021-04-28T01:59:22.5916376Z","lastActionDateTimeUtc":"2021-04-28T01:59:26.3315184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"605dfecc-c6b9-45f3-aab9-457bd97b090c","createdDateTimeUtc":"2021-04-28T01:59:15.4252957Z","lastActionDateTimeUtc":"2021-04-28T01:59:19.2845578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1d882e2-d9c2-4b74-927d-5c27a0e16d29","createdDateTimeUtc":"2021-04-28T01:59:07.8566041Z","lastActionDateTimeUtc":"2021-04-28T01:59:12.2847245Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6bf6999-06bd-4d33-a223-1d2b8c903023","createdDateTimeUtc":"2021-04-28T01:59:00.6774929Z","lastActionDateTimeUtc":"2021-04-28T01:59:05.227297Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3b76b76-ef50-4ab3-adde-96446dbfd81c","createdDateTimeUtc":"2021-04-28T01:58:52.2900263Z","lastActionDateTimeUtc":"2021-04-28T01:58:58.206464Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"723f6ea6-045c-49b3-85f0-51f475890856","createdDateTimeUtc":"2021-04-28T01:58:47.688305Z","lastActionDateTimeUtc":"2021-04-28T01:58:51.2219343Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15b1ca9f-0925-4581-b21d-cff70981b454","createdDateTimeUtc":"2021-04-28T01:58:44.6928136Z","lastActionDateTimeUtc":"2021-04-28T01:58:48.128636Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dc6ef8ff-4f57-4f25-a5a1-20196e730f4f","createdDateTimeUtc":"2021-04-28T01:58:41.4169831Z","lastActionDateTimeUtc":"2021-04-28T01:58:45.0836087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5b826868-e6b5-4503-97d6-0424476039af","createdDateTimeUtc":"2021-04-28T01:58:37.8564099Z","lastActionDateTimeUtc":"2021-04-28T01:58:42.5192105Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5c107166-7cb2-448e-9f73-d8b9289b754e","createdDateTimeUtc":"2021-04-28T01:58:34.8969149Z","lastActionDateTimeUtc":"2021-04-28T01:58:39.0683452Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e35f80b9-e258-4d19-b9d5-2a360e47a471","createdDateTimeUtc":"2021-04-28T01:58:31.6561023Z","lastActionDateTimeUtc":"2021-04-28T01:58:38.1124295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b268d5b-1928-4869-8d6f-cb7b300524e5","createdDateTimeUtc":"2021-04-28T01:58:27.4450976Z","lastActionDateTimeUtc":"2021-04-28T01:58:30.9923056Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a01a01a3-359f-460e-b752-7cfd5c925487","createdDateTimeUtc":"2021-04-28T01:58:24.2150422Z","lastActionDateTimeUtc":"2021-04-28T01:58:31.0099014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"66986a73-34e9-47aa-a557-60203dfcedda","createdDateTimeUtc":"2021-04-28T01:58:20.6407971Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9716174Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c48a0214-1dbf-447a-b170-418551460451","createdDateTimeUtc":"2021-04-28T01:58:17.0502068Z","lastActionDateTimeUtc":"2021-04-28T01:58:23.9330371Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"82afd716-f2b8-4d7e-ac68-108765ce741f","createdDateTimeUtc":"2021-04-28T01:58:13.4342306Z","lastActionDateTimeUtc":"2021-04-28T01:58:16.9248922Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0623d80e-0e87-4aae-bdb5-1b8fe1f73aa6","createdDateTimeUtc":"2021-04-28T01:58:09.9564241Z","lastActionDateTimeUtc":"2021-04-28T01:58:13.9561903Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9a1ecb-02eb-44c8-a47c-0669fd3aa4b6","createdDateTimeUtc":"2021-04-28T01:58:06.4185995Z","lastActionDateTimeUtc":"2021-04-28T01:58:12.8932483Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cb97db7e-1ea6-4999-b635-f1a4501b4bbd","createdDateTimeUtc":"2021-04-28T01:58:02.700221Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.949363Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25b1de22-e457-48ff-8e4b-1a1a2b30e27e","createdDateTimeUtc":"2021-04-28T01:57:59.267708Z","lastActionDateTimeUtc":"2021-04-28T01:58:05.8466031Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"97ef0b9e-7f44-46ad-93ee-6c8f661d123d","createdDateTimeUtc":"2021-04-28T01:57:55.322691Z","lastActionDateTimeUtc":"2021-04-28T01:57:58.8620076Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15ff6777-63df-4cfa-84f5-6e3f191d2eb7","createdDateTimeUtc":"2021-04-28T01:57:51.8309805Z","lastActionDateTimeUtc":"2021-04-28T01:57:55.8309991Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ca0e6f32-21cb-4dd6-a18f-1ed6804405c0","createdDateTimeUtc":"2021-04-28T01:57:49.0165295Z","lastActionDateTimeUtc":"2021-04-28T01:57:52.8152197Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4a9c2943-9af4-49c2-84bb-95c4d791e022","createdDateTimeUtc":"2021-04-28T01:57:46.4868697Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.7252388Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"50403e73-423d-4eaa-ad56-d79b3ea02893","createdDateTimeUtc":"2021-04-28T01:57:44.0904775Z","lastActionDateTimeUtc":"2021-04-28T01:57:49.6972484Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"62ab82fc-f21c-450d-ab74-294d25ca3f8a","createdDateTimeUtc":"2021-04-28T01:57:40.7777994Z","lastActionDateTimeUtc":"2021-04-28T01:57:46.7555424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9e631fff-1521-40e2-b6fb-789879e71f56","createdDateTimeUtc":"2021-04-28T01:57:38.3258968Z","lastActionDateTimeUtc":"2021-04-28T01:57:43.6876965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dd5e4cdd-1b76-45c4-95ce-60e572f111f2","createdDateTimeUtc":"2021-04-28T01:57:35.9046735Z","lastActionDateTimeUtc":"2021-04-28T01:57:40.7134411Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7daf929e-a677-4ab2-9274-64c7a9ac6c1e","createdDateTimeUtc":"2021-04-28T01:57:33.4738087Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6205693Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43f72fe2-208d-432a-87c2-b2961883c5fb","createdDateTimeUtc":"2021-04-28T01:57:31.0484758Z","lastActionDateTimeUtc":"2021-04-28T01:57:37.6391543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1c0d5c49-12d8-4fe6-95df-de06c5e16c67","createdDateTimeUtc":"2021-04-28T01:57:28.6320867Z","lastActionDateTimeUtc":"2021-04-28T01:57:34.5914264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5bc1cf3f-24b4-426f-b512-8bce72141776","createdDateTimeUtc":"2021-04-28T01:57:26.1196182Z","lastActionDateTimeUtc":"2021-04-28T01:57:31.5843323Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86acbf22-e084-41ff-ac9c-5a8db8d8c6ca","createdDateTimeUtc":"2021-04-28T01:57:23.7085129Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5712465Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"484e0794-4a3a-4988-b91a-85f266769931","createdDateTimeUtc":"2021-04-28T01:57:21.2749248Z","lastActionDateTimeUtc":"2021-04-28T01:57:30.5647037Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6be991b-7b99-40e4-8c5c-e9b378fd0681","createdDateTimeUtc":"2021-04-28T01:57:18.6674798Z","lastActionDateTimeUtc":"2021-04-28T01:57:23.5062122Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"83840710-1967-4da8-9fdd-f6d854f0f01c","createdDateTimeUtc":"2021-04-28T01:57:16.2854117Z","lastActionDateTimeUtc":"2021-04-28T01:57:20.5074816Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e53af733-0554-4151-9f7c-1df82d251ecb","createdDateTimeUtc":"2021-04-28T01:57:13.8826184Z","lastActionDateTimeUtc":"2021-04-28T01:57:17.4956283Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f6906f5f-3c79-4891-95c0-88bb510a71a9","createdDateTimeUtc":"2021-04-28T01:57:11.4408922Z","lastActionDateTimeUtc":"2021-04-28T01:57:16.463788Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e93e833e-4961-423f-9cca-067c6aa36446","createdDateTimeUtc":"2021-04-28T01:57:09.011659Z","lastActionDateTimeUtc":"2021-04-28T01:57:13.4446965Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d1025cbf-1f83-4c46-8dc5-77e24f0bd1d2","createdDateTimeUtc":"2021-04-28T01:57:06.6040446Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.4282008Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"adb9bb96-1c46-43e4-b32b-1c9b99f59b35","createdDateTimeUtc":"2021-04-28T01:57:04.1635812Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.43937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"26fca978-f782-4cf5-aff2-a3537a513c78","createdDateTimeUtc":"2021-04-28T01:57:01.7829041Z","lastActionDateTimeUtc":"2021-04-28T01:57:10.1426547Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5109d1e9-53af-4e23-b422-c3f95c9b08d5","createdDateTimeUtc":"2021-04-28T01:56:59.3948729Z","lastActionDateTimeUtc":"2021-04-28T01:57:03.3804732Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f15244f1-418c-4572-9c84-6a9769f0d222","createdDateTimeUtc":"2021-04-28T01:56:56.9986622Z","lastActionDateTimeUtc":"2021-04-28T01:57:00.3498887Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a9d10be1-b871-4a68-b232-14f9ca3f3850","createdDateTimeUtc":"2021-04-28T01:56:54.6136861Z","lastActionDateTimeUtc":"2021-04-28T01:56:59.3850319Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81c97607-7060-470b-ab1a-0efa3b1f4f3f","createdDateTimeUtc":"2021-04-28T01:56:51.7067342Z","lastActionDateTimeUtc":"2021-04-28T01:56:56.3390714Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c7c33-b9a5-42bc-8186-34a827bbe409","createdDateTimeUtc":"2021-04-28T01:56:49.3121273Z","lastActionDateTimeUtc":"2021-04-28T01:56:53.3524487Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2005&$top=466&$maxpagesize=50"}' + headers: + apim-request-id: 3d7e8849-cd3b-4a9f-9267-4333d7929178 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:14 GMT + etag: '"3099AEEEC6707DB02AF6FC07C2BBC3B7BC033A5D1789094F090D5DD3EA85A0CC"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 3d7e8849-cd3b-4a9f-9267-4333d7929178 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=1955&$top=516&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2005&$top=466&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"93237742-837b-4452-b0be-7a218d9326b1","createdDateTimeUtc":"2021-04-28T01:56:46.8246364Z","lastActionDateTimeUtc":"2021-04-28T01:56:50.2999144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a1656c5-5140-4d1b-af5d-4e98b75527a4","createdDateTimeUtc":"2021-04-28T01:56:44.3664375Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.4287317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bb0d6848-d3bd-4539-80dd-183a0f00c597","createdDateTimeUtc":"2021-04-28T01:56:41.901849Z","lastActionDateTimeUtc":"2021-04-28T01:56:47.2635425Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e901c5ca-c451-4cf8-a071-8d2a33ce0984","createdDateTimeUtc":"2021-04-28T01:56:39.4638211Z","lastActionDateTimeUtc":"2021-04-28T01:56:44.2399227Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0a051d82-bed5-458b-9b0d-8c3608264abe","createdDateTimeUtc":"2021-04-28T01:56:37.0307455Z","lastActionDateTimeUtc":"2021-04-28T01:56:41.2142472Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56ab7dae-8bc5-4a6e-ad6a-0b1a0b57acbf","createdDateTimeUtc":"2021-04-28T01:56:33.9329774Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.2150379Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c6d69176-8940-4f7d-a1dc-e3f3d9dadaa4","createdDateTimeUtc":"2021-04-28T01:56:31.4365278Z","lastActionDateTimeUtc":"2021-04-28T01:56:38.6774883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"941a68cb-428d-46a8-ae44-73b0f616a364","createdDateTimeUtc":"2021-04-28T01:56:29.0336835Z","lastActionDateTimeUtc":"2021-04-28T01:56:35.2051499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27cf1707-1da7-45cb-9e4b-d03c430927bd","createdDateTimeUtc":"2021-04-28T01:56:13.2231417Z","lastActionDateTimeUtc":"2021-04-28T01:56:25.0957531Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ed76a486-2a6e-4254-8df5-dbb3c0743c53","createdDateTimeUtc":"2021-04-28T01:56:02.5147696Z","lastActionDateTimeUtc":"2021-04-28T01:56:10.2203324Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"28b453d6-6341-4340-91a6-ac2cb4bc85e2","createdDateTimeUtc":"2021-04-28T01:55:49.556846Z","lastActionDateTimeUtc":"2021-04-28T01:56:00.0796184Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a886020b-ea4a-43ac-8c67-d93346c91a12","createdDateTimeUtc":"2021-04-28T01:55:38.2435667Z","lastActionDateTimeUtc":"2021-04-28T01:55:45.5641769Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cd142477-df5d-4832-8716-998c6edd33ec","createdDateTimeUtc":"2021-04-28T01:55:23.6784983Z","lastActionDateTimeUtc":"2021-04-28T01:55:35.1267402Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1191b000-560b-46cf-a638-c6eae90028f3","createdDateTimeUtc":"2021-04-28T01:55:13.7265333Z","lastActionDateTimeUtc":"2021-04-28T01:55:19.9855947Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"63de0f8d-df2c-4bf9-a671-2a2a5e3689de","createdDateTimeUtc":"2021-04-28T01:54:57.8892397Z","lastActionDateTimeUtc":"2021-04-28T01:55:09.9698366Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e4a21b1-941c-4249-bd40-dfe21bb87bb6","createdDateTimeUtc":"2021-04-28T01:54:48.1708693Z","lastActionDateTimeUtc":"2021-04-28T01:54:54.9384469Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f1efc98-3239-4f0a-b166-e20964f29c8b","createdDateTimeUtc":"2021-04-28T01:54:33.2579027Z","lastActionDateTimeUtc":"2021-04-28T01:54:44.922822Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e41cdb1c-094d-4202-afa0-d1d671908bd0","createdDateTimeUtc":"2021-04-28T01:54:22.7869438Z","lastActionDateTimeUtc":"2021-04-28T01:54:29.8760783Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f0fae268-acc5-4e98-ba29-14e40f7da595","createdDateTimeUtc":"2021-04-28T01:54:07.6716859Z","lastActionDateTimeUtc":"2021-04-28T01:54:19.8445166Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5f3df7ef-7fc5-4b5b-8d22-830c56c36f0a","createdDateTimeUtc":"2021-04-28T01:53:58.6370035Z","lastActionDateTimeUtc":"2021-04-28T01:54:04.9239109Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"06842872-8e9a-4d73-815d-6fd1e74194cb","createdDateTimeUtc":"2021-04-28T01:53:42.9465003Z","lastActionDateTimeUtc":"2021-04-28T01:53:54.844507Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c85fdb9c-6ebc-432b-97fc-0130d7dfa129","createdDateTimeUtc":"2021-04-28T01:53:32.9321496Z","lastActionDateTimeUtc":"2021-04-28T01:53:40.2351013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"31fc8ae7-2169-466b-bc8c-b894f5ce9964","createdDateTimeUtc":"2021-04-28T01:53:12.3595405Z","lastActionDateTimeUtc":"2021-04-28T01:53:29.9222412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72bc3e84-4918-4f8e-8668-d1d6f35c9967","createdDateTimeUtc":"2021-04-28T01:28:04.7317654Z","lastActionDateTimeUtc":"2021-04-28T01:28:13.5792944Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"c786e8e7-79fb-4bfa-8059-b17cf1b52ef8","createdDateTimeUtc":"2021-04-28T01:27:39.1323259Z","lastActionDateTimeUtc":"2021-04-28T01:27:48.4229222Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"2cc98e6b-e4e5-43d9-a3a1-42c08fac7003","createdDateTimeUtc":"2021-04-28T01:26:07.1877813Z","lastActionDateTimeUtc":"2021-04-28T01:26:13.2829974Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"5ef8b706-8f22-45dd-91ba-87a9f2a83d2f","createdDateTimeUtc":"2021-04-28T01:25:22.7715426Z","lastActionDateTimeUtc":"2021-04-28T01:25:28.0938463Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"1d57df2a-c1f8-49ad-bf4b-a5a00434d3a1","createdDateTimeUtc":"2021-04-28T01:22:48.7973803Z","lastActionDateTimeUtc":"2021-04-28T01:23:02.8887983Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"debddc58-f367-4b96-b649-95ffe7f3a0d7","createdDateTimeUtc":"2021-04-28T01:20:26.6536528Z","lastActionDateTimeUtc":"2021-04-28T01:20:37.6678623Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"fb39c597-0bfb-4834-9388-c3168c466b24","createdDateTimeUtc":"2021-04-28T01:19:45.3017236Z","lastActionDateTimeUtc":"2021-04-28T01:19:52.5897496Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f8af3fc0-aad1-4ba9-8641-b23786f8cc61","createdDateTimeUtc":"2021-04-28T01:18:20.5249178Z","lastActionDateTimeUtc":"2021-04-28T01:18:32.2626861Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"adedf7f0-6ee1-47ec-bb1b-66ded4bde663","createdDateTimeUtc":"2021-04-28T01:17:51.6022208Z","lastActionDateTimeUtc":"2021-04-28T01:17:57.3229452Z","status":"Cancelled","summary":{"total":8,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":8,"totalCharacterCharged":0}},{"id":"ecbcb5e5-0083-42de-bb85-d54a64bc0137","createdDateTimeUtc":"2021-04-28T01:17:00.2516779Z","lastActionDateTimeUtc":"2021-04-28T01:17:07.0259221Z","status":"Cancelled","summary":{"total":10,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":10,"totalCharacterCharged":0}},{"id":"f09515d7-5858-4386-8d93-9e974d16f93f","createdDateTimeUtc":"2021-04-28T01:16:24.7422722Z","lastActionDateTimeUtc":"2021-04-28T01:16:51.8408143Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":540}},{"id":"16025e50-ef03-4183-941d-7c44f13578f6","createdDateTimeUtc":"2021-04-28T01:12:43.5033331Z","lastActionDateTimeUtc":"2021-04-28T01:13:05.2991154Z","status":"Succeeded","summary":{"total":20,"failed":0,"success":20,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"869b0a23-2588-4398-99ef-3eea8c3f483b","createdDateTimeUtc":"2021-04-28T01:11:19.5045513Z","lastActionDateTimeUtc":"2021-04-28T01:11:37.6632607Z","status":"Cancelled","summary":{"total":20,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":20,"totalCharacterCharged":0}},{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6636717c-354f-45a8-b170-d20db4efed14","createdDateTimeUtc":"2021-03-31T22:14:18.5634456Z","lastActionDateTimeUtc":"2021-03-31T22:14:30.6575237Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"10733ad7-d257-43cc-8b8c-07ab3227405e","createdDateTimeUtc":"2021-03-31T22:14:02.2012136Z","lastActionDateTimeUtc":"2021-03-31T22:14:14.6572171Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a290c36-d3dd-4b9b-8579-c03ac8cd5427","createdDateTimeUtc":"2021-03-31T22:13:48.9182736Z","lastActionDateTimeUtc":"2021-03-31T22:13:58.5634526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b520f5a-5722-4a87-89ab-72b6ad0244ee","createdDateTimeUtc":"2021-03-31T22:13:20.2030884Z","lastActionDateTimeUtc":"2021-03-31T22:13:42.5006294Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2055&$top=416&$maxpagesize=50"}' + headers: + apim-request-id: 2aacd454-7ae7-4b32-944c-6762d2be5fbd + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:14 GMT + etag: '"87C48EBCCFF51751870A32DC8FC8AE3AD8513060F2D8091F8FA46867DB749602"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 2aacd454-7ae7-4b32-944c-6762d2be5fbd + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2005&$top=466&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2055&$top=416&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"94b12f0e-7b07-490f-ad55-8d292ff6283d","createdDateTimeUtc":"2021-03-31T22:12:53.2555007Z","lastActionDateTimeUtc":"2021-03-31T22:13:16.4223101Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6aeb14ea-ca3e-4b53-b8e9-4efe4bd09abe","createdDateTimeUtc":"2021-03-31T22:12:27.8551762Z","lastActionDateTimeUtc":"2021-03-31T22:12:50.406557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1e68b310-5586-4321-b67c-d0bb2b9dabb7","createdDateTimeUtc":"2021-03-31T22:12:11.7160014Z","lastActionDateTimeUtc":"2021-03-31T22:12:24.3126837Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f09a6e3c-17ca-47c0-9d92-9a9632174385","createdDateTimeUtc":"2021-03-31T22:11:53.0752604Z","lastActionDateTimeUtc":"2021-03-31T22:12:08.2186055Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ae0d0fd0-c9fd-4395-b8ed-4592c6a3660a","createdDateTimeUtc":"2021-03-31T22:11:39.5435572Z","lastActionDateTimeUtc":"2021-03-31T22:11:42.5634346Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"babdaa50-84a5-4fba-8f43-57e4e128f65b","createdDateTimeUtc":"2021-03-31T22:11:25.7581744Z","lastActionDateTimeUtc":"2021-03-31T22:11:34.5155332Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"edbd992e-06c5-4cb5-bdcd-4e686480f561","createdDateTimeUtc":"2021-03-31T22:10:59.8096888Z","lastActionDateTimeUtc":"2021-03-31T22:11:22.2653317Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"25491eba-79c1-483e-8140-6897b567e6c6","createdDateTimeUtc":"2021-03-31T22:10:38.2813622Z","lastActionDateTimeUtc":"2021-03-31T22:10:56.2182182Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"391a9f53-0e9c-4538-add9-23c69a2b9334","createdDateTimeUtc":"2021-03-31T01:44:00.2727045Z","lastActionDateTimeUtc":"2021-03-31T01:44:11.9713351Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8dad0d6e-856a-49d5-99c9-7d9f6b127570","createdDateTimeUtc":"2021-03-31T01:43:43.0966841Z","lastActionDateTimeUtc":"2021-03-31T01:43:55.9617423Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8abb8288-eae6-41aa-adeb-6046ae6f3192","createdDateTimeUtc":"2021-03-31T01:43:27.0443116Z","lastActionDateTimeUtc":"2021-03-31T01:43:39.8837087Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0f3f5d3-4bc6-4249-90f3-436d52cd6b94","createdDateTimeUtc":"2021-03-31T01:43:10.9438368Z","lastActionDateTimeUtc":"2021-03-31T01:43:23.8838695Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"15a5a8c6-4473-47c8-9668-57b15449b5f5","createdDateTimeUtc":"2021-03-31T01:42:46.411334Z","lastActionDateTimeUtc":"2021-03-31T01:43:07.7129918Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ec8c4d33-3c0a-4f69-ab4d-fbf07b4a1f85","createdDateTimeUtc":"2021-03-31T01:42:19.6069049Z","lastActionDateTimeUtc":"2021-03-31T01:42:41.6278668Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8a65524c-dcd3-4abd-ad1f-4d9657db4c99","createdDateTimeUtc":"2021-03-31T01:42:02.6128878Z","lastActionDateTimeUtc":"2021-03-31T01:42:15.5797735Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7b37f5cf-8da8-44b9-af57-2c2b23b93e89","createdDateTimeUtc":"2021-03-31T01:41:46.6269385Z","lastActionDateTimeUtc":"2021-03-31T01:41:59.6187643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0d8ae5c6-288d-4c11-9dc7-4cb3de191334","createdDateTimeUtc":"2021-03-31T01:41:31.3685793Z","lastActionDateTimeUtc":"2021-03-31T01:41:43.5027776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aa0dea8e-b1a5-4fcf-99bc-30b71bbf2208","createdDateTimeUtc":"2021-03-31T01:41:11.4776794Z","lastActionDateTimeUtc":"2021-03-31T01:41:27.4738947Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3dca0126-afba-46c8-a16a-4c07bcfa8a68","createdDateTimeUtc":"2021-03-31T01:40:48.590118Z","lastActionDateTimeUtc":"2021-03-31T01:41:01.4352973Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"267800e7-12c5-4c46-9a98-274484ac522c","createdDateTimeUtc":"2021-03-31T01:40:33.0285348Z","lastActionDateTimeUtc":"2021-03-31T01:40:45.3912231Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27b778ff-13c9-4156-a27d-699b7af331cd","createdDateTimeUtc":"2021-03-31T01:40:19.5146309Z","lastActionDateTimeUtc":"2021-03-31T01:40:29.351327Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"69c41669-dc5a-4c77-a73e-ee161172d60b","createdDateTimeUtc":"2021-03-31T01:40:00.4728362Z","lastActionDateTimeUtc":"2021-03-31T01:40:13.3027523Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9ede284a-8753-4dee-9e9e-59d192ceeb72","createdDateTimeUtc":"2021-03-31T01:39:34.2065002Z","lastActionDateTimeUtc":"2021-03-31T01:39:57.3026235Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2e6a93c1-a2d1-4a1f-b2f6-5a47b21aafd0","createdDateTimeUtc":"2021-03-31T01:39:08.7237023Z","lastActionDateTimeUtc":"2021-03-31T01:39:31.208576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f650c28c-e4d1-42b1-8a1c-762b6e90c648","createdDateTimeUtc":"2021-03-31T01:38:43.2052651Z","lastActionDateTimeUtc":"2021-03-31T01:39:05.0545552Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fada49bb-707d-4754-9098-4ed0f2744c5e","createdDateTimeUtc":"2021-03-31T01:38:23.3486187Z","lastActionDateTimeUtc":"2021-03-31T01:38:38.9822675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3303d885-d5f5-487d-8cb4-c6b2dd3c6e36","createdDateTimeUtc":"2021-03-31T01:38:10.1657584Z","lastActionDateTimeUtc":"2021-03-31T01:38:12.4591252Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64316b7f-69af-4ed2-8e6d-351322e03fd5","createdDateTimeUtc":"2021-03-31T01:37:56.6752282Z","lastActionDateTimeUtc":"2021-03-31T01:38:04.4082913Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ac780566-239c-4831-a04b-c0acbe246ea4","createdDateTimeUtc":"2021-03-31T01:37:40.1143811Z","lastActionDateTimeUtc":"2021-03-31T01:37:52.8578877Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"88aaf80e-c8d8-41e0-a1c2-657eab41f509","createdDateTimeUtc":"2021-03-31T01:37:14.5439722Z","lastActionDateTimeUtc":"2021-03-31T01:37:36.8773Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e0a5f5c-8392-4bfb-9464-f2ce15cc1cb8","createdDateTimeUtc":"2021-03-31T01:36:39.5311244Z","lastActionDateTimeUtc":"2021-03-31T01:37:00.8135419Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5e299d0b-13ee-4ec1-a073-e687fb773c5d","createdDateTimeUtc":"2021-03-31T01:36:22.2171927Z","lastActionDateTimeUtc":"2021-03-31T01:36:34.7690765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"822ec9fa-76c1-4ea5-84ec-17d72d152769","createdDateTimeUtc":"2021-03-31T01:36:07.1205045Z","lastActionDateTimeUtc":"2021-03-31T01:36:18.6908295Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84684a12-1e02-4bf7-b514-c550b89b8da5","createdDateTimeUtc":"2021-03-31T01:35:39.8804912Z","lastActionDateTimeUtc":"2021-03-31T01:36:02.616557Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"00b938e3-99d8-4e24-8b31-4cff096029bf","createdDateTimeUtc":"2021-03-31T01:35:23.7968285Z","lastActionDateTimeUtc":"2021-03-31T01:35:36.5353771Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b3438c87-4ed0-4081-8de4-5ab82474e0bf","createdDateTimeUtc":"2021-03-31T01:35:07.342246Z","lastActionDateTimeUtc":"2021-03-31T01:35:18.676202Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"5330c040-e2c7-4590-91bb-aa47ddf8fb19","createdDateTimeUtc":"2021-03-31T01:34:57.2860963Z","lastActionDateTimeUtc":"2021-03-31T01:35:02.4256356Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"580e2ff9-3fcc-484a-94db-8679111084a6","createdDateTimeUtc":"2021-03-31T01:34:42.2077366Z","lastActionDateTimeUtc":"2021-03-31T01:34:54.3462234Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c40735e9-b594-446e-ac68-1b9a9300e386","createdDateTimeUtc":"2021-03-31T01:34:25.998857Z","lastActionDateTimeUtc":"2021-03-31T01:34:38.3930496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1549ba40-476d-4112-8d96-4a2170e5f8cd","createdDateTimeUtc":"2021-03-31T01:34:05.9368546Z","lastActionDateTimeUtc":"2021-03-31T01:34:22.3499573Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"1b7de6ea-92a4-4522-80b5-e9f8f708cd4d","createdDateTimeUtc":"2021-03-31T01:33:43.268381Z","lastActionDateTimeUtc":"2021-03-31T01:33:56.2207875Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5af53670-945f-4e2a-b0b7-fe07624e1aa7","createdDateTimeUtc":"2021-03-31T01:33:27.1281144Z","lastActionDateTimeUtc":"2021-03-31T01:33:40.1583605Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4c8ed123-f03d-4013-ac33-12f9e5626e4d","createdDateTimeUtc":"2021-03-31T01:33:13.5615116Z","lastActionDateTimeUtc":"2021-03-31T01:33:24.110955Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57daf24a-c826-4fb8-9966-5f56c1dd8f45","createdDateTimeUtc":"2021-03-31T01:32:54.9944405Z","lastActionDateTimeUtc":"2021-03-31T01:33:08.0641329Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b1622ba6-3d1f-4b1a-b575-757c387763c6","createdDateTimeUtc":"2021-03-31T01:32:47.4527486Z","lastActionDateTimeUtc":"2021-03-31T01:32:52.0325979Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"fe9c604b-1641-42ff-b473-aaf522d44997","createdDateTimeUtc":"2021-03-31T01:32:31.3663623Z","lastActionDateTimeUtc":"2021-03-31T01:32:43.9545002Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c9beef5-572f-4f7c-ad3c-3fb4a5d62520","createdDateTimeUtc":"2021-03-31T01:32:15.9157722Z","lastActionDateTimeUtc":"2021-03-31T01:32:27.8608312Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7bc0da68-6177-43f4-b3ee-a5b5c1a0f031","createdDateTimeUtc":"2021-03-31T01:31:56.0683243Z","lastActionDateTimeUtc":"2021-03-31T01:32:11.8447077Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"be21b08a-3ac3-40e4-8815-1460343e0838","createdDateTimeUtc":"2021-03-31T01:31:42.5752909Z","lastActionDateTimeUtc":"2021-03-31T01:31:47.4072897Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1dad332b-909b-49ae-aa55-df413ac83968","createdDateTimeUtc":"2021-03-31T01:31:29.3372724Z","lastActionDateTimeUtc":"2021-03-31T01:31:39.3534747Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2105&$top=366&$maxpagesize=50"}' + headers: + apim-request-id: cd0cdc79-badc-4ff4-a643-8fbf7ea10668 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:14 GMT + etag: '"15F8437CBCD6E2B20DACFF5F0F8421ED4DA169865EA0C9BD965E8D5CC9709BD0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cd0cdc79-badc-4ff4-a643-8fbf7ea10668 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2055&$top=416&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2105&$top=366&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"3b0c896f-b84b-4b01-9eb1-7dc631f35323","createdDateTimeUtc":"2021-03-31T01:31:05.6632952Z","lastActionDateTimeUtc":"2021-03-31T01:31:25.8601705Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9d73e778-21b3-44a1-b8f7-106e4f42d076","createdDateTimeUtc":"2021-03-31T01:27:18.0563032Z","lastActionDateTimeUtc":"2021-03-31T01:27:39.5453565Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56b4c08c-984c-4845-b8b0-c1a6a61c51da","createdDateTimeUtc":"2021-03-31T01:00:58.3151257Z","lastActionDateTimeUtc":"2021-03-31T01:01:12.0483159Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"2b9a6419-f9dc-40a3-8acb-5e08e36323e2","createdDateTimeUtc":"2021-03-31T01:00:41.1412899Z","lastActionDateTimeUtc":"2021-03-31T01:00:54.2153459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2f5bc8f-4033-4a72-84da-68a280f0da95","createdDateTimeUtc":"2021-03-31T01:00:15.3622115Z","lastActionDateTimeUtc":"2021-03-31T01:00:37.8716097Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d53ec3f0-698f-4178-b1ad-cfabfb0e07ac","createdDateTimeUtc":"2021-03-31T00:59:49.8700979Z","lastActionDateTimeUtc":"2021-03-31T01:00:11.8116929Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"729a3c95-8d5c-4f44-877a-5333ed1ca8ac","createdDateTimeUtc":"2021-03-31T00:59:25.2556583Z","lastActionDateTimeUtc":"2021-03-31T00:59:45.7004723Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"4102a103-8b23-4afb-90c6-0617d0027b43","createdDateTimeUtc":"2021-03-31T00:58:58.3249154Z","lastActionDateTimeUtc":"2021-03-31T00:59:19.6796896Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"11c0bf4e-d122-4c8c-b4e2-05a67532e213","createdDateTimeUtc":"2021-03-31T00:58:41.131858Z","lastActionDateTimeUtc":"2021-03-31T00:58:53.5632311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4ad88363-f2e9-42ac-8998-40fe03661f27","createdDateTimeUtc":"2021-03-31T00:58:25.6182866Z","lastActionDateTimeUtc":"2021-03-31T00:58:37.4956233Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5e56b70-2777-4a78-a0f4-5bbc0f631c5b","createdDateTimeUtc":"2021-03-31T00:58:08.4902551Z","lastActionDateTimeUtc":"2021-03-31T00:58:21.4951123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2977c802-dd8f-4a69-9e8f-1b6b0a3f921b","createdDateTimeUtc":"2021-03-31T00:57:49.0715607Z","lastActionDateTimeUtc":"2021-03-31T00:58:05.3447318Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6d4fef95-0213-49dd-8943-368189a8e97c","createdDateTimeUtc":"2021-03-31T00:57:26.4893363Z","lastActionDateTimeUtc":"2021-03-31T00:57:39.307288Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2851d721-a22e-424a-83d3-76ad96d5ba90","createdDateTimeUtc":"2021-03-31T00:57:10.6687173Z","lastActionDateTimeUtc":"2021-03-31T00:57:23.291901Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a5e1f13-9b5b-4a3a-b679-de6ac07275ed","createdDateTimeUtc":"2021-03-31T00:56:47.048385Z","lastActionDateTimeUtc":"2021-03-31T00:57:07.2287304Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49c3dad9-6435-46a8-a7e9-28c4dbd61970","createdDateTimeUtc":"2021-03-31T00:56:17.9173106Z","lastActionDateTimeUtc":"2021-03-31T00:56:41.2605776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c08b527-0915-426e-9188-8169a0d90de3","createdDateTimeUtc":"2021-03-31T00:55:51.673907Z","lastActionDateTimeUtc":"2021-03-31T00:56:15.10365Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f73e9bc-5b7e-4a2d-b03c-c1c73f0945e6","createdDateTimeUtc":"2021-03-31T00:55:26.84852Z","lastActionDateTimeUtc":"2021-03-31T00:55:49.0719892Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdc27866-b80e-470a-bc50-8e6c9953d5fc","createdDateTimeUtc":"2021-03-31T00:55:10.5124595Z","lastActionDateTimeUtc":"2021-03-31T00:55:23.0094459Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"504059ea-ea6d-4476-bf46-036f3f778954","createdDateTimeUtc":"2021-03-31T00:54:55.1523135Z","lastActionDateTimeUtc":"2021-03-31T00:55:06.8996656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5660942b-07cc-4645-be6e-778c7c2fe0f6","createdDateTimeUtc":"2021-03-31T00:54:41.9344885Z","lastActionDateTimeUtc":"2021-03-31T00:54:48.8530624Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"b2b0ea31-f473-4fef-8458-857c10880756","createdDateTimeUtc":"2021-03-31T00:54:28.5086484Z","lastActionDateTimeUtc":"2021-03-31T00:54:32.7745177Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd6e8fb3-f34e-443d-9f75-a8691393a4d3","createdDateTimeUtc":"2021-03-31T00:53:58.5263175Z","lastActionDateTimeUtc":"2021-03-31T00:54:20.8056044Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a4c589ad-71c6-4227-89bf-5d7feb5768cd","createdDateTimeUtc":"2021-03-31T00:53:31.6243329Z","lastActionDateTimeUtc":"2021-03-31T00:53:54.7426083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"27e1db36-9bcf-415d-925c-ba78e41b6140","createdDateTimeUtc":"2021-03-31T00:52:57.5283293Z","lastActionDateTimeUtc":"2021-03-31T00:53:18.6799011Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a526294f-96de-41ff-bf13-90a5f808940d","createdDateTimeUtc":"2021-03-31T00:52:40.6726097Z","lastActionDateTimeUtc":"2021-03-31T00:52:52.6327569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ab11bcb6-3fb6-4633-a111-af7f2f7b1bb6","createdDateTimeUtc":"2021-03-31T00:46:54.0825524Z","lastActionDateTimeUtc":"2021-03-31T00:47:06.2691009Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c9523f5f-4968-441a-8a24-5c7d276d0843","createdDateTimeUtc":"2021-03-31T00:46:38.9039517Z","lastActionDateTimeUtc":"2021-03-31T00:46:50.1269007Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"dc9c54b7-ce4d-4df3-a7b8-e300d4bc29ad","createdDateTimeUtc":"2021-03-31T00:46:22.5316807Z","lastActionDateTimeUtc":"2021-03-31T00:46:34.1127072Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7b4fd7e6-dbc0-4c3d-97d6-10863099862a","createdDateTimeUtc":"2021-03-31T00:46:05.4332351Z","lastActionDateTimeUtc":"2021-03-31T00:46:18.0809824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dcf624d8-4bf4-431e-905e-6e38040684f6","createdDateTimeUtc":"2021-03-31T00:45:48.30683Z","lastActionDateTimeUtc":"2021-03-31T00:46:01.9715308Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c06ebce3-407a-4440-aafc-38bdc34af3c8","createdDateTimeUtc":"2021-03-31T00:45:21.5496135Z","lastActionDateTimeUtc":"2021-03-31T00:45:44.2683123Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d19146d2-7cf7-4418-8f1f-d150a96af144","createdDateTimeUtc":"2021-03-31T00:45:01.7837777Z","lastActionDateTimeUtc":"2021-03-31T00:45:17.8971811Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6733dc0d-729e-4c53-b795-0cbbaab7c6c0","createdDateTimeUtc":"2021-03-31T00:44:37.294011Z","lastActionDateTimeUtc":"2021-03-31T00:44:51.8369518Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1aeb851-5703-4630-b228-3178782e90a4","createdDateTimeUtc":"2021-03-31T00:44:20.6687473Z","lastActionDateTimeUtc":"2021-03-31T00:44:33.8922674Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1a186964-7306-4af0-8713-0dfc685b6cdf","createdDateTimeUtc":"2021-03-31T00:44:07.2574592Z","lastActionDateTimeUtc":"2021-03-31T00:44:17.7360938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b381ef2a-3a59-4157-809a-6980ffd021ac","createdDateTimeUtc":"2021-03-31T00:43:49.0657846Z","lastActionDateTimeUtc":"2021-03-31T00:44:01.6420489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"339cbcfc-c836-4076-87e4-11e1c8aead77","createdDateTimeUtc":"2021-03-31T00:43:20.579652Z","lastActionDateTimeUtc":"2021-03-31T00:43:45.626274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6c938a72-d2a1-4911-9601-e8fd47704f31","createdDateTimeUtc":"2021-03-31T00:43:04.8449841Z","lastActionDateTimeUtc":"2021-03-31T00:43:17.6417053Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c568294c-0b55-4ab3-9701-7e598d20821d","createdDateTimeUtc":"2021-03-31T00:42:49.7980179Z","lastActionDateTimeUtc":"2021-03-31T00:43:01.40727Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03a1b7e2-b5c7-4e30-9a53-f6037ba9e3ec","createdDateTimeUtc":"2021-03-31T00:42:20.4736087Z","lastActionDateTimeUtc":"2021-03-31T00:42:45.438038Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7a0e1383-e7f8-41a4-8fe4-28f565d7e586","createdDateTimeUtc":"2021-03-31T00:42:06.8681003Z","lastActionDateTimeUtc":"2021-03-31T00:42:10.3601039Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0cec175e-21cc-4fa9-b3e5-85578e871e53","createdDateTimeUtc":"2021-03-31T00:41:53.5106711Z","lastActionDateTimeUtc":"2021-03-31T00:42:02.3130377Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"0fd20f80-effe-445b-9a56-6ec6ff125d32","createdDateTimeUtc":"2021-03-31T00:41:26.9156058Z","lastActionDateTimeUtc":"2021-03-31T00:41:49.2824554Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"650d5b8a-e0f7-4291-9fc6-a452373a588a","createdDateTimeUtc":"2021-03-31T00:41:10.3561511Z","lastActionDateTimeUtc":"2021-03-31T00:41:23.2344699Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"71e7b7ea-29a6-49cc-8377-9a667009056e","createdDateTimeUtc":"2021-03-31T00:37:32.0045085Z","lastActionDateTimeUtc":"2021-03-31T00:37:46.9981971Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3c09c8f1-efbb-467c-a9a6-05596b79a7e7","createdDateTimeUtc":"2021-03-30T22:27:50.5347251Z","lastActionDateTimeUtc":"2021-03-30T22:28:03.1703606Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"e7955a62-ddcb-4638-a1ff-8ac22550489c","createdDateTimeUtc":"2021-03-30T22:27:33.2874713Z","lastActionDateTimeUtc":"2021-03-30T22:27:45.3384527Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"56cb62fa-1bed-4495-a855-6a70a075369c","createdDateTimeUtc":"2021-03-30T22:27:16.9490542Z","lastActionDateTimeUtc":"2021-03-30T22:27:29.1195508Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4991319a-782e-4ef1-bfab-b74f2c27272e","createdDateTimeUtc":"2021-03-30T22:27:06.6829092Z","lastActionDateTimeUtc":"2021-03-30T22:27:13.0879779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2155&$top=316&$maxpagesize=50"}' + headers: + apim-request-id: 6d80b6db-045f-4c37-ac3f-ef71cef4944b + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:15 GMT + etag: '"F87E1985C379CF57C4DDF476733573CC4A8A9F782FDE7F98BDA98138CEA1747C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6d80b6db-045f-4c37-ac3f-ef71cef4944b + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2105&$top=366&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2155&$top=316&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"34926f98-4c82-4405-9531-edd1a300f2fe","createdDateTimeUtc":"2021-03-30T22:26:51.5895674Z","lastActionDateTimeUtc":"2021-03-30T22:27:03.207651Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7d6095f1-586d-4459-9566-2cf1fb4e7b26","createdDateTimeUtc":"2021-03-30T22:26:35.0849479Z","lastActionDateTimeUtc":"2021-03-30T22:26:46.9693229Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"426fa133-6023-414a-936c-34825cb2c925","createdDateTimeUtc":"2021-03-30T22:26:16.5832559Z","lastActionDateTimeUtc":"2021-03-30T22:26:30.8380802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"11d9523e-7399-4241-8cb6-831a7afd61e4","createdDateTimeUtc":"2021-03-30T22:26:08.4578662Z","lastActionDateTimeUtc":"2021-03-30T22:26:12.8998426Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"262dd9e2-134a-4a88-a6ef-db6f9bf084b0","createdDateTimeUtc":"2021-03-30T22:25:52.1860061Z","lastActionDateTimeUtc":"2021-03-30T22:26:04.6809611Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1f6fd73d-eba2-4186-bcbc-4171838a5f83","createdDateTimeUtc":"2021-03-30T22:25:32.2371385Z","lastActionDateTimeUtc":"2021-03-30T22:25:48.6012935Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f5478d9b-1a51-4a0e-a3c4-61330dadc63f","createdDateTimeUtc":"2021-03-30T22:25:10.5248287Z","lastActionDateTimeUtc":"2021-03-30T22:25:22.5468904Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3171a987-e794-4d71-87a7-84fbb6983015","createdDateTimeUtc":"2021-03-30T22:24:54.3426705Z","lastActionDateTimeUtc":"2021-03-30T22:25:06.6522393Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"349c379e-2d97-4009-b738-0260bab38716","createdDateTimeUtc":"2021-03-30T22:24:30.4235548Z","lastActionDateTimeUtc":"2021-03-30T22:24:50.5888633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0b3270d4-1eef-4179-aa64-ede8921fe2b4","createdDateTimeUtc":"2021-03-30T22:24:11.872606Z","lastActionDateTimeUtc":"2021-03-30T22:24:24.4145668Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c5461e0-0edc-4802-8176-35bb41e620f0","createdDateTimeUtc":"2021-03-30T22:23:55.8528242Z","lastActionDateTimeUtc":"2021-03-30T22:24:08.3638995Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c1163e00-d3df-402c-b3e3-b2fee3b8da98","createdDateTimeUtc":"2021-03-30T22:23:38.7580547Z","lastActionDateTimeUtc":"2021-03-30T22:23:52.3031842Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cc598146-b510-46ad-83a6-24f583a2851d","createdDateTimeUtc":"2021-03-30T22:23:22.0591885Z","lastActionDateTimeUtc":"2021-03-30T22:23:34.4835013Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f9ea43c-de76-4083-81a9-7ec628177a1b","createdDateTimeUtc":"2021-03-30T22:23:03.1475428Z","lastActionDateTimeUtc":"2021-03-30T22:23:18.2317152Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ee87895c-d7f1-48e8-90af-76e851cf881a","createdDateTimeUtc":"2021-03-30T22:22:49.7930945Z","lastActionDateTimeUtc":"2021-03-30T22:22:53.4328712Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1d5b6a82-552e-41cc-b3bd-e385a45a7848","createdDateTimeUtc":"2021-03-30T22:22:36.0871863Z","lastActionDateTimeUtc":"2021-03-30T22:22:37.3887301Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"ee90d824-958d-440d-ad89-216921bae409","createdDateTimeUtc":"2021-03-30T22:22:19.8959515Z","lastActionDateTimeUtc":"2021-03-30T22:22:32.1716014Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b48f4c7e-b205-4ea6-bb61-95aed0b58832","createdDateTimeUtc":"2021-03-30T22:22:02.3155765Z","lastActionDateTimeUtc":"2021-03-30T22:22:16.1495571Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e4a2abea-c7a8-4fe5-a8ee-0bd44d7d7b4a","createdDateTimeUtc":"2021-03-30T22:20:38.749601Z","lastActionDateTimeUtc":"2021-03-30T22:20:50.0669734Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"d8f0c2dc-6e26-4004-9757-5b1f07ecbc2c","createdDateTimeUtc":"2021-03-30T22:20:21.1424677Z","lastActionDateTimeUtc":"2021-03-30T22:20:33.971039Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"386edd99-4b8e-47ce-99b6-cb6496f1cd58","createdDateTimeUtc":"2021-03-30T22:20:04.507836Z","lastActionDateTimeUtc":"2021-03-30T22:20:17.9129622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b10945db-df7c-45e8-82b4-e05c30cb33b7","createdDateTimeUtc":"2021-03-30T22:19:55.3288448Z","lastActionDateTimeUtc":"2021-03-30T22:20:00.3589499Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0c07ef43-1c41-4b02-896d-21bcd926f5e1","createdDateTimeUtc":"2021-03-30T22:19:39.1703481Z","lastActionDateTimeUtc":"2021-03-30T22:19:51.7495251Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"7376d25b-eeab-4f3c-8795-25ad12a6d7c9","createdDateTimeUtc":"2021-03-30T22:18:04.5259438Z","lastActionDateTimeUtc":"2021-03-30T22:18:25.6469372Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af94dc67-fe4b-417b-88c2-33ca998a7cf9","createdDateTimeUtc":"2021-03-30T22:17:46.929287Z","lastActionDateTimeUtc":"2021-03-30T22:17:59.6758747Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"6f06be6e-176e-428b-9700-73aa59c2f38a","createdDateTimeUtc":"2021-03-30T22:17:31.0769434Z","lastActionDateTimeUtc":"2021-03-30T22:17:43.518506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b7a9c5a0-bc7f-440c-ba33-8da48204a6db","createdDateTimeUtc":"2021-03-30T22:17:14.8112855Z","lastActionDateTimeUtc":"2021-03-30T22:17:27.473095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"933e7856-9dae-4595-b2ad-08ffb3156104","createdDateTimeUtc":"2021-03-30T22:16:56.8266064Z","lastActionDateTimeUtc":"2021-03-30T22:17:11.4371314Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"fb876c55-914e-49e2-a2ed-5ba8a63fd43d","createdDateTimeUtc":"2021-03-30T18:02:45.3731982Z","lastActionDateTimeUtc":"2021-03-30T18:02:56.7982107Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"abadc37d-6ec1-4639-bd7a-19ac6c90a940","createdDateTimeUtc":"2021-03-30T18:02:27.9820994Z","lastActionDateTimeUtc":"2021-03-30T18:02:40.7354706Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9b4e16b0-3cac-4974-8daa-11432d8dfe84","createdDateTimeUtc":"2021-03-30T18:02:12.809939Z","lastActionDateTimeUtc":"2021-03-30T18:02:24.6727776Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"80285edd-82c2-4bfb-b38d-1b744aab3e78","createdDateTimeUtc":"2021-03-30T18:01:56.197824Z","lastActionDateTimeUtc":"2021-03-30T18:02:08.594263Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8484f933-c083-4700-874a-c3cf8a05dff6","createdDateTimeUtc":"2021-03-30T18:01:40.8555456Z","lastActionDateTimeUtc":"2021-03-30T18:01:52.4780969Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"6209fb80-cb30-449d-8830-43971c98d787","createdDateTimeUtc":"2021-03-30T18:01:14.8406918Z","lastActionDateTimeUtc":"2021-03-30T18:01:36.4690169Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"af2d768f-e24d-4f10-b982-340d5f6cf28f","createdDateTimeUtc":"2021-03-30T18:00:48.5336182Z","lastActionDateTimeUtc":"2021-03-30T18:01:10.4220503Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b29755f0-0c34-4492-b504-e7704909650a","createdDateTimeUtc":"2021-03-30T18:00:31.8732381Z","lastActionDateTimeUtc":"2021-03-30T18:00:44.2809576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f146e222-342a-489f-bf18-fb6e7f4aa746","createdDateTimeUtc":"2021-03-30T18:00:15.4203495Z","lastActionDateTimeUtc":"2021-03-30T18:00:28.2654506Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f2026d72-3ad4-4095-afe7-de93c34a6bdb","createdDateTimeUtc":"2021-03-30T17:59:56.5484888Z","lastActionDateTimeUtc":"2021-03-30T18:00:12.1598853Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"26bfa496-866d-4b79-af59-16b9a504c7d9","createdDateTimeUtc":"2021-03-30T17:59:33.6264956Z","lastActionDateTimeUtc":"2021-03-30T17:59:46.1710608Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"320ad240-b3bb-48e0-bd68-1e0b2d24238c","createdDateTimeUtc":"2021-03-30T17:59:17.7315152Z","lastActionDateTimeUtc":"2021-03-30T17:59:30.0765381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1719fa96-7e08-48f5-9bfd-1535fbec6c26","createdDateTimeUtc":"2021-03-30T17:59:03.8931666Z","lastActionDateTimeUtc":"2021-03-30T17:59:13.9994492Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8977295a-0324-4943-8d2c-8e344a13eae7","createdDateTimeUtc":"2021-03-30T17:58:52.5874716Z","lastActionDateTimeUtc":"2021-03-30T17:58:57.9667675Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"121b64ce-48e5-4b34-92a8-2c17e79940ea","createdDateTimeUtc":"2021-03-30T17:58:36.5854218Z","lastActionDateTimeUtc":"2021-03-30T17:58:49.9041609Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8c769fdc-fffd-4224-9e61-16a05f5f5d90","createdDateTimeUtc":"2021-03-30T17:58:12.4225002Z","lastActionDateTimeUtc":"2021-03-30T17:58:33.8728416Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"92908a6c-bd14-4c32-a37f-c3bea47984c1","createdDateTimeUtc":"2021-03-30T17:57:55.5492647Z","lastActionDateTimeUtc":"2021-03-30T17:58:07.8729144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f3f505f2-ff2a-491b-916e-3641fd41d2b4","createdDateTimeUtc":"2021-03-30T17:57:37.0272415Z","lastActionDateTimeUtc":"2021-03-30T17:57:51.7317326Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0cd7cbc1-470a-4caf-af1c-536d06045b75","createdDateTimeUtc":"2021-03-30T17:57:23.2036305Z","lastActionDateTimeUtc":"2021-03-30T17:57:25.970757Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1aebe581-750b-4e10-b9c5-f1c6a07e5dd5","createdDateTimeUtc":"2021-03-30T17:57:09.2928781Z","lastActionDateTimeUtc":"2021-03-30T17:57:17.8899143Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"f999e31a-f4b6-4fd6-8f26-d216ab09af25","createdDateTimeUtc":"2021-03-30T17:57:01.0303698Z","lastActionDateTimeUtc":"2021-03-30T17:57:05.7001246Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8bfcc6c4-de93-437b-8bbe-ca006b4e461a","createdDateTimeUtc":"2021-03-30T17:56:39.0344582Z","lastActionDateTimeUtc":"2021-03-30T17:56:57.6687029Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2205&$top=266&$maxpagesize=50"}' + headers: + apim-request-id: a3e0bf7c-c8bb-485a-8120-77f32b21b908 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:15 GMT + etag: '"FF0E547CC4A2E7DCB02882739D09C8A013F61E692689B3F632178D8BAC1D96DB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a3e0bf7c-c8bb-485a-8120-77f32b21b908 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2155&$top=316&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2205&$top=266&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"48eb81d9-808b-426a-8e98-1c20674f1c14","createdDateTimeUtc":"2021-03-30T01:31:53.0819911Z","lastActionDateTimeUtc":"2021-03-30T01:32:14.9039087Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"8bd53596-af00-469a-9176-715c935c6b84","createdDateTimeUtc":"2021-03-30T01:31:36.3323265Z","lastActionDateTimeUtc":"2021-03-30T01:31:48.9114683Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1facff75-93b6-4f72-9365-e22a4b86d47a","createdDateTimeUtc":"2021-03-30T01:31:20.4022499Z","lastActionDateTimeUtc":"2021-03-30T01:31:32.8645761Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e5043e30-0578-46ce-8d95-9e723d78f4e4","createdDateTimeUtc":"2021-03-30T01:31:04.7460465Z","lastActionDateTimeUtc":"2021-03-30T01:31:16.8331322Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7f7e1640-2f6b-4b80-8524-e01e109cb735","createdDateTimeUtc":"2021-03-30T01:30:49.3661667Z","lastActionDateTimeUtc":"2021-03-30T01:31:00.759313Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"2f6357f5-50fe-45d0-9486-cb2192bac7df","createdDateTimeUtc":"2021-03-30T01:30:33.1985524Z","lastActionDateTimeUtc":"2021-03-30T01:30:44.664183Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0043fed7-aa62-4fa2-83c8-2c0e07910597","createdDateTimeUtc":"2021-03-30T01:30:16.1364275Z","lastActionDateTimeUtc":"2021-03-30T01:30:28.6455374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8acb205d-b5c8-44ff-9285-129cf51487b1","createdDateTimeUtc":"2021-03-30T01:30:07.3051264Z","lastActionDateTimeUtc":"2021-03-30T01:30:12.5986656Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8583fd44-a370-49cd-91c6-118ff2e3faec","createdDateTimeUtc":"2021-03-30T01:29:59.6536482Z","lastActionDateTimeUtc":"2021-03-30T01:30:04.5360167Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"93ea123b-300f-43cb-9fc3-96f00df9c50d","createdDateTimeUtc":"2021-03-30T01:29:39.1665269Z","lastActionDateTimeUtc":"2021-03-30T01:29:56.4893781Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"f1818be5-4775-4514-b557-1ec8f3efdfa8","createdDateTimeUtc":"2021-03-30T01:29:17.9521823Z","lastActionDateTimeUtc":"2021-03-30T01:29:30.3794028Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3479f224-1d8d-4d76-ba85-266abe5727ea","createdDateTimeUtc":"2021-03-30T01:29:01.3781605Z","lastActionDateTimeUtc":"2021-03-30T01:29:14.3482059Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53edb376-487d-4245-987f-c43f5c427d6f","createdDateTimeUtc":"2021-03-30T01:28:47.1931023Z","lastActionDateTimeUtc":"2021-03-30T01:28:58.2696298Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"476d0bca-6318-4975-bb25-a3ff73d97c0a","createdDateTimeUtc":"2021-03-30T01:28:29.4273599Z","lastActionDateTimeUtc":"2021-03-30T01:28:42.2225884Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d0cf60fb-6212-4cf0-90d4-486e6bde8188","createdDateTimeUtc":"2021-03-30T01:28:12.7956079Z","lastActionDateTimeUtc":"2021-03-30T01:28:26.1287855Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8951698a-e2c4-49ad-9b91-ad8f8441ede5","createdDateTimeUtc":"2021-03-30T01:27:55.9266201Z","lastActionDateTimeUtc":"2021-03-30T01:28:10.1307083Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"cf390642-888e-4df6-a7d3-7354e06eae48","createdDateTimeUtc":"2021-03-30T01:27:30.4866106Z","lastActionDateTimeUtc":"2021-03-30T01:27:52.1595137Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"57c3e574-4563-43dd-bef7-3b7754578e92","createdDateTimeUtc":"2021-03-30T01:27:10.4901597Z","lastActionDateTimeUtc":"2021-03-30T01:27:25.9408643Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"c755e01c-654f-4112-bd96-eab92226f0b1","createdDateTimeUtc":"2021-03-30T01:26:56.7610105Z","lastActionDateTimeUtc":"2021-03-30T01:26:59.925793Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"1ccefd22-3fb3-4fa8-bd60-806a270c1ae1","createdDateTimeUtc":"2021-03-30T01:26:43.5736455Z","lastActionDateTimeUtc":"2021-03-30T01:26:51.8781239Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2f8f810a-441c-49f2-8da0-027d6ef2b081","createdDateTimeUtc":"2021-03-30T01:26:27.2428899Z","lastActionDateTimeUtc":"2021-03-30T01:26:39.8623374Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e2c4c38c-cda7-4779-be9e-8665bacd12c8","createdDateTimeUtc":"2021-03-30T01:26:04.287641Z","lastActionDateTimeUtc":"2021-03-30T01:26:23.8154967Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"7230423d-8b1f-4bbf-bc38-d613de6de8b0","createdDateTimeUtc":"2021-03-30T01:19:48.2779706Z","lastActionDateTimeUtc":"2021-03-30T01:20:07.3072159Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2ec0970d-9658-4ef7-939b-1b5f99477893","createdDateTimeUtc":"2021-03-30T01:19:24.6524072Z","lastActionDateTimeUtc":"2021-03-30T01:19:30.2434417Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"c8c42630-7fd3-4614-9363-9838a7dfe57f","createdDateTimeUtc":"2021-03-30T01:18:54.8163201Z","lastActionDateTimeUtc":"2021-03-30T01:19:11.1059358Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b0dc8912-c6a1-4195-a53f-0c379b25c8ac","createdDateTimeUtc":"2021-03-30T01:18:22.3938113Z","lastActionDateTimeUtc":"2021-03-30T01:18:35.0969113Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"595f68f1-d978-484f-ab97-c187da7b7277","createdDateTimeUtc":"2021-03-30T01:18:05.7508736Z","lastActionDateTimeUtc":"2021-03-30T01:18:19.0578081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"72826bc9-f023-4934-bd67-1c3db3d41cd0","createdDateTimeUtc":"2021-03-30T01:17:39.5321215Z","lastActionDateTimeUtc":"2021-03-30T01:18:02.969676Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77bcb770-5ded-4ae0-beb9-816c3737c475","createdDateTimeUtc":"2021-03-30T01:16:45.8295166Z","lastActionDateTimeUtc":"2021-03-30T01:17:06.9015553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"03511dae-04be-4090-bf9b-bdfed4f2382d","createdDateTimeUtc":"2021-03-30T01:16:27.7360807Z","lastActionDateTimeUtc":"2021-03-30T01:16:40.7590419Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5526a264-23c2-4b07-b8dc-d3a149ab0d67","createdDateTimeUtc":"2021-03-30T01:16:11.9044168Z","lastActionDateTimeUtc":"2021-03-30T01:16:24.74543Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"43826664-f908-4174-82c4-0ebc8836d568","createdDateTimeUtc":"2021-03-30T01:15:55.9457248Z","lastActionDateTimeUtc":"2021-03-30T01:16:08.7643286Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9a64f8c4-e241-46bb-9baa-622bb966303f","createdDateTimeUtc":"2021-03-30T01:15:42.0479081Z","lastActionDateTimeUtc":"2021-03-30T01:15:52.6301017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"ad320f02-3d72-44c9-993e-160fee7fb48b","createdDateTimeUtc":"2021-03-30T01:13:50.5444379Z","lastActionDateTimeUtc":"2021-03-30T01:14:06.525718Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"34a1d749-f450-4f32-bbc4-a2884e414aef","createdDateTimeUtc":"2021-03-30T01:12:13.6291424Z","lastActionDateTimeUtc":"2021-03-30T01:12:23.4624349Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2a27a0cb-0c83-4880-81ec-9a2203d413c6","createdDateTimeUtc":"2021-03-30T01:10:54.1920436Z","lastActionDateTimeUtc":"2021-03-30T01:11:10.3515779Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"53ffd562-4f41-42f7-90d1-cf214fd8fce6","createdDateTimeUtc":"2021-03-30T01:09:01.7348734Z","lastActionDateTimeUtc":"2021-03-30T01:09:14.2407381Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf3acea0-848a-4c90-87db-e1cd2272cffe","createdDateTimeUtc":"2021-03-30T01:08:45.7542753Z","lastActionDateTimeUtc":"2021-03-30T01:08:58.2092914Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"623d0c6f-5363-49ff-af20-3cd640ffdd00","createdDateTimeUtc":"2021-03-30T01:08:23.6895663Z","lastActionDateTimeUtc":"2021-03-30T01:08:42.1621958Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"9c26edc9-c99a-47bf-a3c6-6a5509b8ceaf","createdDateTimeUtc":"2021-03-30T01:05:52.7227396Z","lastActionDateTimeUtc":"2021-03-30T01:06:05.9108847Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1eaa7424-2b82-4524-9756-c084d924543b","createdDateTimeUtc":"2021-03-30T01:05:37.34795Z","lastActionDateTimeUtc":"2021-03-30T01:05:49.9104432Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3a5fdc83-0689-498a-a50e-69a519d4c195","createdDateTimeUtc":"2021-03-30T01:05:16.2731414Z","lastActionDateTimeUtc":"2021-03-30T01:05:33.8166556Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"86f7ee6d-15e0-466a-b21f-7b9f4fff9de6","createdDateTimeUtc":"2021-03-30T00:52:05.5811072Z","lastActionDateTimeUtc":"2021-03-30T00:52:16.8711804Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"201546a8-4519-4f4b-9c68-7da04ceb5417","createdDateTimeUtc":"2021-03-30T00:51:48.2868489Z","lastActionDateTimeUtc":"2021-03-30T00:52:00.8391751Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"03c22391-2d3f-423a-bfe5-d8858b0e1eaa","createdDateTimeUtc":"2021-03-30T00:51:22.1607877Z","lastActionDateTimeUtc":"2021-03-30T00:51:44.7454103Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b95d8b2f-3e41-4452-80a7-6e02652837c3","createdDateTimeUtc":"2021-03-30T00:50:56.2652612Z","lastActionDateTimeUtc":"2021-03-30T00:51:18.6979802Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f23c2b3f-b344-4a33-aba2-dfc379c7eef4","createdDateTimeUtc":"2021-03-30T00:50:30.8205765Z","lastActionDateTimeUtc":"2021-03-30T00:50:52.6190455Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"3d8f6500-eaef-4946-b2ec-7a0e5088a8a8","createdDateTimeUtc":"2021-03-29T21:00:06.2566536Z","lastActionDateTimeUtc":"2021-03-29T21:00:33.1322787Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"419393a2-6d39-416c-904c-824b8da06435","createdDateTimeUtc":"2021-03-29T20:59:40.7249205Z","lastActionDateTimeUtc":"2021-03-29T20:59:49.2403702Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"180a75e8-9121-401d-9a84-2a5a8d4c8125","createdDateTimeUtc":"2021-03-29T20:59:04.298182Z","lastActionDateTimeUtc":"2021-03-29T20:59:27.0834876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2255&$top=216&$maxpagesize=50"}' + headers: + apim-request-id: 296b017e-16bd-4bc5-a67f-62951a47cb6d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:15 GMT + etag: '"F6B62F79643C3A5F41F4DDCB8A0DB86597154BC4BEFBA6C548F42412BA665F66"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 296b017e-16bd-4bc5-a67f-62951a47cb6d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2205&$top=266&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2255&$top=216&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"655607d1-9c93-46cb-86c9-851354ca40a5","createdDateTimeUtc":"2021-03-29T20:58:18.0976885Z","lastActionDateTimeUtc":"2021-03-29T20:58:40.9891972Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"14803b52-fc5e-4de6-bf8a-89da14e7023c","createdDateTimeUtc":"2021-03-29T20:58:01.3429914Z","lastActionDateTimeUtc":"2021-03-29T20:58:14.9417376Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f088ca4b-14e4-408f-bea2-6012b4e170ac","createdDateTimeUtc":"2021-03-29T20:57:45.7572813Z","lastActionDateTimeUtc":"2021-03-29T20:57:58.8636956Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ec0b7af7-489d-4539-9903-3694b4ccf910","createdDateTimeUtc":"2021-03-29T20:57:01.1859249Z","lastActionDateTimeUtc":"2021-03-29T20:57:12.7022104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"4196b1a3-8b72-436b-9abc-0b63a4ab13d0","createdDateTimeUtc":"2021-03-29T20:56:45.1427261Z","lastActionDateTimeUtc":"2021-03-29T20:56:56.7551155Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b620bb22-46f1-487e-bfe1-8b1404b815f7","createdDateTimeUtc":"2021-03-29T20:56:29.3112722Z","lastActionDateTimeUtc":"2021-03-29T20:56:40.7063937Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bf873bbd-2c57-4364-9fb5-7f63c8a93892","createdDateTimeUtc":"2021-03-29T20:56:11.5481208Z","lastActionDateTimeUtc":"2021-03-29T20:56:24.6746974Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"bdca6a64-8880-4597-8297-37e262b03770","createdDateTimeUtc":"2021-03-29T20:55:47.1098033Z","lastActionDateTimeUtc":"2021-03-29T20:56:08.6025017Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"9567054f-075b-4ab2-bf96-c5ce83384e36","createdDateTimeUtc":"2021-03-29T20:43:04.9649481Z","lastActionDateTimeUtc":"2021-03-29T20:43:21.8862771Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"60a4b077-93bf-4df0-84a3-83f7fb50b478","createdDateTimeUtc":"2021-03-29T20:42:24.1257595Z","lastActionDateTimeUtc":"2021-03-29T20:42:45.8380106Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"41776ea2-3e69-4105-8e0e-3193dde9be8f","createdDateTimeUtc":"2021-03-29T20:39:06.8450252Z","lastActionDateTimeUtc":"2021-03-29T20:39:29.6640624Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a2a8d13b-08a1-42f1-abf0-065f8a9d350b","createdDateTimeUtc":"2021-03-29T20:38:50.8594596Z","lastActionDateTimeUtc":"2021-03-29T20:39:03.5700927Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3923eb5f-8f0c-422a-845c-214bd43cfb78","createdDateTimeUtc":"2021-03-29T20:38:31.6702301Z","lastActionDateTimeUtc":"2021-03-29T20:38:47.4758514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1295a4f-781e-4a6b-bdd7-01312ac668c7","createdDateTimeUtc":"2021-03-29T20:36:18.9152679Z","lastActionDateTimeUtc":"2021-03-29T20:36:31.3338337Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d2e3f418-dca7-4824-8248-82cb646e28df","createdDateTimeUtc":"2021-03-29T20:32:32.8907831Z","lastActionDateTimeUtc":"2021-03-29T20:32:45.0188514Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"33710d70-7bd8-4b55-bb25-7bf7f7f8cf73","createdDateTimeUtc":"2021-03-29T20:32:17.3847372Z","lastActionDateTimeUtc":"2021-03-29T20:32:29.0656428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5e5ffec6-0775-4451-82e3-39fd7d31b143","createdDateTimeUtc":"2021-03-29T20:32:01.7941397Z","lastActionDateTimeUtc":"2021-03-29T20:32:12.9718489Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aca513a8-b6ac-4fae-8dfc-3d21b7f3cca2","createdDateTimeUtc":"2021-03-29T20:30:53.6900624Z","lastActionDateTimeUtc":"2021-03-29T20:31:00.9848812Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"64a05f9c-0c83-4e68-a1ea-ad0ee5c4fb66","createdDateTimeUtc":"2021-03-29T20:30:10.9001982Z","lastActionDateTimeUtc":"2021-03-29T20:30:14.9552464Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fd9e0829-6d5d-4efa-85bf-5930492f2612","createdDateTimeUtc":"2021-03-29T20:29:15.2459596Z","lastActionDateTimeUtc":"2021-03-29T20:29:26.6693477Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"6d0f6de8-213f-4934-901a-8dec22e59d37","createdDateTimeUtc":"2021-03-29T20:29:00.1084715Z","lastActionDateTimeUtc":"2021-03-29T20:29:10.7047633Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"5dd9c324-c423-44d4-b545-accd2eacff5b","createdDateTimeUtc":"2021-03-29T20:28:39.6931597Z","lastActionDateTimeUtc":"2021-03-29T20:28:52.672849Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af8cb235-dcd0-4565-b39a-03be50ec725a","createdDateTimeUtc":"2021-03-29T20:28:14.2762623Z","lastActionDateTimeUtc":"2021-03-29T20:28:36.5011889Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0ede1cc4-d657-4092-9c15-bc9c9d9b7da3","createdDateTimeUtc":"2021-03-29T20:27:51.8565603Z","lastActionDateTimeUtc":"2021-03-29T20:28:10.4687553Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"27ad87eb-1811-432a-9d42-e9c1f6f44c11","createdDateTimeUtc":"2021-03-29T20:16:11.2840562Z","lastActionDateTimeUtc":"2021-03-29T20:16:23.9147785Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0f3fe6cf-4fd9-4bba-ac32-a008aafd3ca2","createdDateTimeUtc":"2021-03-29T20:15:55.2835992Z","lastActionDateTimeUtc":"2021-03-29T20:16:07.8677697Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"81861917-6d50-41a2-9561-d86100838527","createdDateTimeUtc":"2021-03-29T20:15:33.7488129Z","lastActionDateTimeUtc":"2021-03-29T20:15:51.9143394Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e9f9409a-cee8-478d-9e8a-d1bf4915fe9e","createdDateTimeUtc":"2021-03-29T20:14:55.4422665Z","lastActionDateTimeUtc":"2021-03-29T20:14:57.8516592Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"fec706a6-9da2-4067-b6aa-8b616d29f090","createdDateTimeUtc":"2021-03-29T20:13:30.9333002Z","lastActionDateTimeUtc":"2021-03-29T20:13:41.7032341Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"2fb8de78-b316-4e27-a576-99e1156810e8","createdDateTimeUtc":"2021-03-29T20:10:03.5421386Z","lastActionDateTimeUtc":"2021-03-29T20:10:15.4124718Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"69f2670c-2722-457d-92aa-47fce9d224a0","createdDateTimeUtc":"2021-03-29T20:09:47.8029865Z","lastActionDateTimeUtc":"2021-03-29T20:09:59.3965876Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"38962482-865b-420a-8a75-684266b323d3","createdDateTimeUtc":"2021-03-29T20:09:30.6178699Z","lastActionDateTimeUtc":"2021-03-29T20:09:43.3172578Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8317e06a-e3a1-4c4c-82b8-9d9613f1a6c0","createdDateTimeUtc":"2021-03-29T20:09:14.6044317Z","lastActionDateTimeUtc":"2021-03-29T20:09:27.2391292Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e6ea1eda-804b-4cd6-8171-94b170814588","createdDateTimeUtc":"2021-03-29T20:09:00.1638121Z","lastActionDateTimeUtc":"2021-03-29T20:09:11.1545659Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"441c629a-c28c-4816-b6cd-e48419d9840b","createdDateTimeUtc":"2021-03-29T20:01:29.9256337Z","lastActionDateTimeUtc":"2021-03-29T20:01:29.9258767Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"50f6cdd0-508e-4410-ba39-96b6f607818b","createdDateTimeUtc":"2021-03-29T20:01:02.8549347Z","lastActionDateTimeUtc":"2021-03-29T20:01:14.7495289Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"0db78e26-939c-4ccb-8f70-bd9dee3ce3eb","createdDateTimeUtc":"2021-03-29T20:00:35.0653183Z","lastActionDateTimeUtc":"2021-03-29T20:00:58.7021738Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76c04583-2a3d-4199-919e-dbbb6ec9bba7","createdDateTimeUtc":"2021-03-29T20:00:05.0081575Z","lastActionDateTimeUtc":"2021-03-29T20:00:32.0000375Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"b06fc2e8-84b2-4d6a-b273-6605bda9da76","createdDateTimeUtc":"2021-03-29T19:53:00.4269502Z","lastActionDateTimeUtc":"2021-03-29T19:53:10.150674Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"b15f8851-cf4c-4c6a-9859-d207d697671e","createdDateTimeUtc":"2021-03-29T19:52:31.0363004Z","lastActionDateTimeUtc":"2021-03-29T19:52:54.0876703Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"84d718ba-48a2-4e90-9542-f887540729b3","createdDateTimeUtc":"2021-03-29T19:52:06.5903951Z","lastActionDateTimeUtc":"2021-03-29T19:52:28.0874373Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"af085808-e31f-4699-9109-15bf0ea660c6","createdDateTimeUtc":"2021-03-29T19:51:49.7439721Z","lastActionDateTimeUtc":"2021-03-29T19:52:01.9935212Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"4f35bba5-3007-462a-a6a7-61a94824ff94","createdDateTimeUtc":"2021-03-29T19:51:33.8432225Z","lastActionDateTimeUtc":"2021-03-29T19:51:45.8949687Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"346140aa-a1a7-49e9-9aaf-fd08952ee777","createdDateTimeUtc":"2021-03-29T19:49:17.9556766Z","lastActionDateTimeUtc":"2021-03-29T19:49:29.7752813Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"a7059970-99d9-40c4-8c16-1f88aaf93148","createdDateTimeUtc":"2021-03-29T19:49:02.701186Z","lastActionDateTimeUtc":"2021-03-29T19:49:13.6638569Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2d8e5614-5a9a-4de2-a8ff-48ac4e73a285","createdDateTimeUtc":"2021-03-29T19:48:44.983133Z","lastActionDateTimeUtc":"2021-03-29T19:48:57.6640211Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"115cdf2d-261a-4b15-ad5f-3c588332d1c3","createdDateTimeUtc":"2021-03-29T19:48:30.2946409Z","lastActionDateTimeUtc":"2021-03-29T19:48:41.5693311Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"49b14aaf-cce5-42fb-9d1d-9e3e2d707900","createdDateTimeUtc":"2021-03-29T19:47:41.6378387Z","lastActionDateTimeUtc":"2021-03-29T19:48:25.4754986Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"c492eb3b-6e8d-4794-80a4-c32c64684bdc","createdDateTimeUtc":"2021-03-29T19:46:32.9538561Z","lastActionDateTimeUtc":"2021-03-29T19:46:44.3321688Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"7956dfac-dd04-4763-8118-561c398c4029","createdDateTimeUtc":"2021-03-29T19:46:19.15972Z","lastActionDateTimeUtc":"2021-03-29T19:46:28.2870622Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2305&$top=166&$maxpagesize=50"}' + headers: + apim-request-id: c9ea2cd9-4ce5-476c-8766-2b10a03e57a3 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:16 GMT + etag: '"64E762A69D05B9088E3E9E1DFD32E6B32918365C4BE2B223E3A434D9E492D11B"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: c9ea2cd9-4ce5-476c-8766-2b10a03e57a3 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2255&$top=216&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2305&$top=166&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"e1259400-f2f0-4b37-9d9c-e39647b508d2","createdDateTimeUtc":"2021-03-29T19:45:59.583831Z","lastActionDateTimeUtc":"2021-03-29T19:46:12.2712574Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"de711d01-28a8-434e-bb46-545b7b8045ff","createdDateTimeUtc":"2021-03-29T19:45:44.2333554Z","lastActionDateTimeUtc":"2021-03-29T19:45:56.2400359Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f608dcbd-f765-40aa-b727-baabd044c00d","createdDateTimeUtc":"2021-03-29T19:45:26.8263036Z","lastActionDateTimeUtc":"2021-03-29T19:45:40.1722421Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"8cca0228-7990-4d8d-b7ee-30068f7d0cd2","createdDateTimeUtc":"2021-03-29T19:37:34.4678982Z","lastActionDateTimeUtc":"2021-03-29T19:37:38.6266754Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"80fc5a36-d65b-478d-9d47-c8de36ed3437","createdDateTimeUtc":"2021-03-29T19:36:10.1508885Z","lastActionDateTimeUtc":"2021-03-29T19:36:22.7180043Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"dba58213-3592-472e-b9ea-a2180f30ad4d","createdDateTimeUtc":"2021-03-29T19:26:22.5356629Z","lastActionDateTimeUtc":"2021-03-29T19:26:36.0085061Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"ef0ce7ec-0a89-4f7e-83c7-aff5994b3e3e","createdDateTimeUtc":"2021-03-29T19:26:06.6448578Z","lastActionDateTimeUtc":"2021-03-29T19:26:19.9308826Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"3d913bf8-c5c9-4288-95db-4657721e81ef","createdDateTimeUtc":"2021-03-29T19:25:48.384978Z","lastActionDateTimeUtc":"2021-03-29T19:26:03.8985494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"2a468f36-21a6-4bb6-a660-2b92e7007638","createdDateTimeUtc":"2021-03-29T19:23:24.841224Z","lastActionDateTimeUtc":"2021-03-29T19:23:37.7251265Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8d8c67a5-37ba-4993-9f5e-5b8fb7569ee4","createdDateTimeUtc":"2021-03-29T19:23:08.8335112Z","lastActionDateTimeUtc":"2021-03-29T19:23:21.7254068Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a1d1a95d-22e9-4ef1-85df-fe05f72519da","createdDateTimeUtc":"2021-03-29T19:22:56.3585694Z","lastActionDateTimeUtc":"2021-03-29T19:23:05.6468707Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"a64dc7a5-ab54-47b7-9a37-159d0434d25c","createdDateTimeUtc":"2021-03-29T19:17:43.9548183Z","lastActionDateTimeUtc":"2021-03-29T19:17:49.3627424Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"eef915b2-c747-4103-ab5a-2556cddc4f19","createdDateTimeUtc":"2021-03-29T19:17:22.5294097Z","lastActionDateTimeUtc":"2021-03-29T19:17:41.3154125Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d4cc9c1b-3d66-45ec-946a-4b1bf39bfa03","createdDateTimeUtc":"2021-03-29T19:16:58.2676557Z","lastActionDateTimeUtc":"2021-03-29T19:17:15.2530824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"76fe5179-cedc-4563-bff2-488e5b9eb243","createdDateTimeUtc":"2021-03-29T19:12:49.2391025Z","lastActionDateTimeUtc":"2021-03-29T19:12:59.0023575Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"19acb419-ffa8-49a9-baea-f7bbf55bd896","createdDateTimeUtc":"2021-03-29T19:12:31.6940506Z","lastActionDateTimeUtc":"2021-03-29T19:12:42.9844074Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"1186c232-0e9f-4fe7-abeb-3b3b6004d40d","createdDateTimeUtc":"2021-03-29T19:12:15.0385497Z","lastActionDateTimeUtc":"2021-03-29T19:12:26.8591095Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"219a9643-f311-49e0-876d-88cc8ef6e98c","createdDateTimeUtc":"2021-03-29T19:11:48.7254379Z","lastActionDateTimeUtc":"2021-03-29T19:12:10.8588108Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"d8dbdb83-ddac-4701-8d08-620e627c5689","createdDateTimeUtc":"2021-03-29T19:11:11.5422312Z","lastActionDateTimeUtc":"2021-03-29T19:11:44.717888Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"a9253eb9-ea32-4b19-a42c-4ff0568f69bb","createdDateTimeUtc":"2021-03-29T18:44:45.8488979Z","lastActionDateTimeUtc":"2021-03-29T18:45:01.9490038Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}},{"id":"0a4d01a6-2866-4582-b777-a9009cb47fae","createdDateTimeUtc":"2021-03-29T18:37:42.8711572Z","lastActionDateTimeUtc":"2021-03-29T18:38:05.6657196Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"aec40cd7-5b0c-43ab-aec7-2a689444f4ef","createdDateTimeUtc":"2021-03-29T18:37:18.4465593Z","lastActionDateTimeUtc":"2021-03-29T18:37:39.5402144Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"e22dcb09-043a-4803-96bc-d585d2963a8a","createdDateTimeUtc":"2021-03-29T18:36:51.5723588Z","lastActionDateTimeUtc":"2021-03-29T18:37:13.4478428Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"8a64a6bb-c14e-4acd-8f33-25b440c1bc1c","createdDateTimeUtc":"2021-03-29T18:36:24.7682386Z","lastActionDateTimeUtc":"2021-03-29T18:36:47.4132227Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}},{"id":"aaa39ba2-d095-411c-9757-e9c0b5345138","createdDateTimeUtc":"2021-03-29T18:35:51.1461966Z","lastActionDateTimeUtc":"2021-03-29T18:36:11.4612496Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"36d50a19-dbfe-454a-8ea3-98b5e8360389","createdDateTimeUtc":"2021-03-29T18:35:25.8302432Z","lastActionDateTimeUtc":"2021-03-29T18:35:45.3204498Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"77f3243a-9b61-4938-b676-775f5fae9d53","createdDateTimeUtc":"2021-03-29T18:35:03.7605071Z","lastActionDateTimeUtc":"2021-03-29T18:35:17.3824082Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"acdc33e1-956a-42b4-aa0d-2bc1aa0e9468","createdDateTimeUtc":"2021-03-29T18:34:29.3080635Z","lastActionDateTimeUtc":"2021-03-29T18:34:51.1950003Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"13df5997-323e-44fa-95fa-3940b565effa","createdDateTimeUtc":"2021-03-29T18:34:11.4038779Z","lastActionDateTimeUtc":"2021-03-29T18:34:18.5539862Z","status":"Cancelled","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":1,"totalCharacterCharged":0}},{"id":"8382fe02-05e1-4e23-9556-08a7cec017fa","createdDateTimeUtc":"2021-03-29T18:33:49.8556753Z","lastActionDateTimeUtc":"2021-03-29T18:34:05.2100391Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}},{"id":"f1c83447-4ebb-474c-8a9e-eead09e82995","createdDateTimeUtc":"2021-03-25T21:20:04.7235131Z","lastActionDateTimeUtc":"2021-03-25T21:20:05.6552498Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"67f38144-fbee-46ac-ab9d-1f292b518707","createdDateTimeUtc":"2021-03-25T19:01:23.1381842Z","lastActionDateTimeUtc":"2021-03-25T19:01:38.352208Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f74e2786-2b65-43e3-a720-47b562cbdf5f","createdDateTimeUtc":"2021-03-25T19:00:50.5923264Z","lastActionDateTimeUtc":"2021-03-25T19:01:03.2418213Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"aefd8861-0c30-44ce-913f-f7a341045ad8","createdDateTimeUtc":"2021-03-25T19:00:14.7950556Z","lastActionDateTimeUtc":"2021-03-25T19:00:28.1476812Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"95fb8fd5-5858-4689-8411-9e09b0781ddc","createdDateTimeUtc":"2021-03-25T18:59:43.1005591Z","lastActionDateTimeUtc":"2021-03-25T19:00:03.0692533Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"ae838d3e-6f9b-4321-8c02-8cade4b6d79e","createdDateTimeUtc":"2021-03-25T18:59:11.4393279Z","lastActionDateTimeUtc":"2021-03-25T18:59:28.0894294Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"35f40811-3cbf-472e-8ba0-e5f718856007","createdDateTimeUtc":"2021-03-25T18:58:39.4158405Z","lastActionDateTimeUtc":"2021-03-25T18:58:52.8565364Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"161e84c4-8242-4a37-91ee-5c3210a198e9","createdDateTimeUtc":"2021-03-25T18:58:05.4589025Z","lastActionDateTimeUtc":"2021-03-25T18:58:17.834141Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a7474941-fc7a-487e-9b19-d3f453163a3b","createdDateTimeUtc":"2021-03-25T18:57:33.1503841Z","lastActionDateTimeUtc":"2021-03-25T18:57:52.8341509Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"798fd1f0-da65-477e-94dd-488f4795ed94","createdDateTimeUtc":"2021-03-25T18:57:00.9929499Z","lastActionDateTimeUtc":"2021-03-25T18:57:17.708325Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"004c0cce-6099-4e3a-ab44-97f4b559a0c0","createdDateTimeUtc":"2021-03-25T18:56:29.2183028Z","lastActionDateTimeUtc":"2021-03-25T18:56:42.7708011Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"608309f8-9c2b-489c-bf31-873beb3473fa","createdDateTimeUtc":"2021-03-25T18:55:57.0753569Z","lastActionDateTimeUtc":"2021-03-25T18:56:17.5882065Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"8a223d48-3b7f-4aa0-a4b7-1051f2925783","createdDateTimeUtc":"2021-03-25T18:55:22.7831376Z","lastActionDateTimeUtc":"2021-03-25T18:55:42.5044212Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"27fb77a6-3477-4b83-8b5f-6b9800f748a5","createdDateTimeUtc":"2021-03-25T18:29:31.5888471Z","lastActionDateTimeUtc":"2021-03-25T18:29:45.9270969Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"a24f6c68-e076-45a0-8dd0-b3af8062b4ea","createdDateTimeUtc":"2021-03-25T18:28:58.916504Z","lastActionDateTimeUtc":"2021-03-25T18:29:10.7999824Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1236076d-46fb-474a-aa29-26ee5e6ddc4c","createdDateTimeUtc":"2021-03-25T18:28:23.6739739Z","lastActionDateTimeUtc":"2021-03-25T18:28:35.770262Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"feb91ba8-2e03-4d59-9be5-0db5b98d7d83","createdDateTimeUtc":"2021-03-25T18:27:50.9094817Z","lastActionDateTimeUtc":"2021-03-25T18:28:10.7684568Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"b05e2033-c8fa-4487-bf86-d724e35c18b3","createdDateTimeUtc":"2021-03-25T18:27:17.7494957Z","lastActionDateTimeUtc":"2021-03-25T18:27:35.6703828Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a323c34b-65be-4b6b-89cc-c29394b195ad","createdDateTimeUtc":"2021-03-25T18:26:45.5189612Z","lastActionDateTimeUtc":"2021-03-25T18:27:00.5814395Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"d6afce32-ad8d-498b-b16e-0c7dff3440e0","createdDateTimeUtc":"2021-03-25T18:26:12.9177035Z","lastActionDateTimeUtc":"2021-03-25T18:26:25.5641684Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2355&$top=116&$maxpagesize=50"}' + headers: + apim-request-id: f58e05f4-78fd-466e-8826-15a5b9fb0c58 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:16 GMT + etag: '"2266E043B84F34F0C2D151D8614022F729C370A073FC6A355D4321E94006AFEA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: f58e05f4-78fd-466e-8826-15a5b9fb0c58 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2305&$top=166&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2355&$top=116&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"eb3d6fe3-3006-4e7f-9bbd-57d4e418a2df","createdDateTimeUtc":"2021-03-25T18:25:40.7377956Z","lastActionDateTimeUtc":"2021-03-25T18:26:00.5793582Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"c3c79dbc-cd12-4217-8255-04579fb7d22d","createdDateTimeUtc":"2021-03-25T18:25:08.443071Z","lastActionDateTimeUtc":"2021-03-25T18:25:25.3603526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"571a2a26-cc44-427d-a47f-5bc6d29f3c78","createdDateTimeUtc":"2021-03-25T18:24:36.7059405Z","lastActionDateTimeUtc":"2021-03-25T18:24:50.3445193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"f9b61735-9fe3-4aae-84c4-52724a6d3dac","createdDateTimeUtc":"2021-03-25T18:24:03.956485Z","lastActionDateTimeUtc":"2021-03-25T18:24:25.2805811Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f8e2a066-a7eb-429d-90b9-04dd2c2cd194","createdDateTimeUtc":"2021-03-25T18:23:30.8978167Z","lastActionDateTimeUtc":"2021-03-25T18:23:50.1534641Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"6253e934-165c-4039-9d81-9f82841cef69","createdDateTimeUtc":"2021-03-25T18:12:00.9266373Z","lastActionDateTimeUtc":"2021-03-25T18:12:14.5399094Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"09375b3c-c2ff-41ec-bcbe-9e8c138b8d9d","createdDateTimeUtc":"2021-03-25T18:11:28.040741Z","lastActionDateTimeUtc":"2021-03-25T18:11:39.4147269Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"ff1f2fca-ab88-4572-b35f-426fbd566eca","createdDateTimeUtc":"2021-03-25T18:10:54.7130218Z","lastActionDateTimeUtc":"2021-03-25T18:11:14.3677407Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"90b3204f-5699-4284-ad41-37721a80a667","createdDateTimeUtc":"2021-03-25T18:10:22.5705668Z","lastActionDateTimeUtc":"2021-03-25T18:10:39.335938Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"5f37d762-fd92-47c0-a03b-282dc87119b3","createdDateTimeUtc":"2021-03-25T18:09:50.7910413Z","lastActionDateTimeUtc":"2021-03-25T18:10:04.2210197Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"3fdf3a40-4903-4eec-b978-0c56ac5b0a67","createdDateTimeUtc":"2021-03-25T18:09:16.6173672Z","lastActionDateTimeUtc":"2021-03-25T18:09:29.0826341Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"14863b97-6064-4ea6-90bf-3d7d5c83f1a8","createdDateTimeUtc":"2021-03-25T18:08:43.6962428Z","lastActionDateTimeUtc":"2021-03-25T18:09:04.1945494Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"d1c3d34e-ddf3-4bf5-80ce-02c185f8687c","createdDateTimeUtc":"2021-03-25T18:08:11.5555447Z","lastActionDateTimeUtc":"2021-03-25T18:08:29.0384344Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"d4acdd0b-4472-4049-8773-64c9ac37282e","createdDateTimeUtc":"2021-03-25T18:07:39.5077195Z","lastActionDateTimeUtc":"2021-03-25T18:07:54.006274Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"35c72d23-b55a-4f62-a1b1-661ab5855701","createdDateTimeUtc":"2021-03-25T18:07:07.5372533Z","lastActionDateTimeUtc":"2021-03-25T18:07:18.928655Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"993b6bc8-0c93-4ed6-9a43-fdcd23ce2888","createdDateTimeUtc":"2021-03-25T18:06:35.7900844Z","lastActionDateTimeUtc":"2021-03-25T18:06:53.8906387Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"39205348-c066-46a7-8841-88c5751e54e7","createdDateTimeUtc":"2021-03-25T18:06:03.0712152Z","lastActionDateTimeUtc":"2021-03-25T18:06:18.7497127Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"1a76d4f8-fd89-4eec-94a8-05961b79546f","createdDateTimeUtc":"2021-03-25T15:41:25.5088055Z","lastActionDateTimeUtc":"2021-03-25T15:41:43.6206764Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"7148851c-abc6-42e1-9548-b67f4077bbe8","createdDateTimeUtc":"2021-03-25T15:40:52.6282442Z","lastActionDateTimeUtc":"2021-03-25T15:41:08.5419081Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"86b29fab-a457-4d77-aff2-3c82a7351b79","createdDateTimeUtc":"2021-03-25T15:36:31.1761325Z","lastActionDateTimeUtc":"2021-03-25T15:36:43.2258016Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"2ffced24-0043-4326-b1c3-69d2001eff89","createdDateTimeUtc":"2021-03-25T15:35:58.0688638Z","lastActionDateTimeUtc":"2021-03-25T15:36:08.1319264Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"08360408-5731-40a8-9ac8-9a5ec109721b","createdDateTimeUtc":"2021-03-25T15:34:30.9956269Z","lastActionDateTimeUtc":"2021-03-25T15:34:42.9901217Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"7810f79e-6adf-466a-ae14-8e957d7d9a5f","createdDateTimeUtc":"2021-03-25T15:33:56.5317155Z","lastActionDateTimeUtc":"2021-03-25T15:34:17.9607752Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":24}},{"id":"1f3010ea-c39f-4ec7-a8a3-595a816c0ad8","createdDateTimeUtc":"2021-03-25T15:32:57.0733142Z","lastActionDateTimeUtc":"2021-03-25T15:33:12.7951526Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"ab075d0d-c426-4afa-839f-e6615f5d3b20","createdDateTimeUtc":"2021-03-25T15:32:23.6618165Z","lastActionDateTimeUtc":"2021-03-25T15:32:47.7898423Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"48e155cb-f56e-4a61-b917-91e20d8e9400","createdDateTimeUtc":"2021-03-25T15:31:02.5500153Z","lastActionDateTimeUtc":"2021-03-25T15:31:22.5815137Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"4d555cfa-e30e-47df-b22e-2b4cc2c5876d","createdDateTimeUtc":"2021-03-25T15:30:15.8992289Z","lastActionDateTimeUtc":"2021-03-25T15:30:37.4763847Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"b673cbaf-cd9c-40ef-afc9-73bca9576968","createdDateTimeUtc":"2021-03-25T15:29:50.5643752Z","lastActionDateTimeUtc":"2021-03-25T15:30:12.3939746Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"a432c1c6-9eb0-4f38-8986-8541c58897fb","createdDateTimeUtc":"2021-03-25T15:29:17.9466576Z","lastActionDateTimeUtc":"2021-03-25T15:29:37.3008017Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"79319da7-f878-4bfd-8675-0cba017861cb","createdDateTimeUtc":"2021-03-25T15:27:33.4039252Z","lastActionDateTimeUtc":"2021-03-25T15:27:52.0554233Z","status":"Succeeded","summary":{"total":3,"failed":1,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":54}},{"id":"2c7298d9-d749-4843-8e36-2a6eda550817","createdDateTimeUtc":"2021-03-25T15:26:58.0722489Z","lastActionDateTimeUtc":"2021-03-25T15:27:17.0173291Z","status":"Succeeded","summary":{"total":3,"failed":0,"success":3,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":81}},{"id":"f69346d6-7bec-4c78-bd21-c2af2f6b9e1a","createdDateTimeUtc":"2021-03-25T15:25:40.3735947Z","lastActionDateTimeUtc":"2021-03-25T15:26:01.9387765Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"bc7a7040-df3d-4b33-ae2c-5f2e902aa227","createdDateTimeUtc":"2021-03-25T15:25:07.7559295Z","lastActionDateTimeUtc":"2021-03-25T15:25:26.9229576Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}},{"id":"c882eb77-f097-4502-9783-5502aad8eb23","createdDateTimeUtc":"2021-03-25T13:44:53.8954265Z","lastActionDateTimeUtc":"2021-03-25T13:44:55.176073Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b8846cd5-63a3-4455-b349-0cabb8bf35d4","createdDateTimeUtc":"2021-03-24T23:34:23.0903097Z","lastActionDateTimeUtc":"2021-03-24T23:34:42.939329Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"e47527fe-6f6b-45c1-a577-55cc4eabee82","createdDateTimeUtc":"2021-03-24T23:33:50.6009589Z","lastActionDateTimeUtc":"2021-03-24T23:34:08.2959567Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7ed4492f-af7a-4451-a004-3e48c8e43131","createdDateTimeUtc":"2021-03-24T23:31:07.1312989Z","lastActionDateTimeUtc":"2021-03-24T23:31:22.6844285Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1a716072-a688-43e9-b75b-9f211bba4295","createdDateTimeUtc":"2021-03-24T23:30:33.943352Z","lastActionDateTimeUtc":"2021-03-24T23:30:48.1189732Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1159dcf5-94ca-4c5c-923a-c6595841db7b","createdDateTimeUtc":"2021-03-24T23:21:16.0194045Z","lastActionDateTimeUtc":"2021-03-24T23:21:31.9579616Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"dfddca8c-13bf-434c-ab98-04886de7ce9d","createdDateTimeUtc":"2021-03-24T23:20:43.4055243Z","lastActionDateTimeUtc":"2021-03-24T23:20:56.8906837Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b48de43-2cdb-49f4-9542-5b0ecff0d972","createdDateTimeUtc":"2021-03-24T23:19:35.2720076Z","lastActionDateTimeUtc":"2021-03-24T23:19:51.7533234Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"3303456a-4eae-4e2b-bd5a-c0f85f702bdf","createdDateTimeUtc":"2021-03-24T23:19:02.512221Z","lastActionDateTimeUtc":"2021-03-24T23:19:16.7378513Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f61e8ad9-783d-4c7d-aead-fd6fdcb371b1","createdDateTimeUtc":"2021-03-24T23:17:36.1673851Z","lastActionDateTimeUtc":"2021-03-24T23:17:51.5925832Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"bf37ac73-9de3-4855-885d-ba7d4c24001c","createdDateTimeUtc":"2021-03-24T23:17:03.0044049Z","lastActionDateTimeUtc":"2021-03-24T23:17:16.903558Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"27b4afff-c11c-4d02-b658-11ad7031232d","createdDateTimeUtc":"2021-03-24T22:44:13.2457745Z","lastActionDateTimeUtc":"2021-03-24T22:44:24.4796657Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"97579fc5-4e7c-477f-93ba-90560a363e70","createdDateTimeUtc":"2021-03-24T22:43:39.6251191Z","lastActionDateTimeUtc":"2021-03-24T22:43:59.9013536Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"030ff3dd-b858-486c-89e2-67094ffaae61","createdDateTimeUtc":"2021-03-24T22:31:23.5766933Z","lastActionDateTimeUtc":"2021-03-24T22:31:33.7555332Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f47319a5-4c5a-4ec0-b539-3ac244ba22fc","createdDateTimeUtc":"2021-03-24T22:30:51.2640491Z","lastActionDateTimeUtc":"2021-03-24T22:31:08.7396417Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"7d9cc7e0-b6d3-4917-8c92-42325d7166fa","createdDateTimeUtc":"2021-03-24T22:29:36.9211521Z","lastActionDateTimeUtc":"2021-03-24T22:29:54.0077336Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b2aeec2b-9982-418e-80c6-c33d0e76ce46","createdDateTimeUtc":"2021-03-24T21:57:10.8205337Z","lastActionDateTimeUtc":"2021-03-24T21:57:21.5406101Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2405&$top=66&$maxpagesize=50"}' + headers: + apim-request-id: 8fc2634c-7103-4e85-8eed-f9abb020c120 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:16 GMT + etag: '"594D2BA40F9F4D8DBA451700EAD2751896FB45D158D1E137948BF7323C22E100"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 8fc2634c-7103-4e85-8eed-f9abb020c120 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2355&$top=116&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2405&$top=66&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"e33a9532-90b2-470f-905c-3e300a924f82","createdDateTimeUtc":"2021-03-24T21:56:38.6881966Z","lastActionDateTimeUtc":"2021-03-24T21:56:57.1103845Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"11fe0f54-e916-4194-9a53-80fdb7fb4ff4","createdDateTimeUtc":"2021-03-24T21:15:46.5119684Z","lastActionDateTimeUtc":"2021-03-24T21:15:59.1828136Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"216e85e2-0f62-4d5b-baa3-384e6c69c405","createdDateTimeUtc":"2021-03-24T21:15:14.9517802Z","lastActionDateTimeUtc":"2021-03-24T21:15:36.2240448Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b062055c-eff2-432e-8e32-b16597776290","createdDateTimeUtc":"2021-03-24T21:14:39.0506929Z","lastActionDateTimeUtc":"2021-03-24T21:14:49.0338967Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cfbc3279-b0d5-4493-b9e1-4e7b94e5536c","createdDateTimeUtc":"2021-03-24T21:14:06.424222Z","lastActionDateTimeUtc":"2021-03-24T21:14:24.0673522Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"aab7a54f-e12a-4882-a2aa-2179bb7dfc29","createdDateTimeUtc":"2021-03-24T21:13:30.4564271Z","lastActionDateTimeUtc":"2021-03-24T21:13:48.9342991Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"14df4537-ef02-460f-b0d2-57cafc7f8ba5","createdDateTimeUtc":"2021-03-24T21:12:58.3845402Z","lastActionDateTimeUtc":"2021-03-24T21:13:14.2881621Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"21288d6b-d876-4570-944c-559036c6ffc0","createdDateTimeUtc":"2021-03-24T21:09:55.9281891Z","lastActionDateTimeUtc":"2021-03-24T21:10:08.6400269Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"88c02aa0-8f3a-455c-a02f-3a2ddf8fe999","createdDateTimeUtc":"2021-03-24T21:09:23.528926Z","lastActionDateTimeUtc":"2021-03-24T21:09:33.611646Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"9dd3eb9b-92eb-4e24-a3bd-389082d5593a","createdDateTimeUtc":"2021-03-24T21:07:18.9561674Z","lastActionDateTimeUtc":"2021-03-24T21:07:28.4860936Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cf3aa0b2-8f1b-4c39-a41d-614a6e28bcf3","createdDateTimeUtc":"2021-03-24T21:06:46.7370728Z","lastActionDateTimeUtc":"2021-03-24T21:07:03.7649582Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"8b5a8d0b-8bd5-4d9d-bcc1-69687403de31","createdDateTimeUtc":"2021-03-24T20:59:10.5327236Z","lastActionDateTimeUtc":"2021-03-24T20:59:27.95236Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1eabaf80-bd23-40ef-bda7-8a37909eb5ad","createdDateTimeUtc":"2021-03-24T20:58:38.3096131Z","lastActionDateTimeUtc":"2021-03-24T20:58:53.3355831Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1709d16b-6d0c-40ea-8b76-54fc512aa3b4","createdDateTimeUtc":"2021-03-24T20:42:19.5948491Z","lastActionDateTimeUtc":"2021-03-24T20:42:36.9669191Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f233097c-ce8c-47ae-b7e2-678743938acb","createdDateTimeUtc":"2021-03-24T20:41:47.0695832Z","lastActionDateTimeUtc":"2021-03-24T20:42:11.4542193Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"f157ebe9-d84d-4201-9549-fb4186ebddef","createdDateTimeUtc":"2021-03-24T20:33:25.5678875Z","lastActionDateTimeUtc":"2021-03-24T20:33:45.7410561Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"b79d19b2-c7c8-4366-b7a1-6f51dce970fc","createdDateTimeUtc":"2021-03-24T20:32:53.34653Z","lastActionDateTimeUtc":"2021-03-24T20:33:10.9994218Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"cdb7b29e-8fc8-4380-94bd-2d226cd77b63","createdDateTimeUtc":"2021-03-24T15:15:12.2285575Z","lastActionDateTimeUtc":"2021-03-24T15:15:28.8364131Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c73261fc-ba2e-4341-9f3b-ff4508d0f7d0","createdDateTimeUtc":"2021-03-24T15:09:22.8525501Z","lastActionDateTimeUtc":"2021-03-24T15:09:43.505925Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"c2ff1955-cc5e-4c93-83b2-294c6d568175","createdDateTimeUtc":"2021-03-24T15:06:43.5920893Z","lastActionDateTimeUtc":"2021-03-24T15:07:08.2837578Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"effcbb6b-9ea7-4b22-b93f-cf6ac75e3bc2","createdDateTimeUtc":"2021-03-23T22:51:23.0463613Z","lastActionDateTimeUtc":"2021-03-23T22:51:41.3238927Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"783f6abc-5271-4fde-9292-0bcb94503893","createdDateTimeUtc":"2021-03-23T22:50:50.4448308Z","lastActionDateTimeUtc":"2021-03-23T22:51:06.7181027Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"1b73d557-db25-4023-b827-5ffacb383bfa","createdDateTimeUtc":"2021-03-23T22:47:46.4175051Z","lastActionDateTimeUtc":"2021-03-23T22:47:47.2195541Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7895c324-e615-4274-a478-c92acdcc0373","createdDateTimeUtc":"2021-03-23T22:47:13.7002049Z","lastActionDateTimeUtc":"2021-03-23T22:47:14.4609413Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"e3f03a32-75d8-40df-a25e-19a926145716","createdDateTimeUtc":"2021-03-23T22:44:54.1923061Z","lastActionDateTimeUtc":"2021-03-23T22:45:10.8118886Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"6342caf3-c78a-4deb-9b02-b955797af6b7","createdDateTimeUtc":"2021-03-23T22:43:55.7026389Z","lastActionDateTimeUtc":"2021-03-23T22:44:16.2417046Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":79}},{"id":"d86d277a-00ec-46df-ad1e-8f69fabbe235","createdDateTimeUtc":"2021-03-23T19:05:53.0214188Z","lastActionDateTimeUtc":"2021-03-23T19:06:07.9666273Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"33adcb80-34a5-47c5-ad7a-f8c1614ad618","createdDateTimeUtc":"2021-03-23T19:04:57.2812555Z","lastActionDateTimeUtc":"2021-03-23T19:04:58.8099876Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"3d9496ca-271c-48cc-99d3-bf1635c57d10","createdDateTimeUtc":"2021-03-23T19:04:47.362903Z","lastActionDateTimeUtc":"2021-03-23T19:04:48.1355738Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"28c70230-ca94-40b1-a7a8-323b647985f3","createdDateTimeUtc":"2021-03-23T19:03:40.8860353Z","lastActionDateTimeUtc":"2021-03-23T19:03:42.5532538Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"69595a48-074e-4700-9d7a-c11cec14c5d1","createdDateTimeUtc":"2021-03-23T18:26:37.8073448Z","lastActionDateTimeUtc":"2021-03-23T18:26:38.1371975Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"9d57052f-47ff-416f-91ef-a723eac2eafe","createdDateTimeUtc":"2021-03-23T18:25:18.4704974Z","lastActionDateTimeUtc":"2021-03-23T18:25:19.8963117Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"a9e63112-13d7-4db9-98e2-efa40d6c4194","createdDateTimeUtc":"2021-03-23T18:23:12.8205916Z","lastActionDateTimeUtc":"2021-03-23T18:23:14.2627528Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"6d0fa257-c387-417f-a9e0-465554a078f0","createdDateTimeUtc":"2021-03-23T18:21:12.3601617Z","lastActionDateTimeUtc":"2021-03-23T18:21:13.7825352Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"ec070a44-75e7-447f-b990-807175481631","createdDateTimeUtc":"2021-03-23T18:19:59.615505Z","lastActionDateTimeUtc":"2021-03-23T18:20:01.0904029Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7ff72ec3-fa96-4929-b1fd-bd62e0034999","createdDateTimeUtc":"2021-03-23T18:18:50.7807074Z","lastActionDateTimeUtc":"2021-03-23T18:18:52.2053032Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"bbb059f7-3430-4a52-8b0f-c454ed70039d","createdDateTimeUtc":"2021-03-23T18:14:18.234211Z","lastActionDateTimeUtc":"2021-03-23T18:14:19.4284957Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"b6f50c23-cbec-4e20-9e91-786e8cece0e2","createdDateTimeUtc":"2021-03-23T18:06:59.4436476Z","lastActionDateTimeUtc":"2021-03-23T18:07:00.6540406Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"No + document found in source with the given path and filters.","target":"Operation","innerError":{"code":"NoDocumentsFound","message":"No + document found in source with the given path and filters."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"de5bbdcf-e637-4b97-b148-7790951f8cbb","createdDateTimeUtc":"2021-03-23T17:57:22.5374761Z","lastActionDateTimeUtc":"2021-03-23T17:57:23.342296Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"5a83e4f1-15f9-45a0-ab34-04a0d1890dfe","createdDateTimeUtc":"2021-03-18T17:25:43.2165527Z","lastActionDateTimeUtc":"2021-03-18T17:26:09.5477272Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"e6b2c1bc-e6d7-4224-9d94-d79ea05b0bfe","createdDateTimeUtc":"2021-03-18T17:25:07.919166Z","lastActionDateTimeUtc":"2021-03-18T17:25:07.9194053Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"521afb5c-d264-435f-b0c4-903fe62eaeb7","createdDateTimeUtc":"2021-03-18T17:06:29.2725611Z","lastActionDateTimeUtc":"2021-03-18T17:06:29.2727611Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"91b91dbe-15a2-413a-be62-d5ee360df558","createdDateTimeUtc":"2021-03-18T17:03:29.8062166Z","lastActionDateTimeUtc":"2021-03-18T17:03:42.419678Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"62a3802e-93d0-4a93-b45e-fe308d433be8","createdDateTimeUtc":"2021-03-18T17:02:18.4385458Z","lastActionDateTimeUtc":"2021-03-18T17:02:18.4387554Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"71f33df7-b650-4faf-bdc6-6358182cca73","createdDateTimeUtc":"2021-03-18T17:01:13.3314309Z","lastActionDateTimeUtc":"2021-03-18T17:01:13.3314362Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"c3b86775-cc0a-4fa2-859d-698f2c832ad9","createdDateTimeUtc":"2021-03-18T14:13:00.2794028Z","lastActionDateTimeUtc":"2021-03-18T14:13:14.005871Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"c43df1c1-46c9-4014-93bb-00917e5b7604","createdDateTimeUtc":"2021-03-18T14:09:19.5980745Z","lastActionDateTimeUtc":"2021-03-18T14:09:19.5980874Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}},{"id":"5abd1636-26cc-4a68-bb5f-788554464ce7","createdDateTimeUtc":"2021-03-17T18:01:33.9833966Z","lastActionDateTimeUtc":"2021-03-17T18:01:34.1924062Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"302ce1bc-896c-4ff4-b891-12cf5bde6e99","createdDateTimeUtc":"2021-03-15T15:12:22.886901Z","lastActionDateTimeUtc":"2021-03-15T15:12:23.9254825Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"954a5d2d-3d1b-4e7d-b48c-60115f049537","createdDateTimeUtc":"2021-03-15T10:46:15.4188608Z","lastActionDateTimeUtc":"2021-03-15T10:46:26.2900049Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}}],"@nextLink":"https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2455&$top=16&$maxpagesize=50"}' + headers: + apim-request-id: 1454a3bb-552f-451d-a78f-081cc08bf54c + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:16 GMT + etag: '"C3BE86603D2F3B37E4EE50E4021759E920363C8588B355CFAF934A6E365CCA58"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1454a3bb-552f-451d-a78f-081cc08bf54c + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2405&$top=66&$maxpagesize=50 +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches?$skip=2455&$top=16&$maxpagesize=50 + response: + body: + string: '{"value":[{"id":"d7f65419-c8d7-4fdc-8643-c85c8a0498b8","createdDateTimeUtc":"2021-03-15T10:41:28.7852703Z","lastActionDateTimeUtc":"2021-03-15T10:41:55.443723Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"feefc391-ff00-4dab-a881-3aac222e9dd3","createdDateTimeUtc":"2021-03-15T10:03:11.4922901Z","lastActionDateTimeUtc":"2021-03-15T10:03:21.9985437Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"26864c9c-f818-47de-9f2b-3b9e1dd48c17","createdDateTimeUtc":"2021-03-15T09:50:51.6577208Z","lastActionDateTimeUtc":"2021-03-15T09:51:11.0690111Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"cea793a5-7f57-421d-8523-39552ef073b2","createdDateTimeUtc":"2021-03-15T09:12:10.1568581Z","lastActionDateTimeUtc":"2021-03-15T09:12:29.1855175Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":60320}},{"id":"70f34724-eaf5-4aad-92a9-8c992ae974b9","createdDateTimeUtc":"2021-03-15T09:08:29.5218288Z","lastActionDateTimeUtc":"2021-03-15T09:08:52.4798853Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":9542}},{"id":"30e30d88-d399-4956-98f9-90abac73a904","createdDateTimeUtc":"2021-03-15T09:07:15.3974233Z","lastActionDateTimeUtc":"2021-03-15T09:07:16.8746744Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"7011400d-38d4-4b7c-b837-074b8fbfedc1","createdDateTimeUtc":"2021-03-15T09:06:05.2245906Z","lastActionDateTimeUtc":"2021-03-15T09:06:05.728043Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"cde3429c-740c-4aca-bab8-3bee817167c0","createdDateTimeUtc":"2021-03-15T09:05:19.4357029Z","lastActionDateTimeUtc":"2021-03-15T09:05:20.4979689Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"74b424c3-fc13-4172-ad7b-6c38d6099f3d","createdDateTimeUtc":"2021-03-11T16:33:26.5501704Z","lastActionDateTimeUtc":"2021-03-11T16:33:45.6445535Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"95086392-273a-4b24-846d-49fb598714c4","createdDateTimeUtc":"2021-03-11T16:22:11.5381076Z","lastActionDateTimeUtc":"2021-03-11T16:22:28.5495554Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"871e820a-2255-4318-aedd-f0add83721c7","createdDateTimeUtc":"2021-03-11T16:20:59.9415458Z","lastActionDateTimeUtc":"2021-03-11T16:21:13.5877681Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"d6ec698e-27b6-4357-bf90-b48358f80689","createdDateTimeUtc":"2021-03-11T16:20:35.8667176Z","lastActionDateTimeUtc":"2021-03-11T16:20:58.4681135Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"c97882ff-a732-4730-b9f2-73f0997c28ce","createdDateTimeUtc":"2021-03-11T16:18:56.7752328Z","lastActionDateTimeUtc":"2021-03-11T16:19:23.8361485Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":30107}},{"id":"cd03bad0-2ce6-4194-abd4-9bf97698c26a","createdDateTimeUtc":"2021-03-07T20:38:14.7427903Z","lastActionDateTimeUtc":"2021-03-07T20:38:17.2016091Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"f3f8bb9f-8ea1-44a1-ba06-f88d31785275","createdDateTimeUtc":"2021-03-04T15:36:37.8878227Z","lastActionDateTimeUtc":"2021-03-04T15:36:38.8715818Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}},{"id":"1a0d47cd-45d6-4050-8152-7d79ab35778e","createdDateTimeUtc":"2021-03-04T15:18:23.284744Z","lastActionDateTimeUtc":"2021-03-04T15:18:24.3930554Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot + access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}]}' + headers: + apim-request-id: 1d266023-a940-4d7c-834a-00d380ecfcc7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:04:17 GMT + etag: '"FC809C14E722BF1DB3129625DEAAA8C7EB1FDCA5F292CCA1795446872DFAB4F3"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 1d266023-a940-4d7c-834a-00d380ecfcc7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches?$skip=2455&$top=16&$maxpagesize=50 +version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats.test_supported_document_formats.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats.test_supported_document_formats.yaml index e6562417c90a..8d42efa7069b 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats.test_supported_document_formats.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats.test_supported_document_formats.yaml @@ -9,28 +9,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/documents/formats response: body: - string: '{"value":[{"format":"PlainText","fileExtensions":[".txt"],"contentTypes":["text/plain"],"versions":[]},{"format":"OpenXmlWord","fileExtensions":[".docx"],"contentTypes":["application/vnd.openxmlformats-officedocument.wordprocessingml.document"],"versions":[]},{"format":"OpenXmlPresentation","fileExtensions":[".pptx"],"contentTypes":["application/vnd.openxmlformats-officedocument.presentationml.presentation"],"versions":[]},{"format":"OpenXmlSpreadsheet","fileExtensions":[".xlsx"],"contentTypes":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],"versions":[]},{"format":"OutlookMailMessage","fileExtensions":[".msg"],"contentTypes":["application/vnd.ms-outlook"],"versions":[]},{"format":"HtmlFile","fileExtensions":[".html",".htm"],"contentTypes":["text/html"],"versions":[]},{"format":"PortableDocumentFormat","fileExtensions":[".pdf"],"contentTypes":["application/pdf"],"versions":[]},{"format":"XLIFF","fileExtensions":[".xlf"],"contentTypes":["application/xliff+xml"],"versions":["1.0","1.1","1.2"]},{"format":"TSV","fileExtensions":[".tsv",".tab"],"contentTypes":["text/tab-separated-values"],"versions":[]}]}' + string: '{"value":[{"format":"PlainText","fileExtensions":[".txt"],"contentTypes":["text/plain"],"versions":[]},{"format":"OpenXmlWord","fileExtensions":[".docx"],"contentTypes":["application/vnd.openxmlformats-officedocument.wordprocessingml.document"],"versions":[]},{"format":"OpenXmlPresentation","fileExtensions":[".pptx"],"contentTypes":["application/vnd.openxmlformats-officedocument.presentationml.presentation"],"versions":[]},{"format":"OpenXmlSpreadsheet","fileExtensions":[".xlsx"],"contentTypes":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],"versions":[]},{"format":"OutlookMailMessage","fileExtensions":[".msg"],"contentTypes":["application/vnd.ms-outlook"],"versions":[]},{"format":"HtmlFile","fileExtensions":[".html",".htm"],"contentTypes":["text/html"],"versions":[]},{"format":"PortableDocumentFormat","fileExtensions":[".pdf"],"contentTypes":["application/pdf"],"versions":[]},{"format":"XLIFF","fileExtensions":[".xlf"],"contentTypes":["application/xliff+xml"],"versions":["1.0","1.1","1.2"]},{"format":"TSV","fileExtensions":[".tsv",".tab"],"contentTypes":["text/tab-separated-values"],"versions":[]},{"format":"CSV","fileExtensions":[".csv"],"contentTypes":["text/csv"],"versions":[]},{"format":"RichTextFormat","fileExtensions":[".rtf"],"contentTypes":["application/rtf"],"versions":[]},{"format":"WordDocument","fileExtensions":[".doc"],"contentTypes":["application/msword"],"versions":[]},{"format":"PowerpointPresentation","fileExtensions":[".ppt"],"contentTypes":["application/vnd.ms-powerpoint"],"versions":[]},{"format":"ExcelSpreadsheet","fileExtensions":[".xls"],"contentTypes":["application/vnd.ms-excel"],"versions":[]},{"format":"OpenDocumentText","fileExtensions":[".odt"],"contentTypes":["application/vnd.oasis.opendocument.text"],"versions":[]},{"format":"OpenDocumentPresentation","fileExtensions":[".odp"],"contentTypes":["application/vnd.oasis.opendocument.presentation"],"versions":[]},{"format":"OpenDocumentSpreadsheet","fileExtensions":[".ods"],"contentTypes":["application/vnd.oasis.opendocument.spreadsheet"],"versions":[]}]}' headers: apim-request-id: - - 08a84547-dcb2-4cd9-a02a-82682bd740be + - da1a3741-7a43-478e-9ede-27ec8a1ed061 cache-control: - public,max-age=1 content-length: - - '1140' + - '2088' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:34 GMT + - Thu, 06 May 2021 21:04:17 GMT etag: - - '"F50180F3F7A3DA2AD0976187D2FFC4ACD76EE3CF8049CD8DC1CB04DC7EE88660"' + - '"44A88B37BE223B6C068718250B179D652514ABB810E8DD9DCD271B2759493859"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -42,7 +42,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 08a84547-dcb2-4cd9-a02a-82682bd740be + - da1a3741-7a43-478e-9ede-27ec8a1ed061 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats.test_supported_glossary_formats.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats.test_supported_glossary_formats.yaml index b25ea8c8db62..37371e76d932 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats.test_supported_glossary_formats.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats.test_supported_glossary_formats.yaml @@ -9,28 +9,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/glossaries/formats response: body: - string: '{"value":[{"format":"XLIFF","fileExtensions":[".xlf"],"contentTypes":["application/xliff+xml"],"defaultVersion":"1.2","versions":["1.0","1.1","1.2"]},{"format":"TSV","fileExtensions":[".tsv",".tab"],"contentTypes":["text/tab-separated-values"]}]}' + string: '{"value":[{"format":"XLIFF","fileExtensions":[".xlf"],"contentTypes":["application/xliff+xml"],"defaultVersion":"1.2","versions":["1.0","1.1","1.2"]},{"format":"TSV","fileExtensions":[".tsv",".tab"],"contentTypes":["text/tab-separated-values"]},{"format":"CSV","fileExtensions":[".csv"],"contentTypes":["text/csv"]}]}' headers: apim-request-id: - - 802003cc-01c6-4420-b0d6-1c16c0b1ece9 + - 25455fdb-5075-4bd1-b805-88013f01e863 cache-control: - public,max-age=1 content-length: - - '246' + - '317' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:35 GMT + - Thu, 06 May 2021 21:04:18 GMT etag: - - '"E45B28E0479C2E4442005F96664ED8DE0001CBFEE34F87F4E4C6D25064CECB2F"' + - '"BB09005FA0DB45CD46802EE70709AA319365D435A020BE2897C9B902157EAD55"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -42,7 +42,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 802003cc-01c6-4420-b0d6-1c16c0b1ece9 + - 25455fdb-5075-4bd1-b805-88013f01e863 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats_async.test_supported_document_formats.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats_async.test_supported_document_formats.yaml index d4ff8a883aec..0aa4cbd3d532 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats_async.test_supported_document_formats.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats_async.test_supported_document_formats.yaml @@ -5,26 +5,26 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/documents/formats response: body: - string: '{"value":[{"format":"PlainText","fileExtensions":[".txt"],"contentTypes":["text/plain"],"versions":[]},{"format":"OpenXmlWord","fileExtensions":[".docx"],"contentTypes":["application/vnd.openxmlformats-officedocument.wordprocessingml.document"],"versions":[]},{"format":"OpenXmlPresentation","fileExtensions":[".pptx"],"contentTypes":["application/vnd.openxmlformats-officedocument.presentationml.presentation"],"versions":[]},{"format":"OpenXmlSpreadsheet","fileExtensions":[".xlsx"],"contentTypes":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],"versions":[]},{"format":"OutlookMailMessage","fileExtensions":[".msg"],"contentTypes":["application/vnd.ms-outlook"],"versions":[]},{"format":"HtmlFile","fileExtensions":[".html",".htm"],"contentTypes":["text/html"],"versions":[]},{"format":"PortableDocumentFormat","fileExtensions":[".pdf"],"contentTypes":["application/pdf"],"versions":[]},{"format":"XLIFF","fileExtensions":[".xlf"],"contentTypes":["application/xliff+xml"],"versions":["1.0","1.1","1.2"]},{"format":"TSV","fileExtensions":[".tsv",".tab"],"contentTypes":["text/tab-separated-values"],"versions":[]}]}' + string: '{"value":[{"format":"PlainText","fileExtensions":[".txt"],"contentTypes":["text/plain"],"versions":[]},{"format":"OpenXmlWord","fileExtensions":[".docx"],"contentTypes":["application/vnd.openxmlformats-officedocument.wordprocessingml.document"],"versions":[]},{"format":"OpenXmlPresentation","fileExtensions":[".pptx"],"contentTypes":["application/vnd.openxmlformats-officedocument.presentationml.presentation"],"versions":[]},{"format":"OpenXmlSpreadsheet","fileExtensions":[".xlsx"],"contentTypes":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],"versions":[]},{"format":"OutlookMailMessage","fileExtensions":[".msg"],"contentTypes":["application/vnd.ms-outlook"],"versions":[]},{"format":"HtmlFile","fileExtensions":[".html",".htm"],"contentTypes":["text/html"],"versions":[]},{"format":"PortableDocumentFormat","fileExtensions":[".pdf"],"contentTypes":["application/pdf"],"versions":[]},{"format":"XLIFF","fileExtensions":[".xlf"],"contentTypes":["application/xliff+xml"],"versions":["1.0","1.1","1.2"]},{"format":"TSV","fileExtensions":[".tsv",".tab"],"contentTypes":["text/tab-separated-values"],"versions":[]},{"format":"CSV","fileExtensions":[".csv"],"contentTypes":["text/csv"],"versions":[]},{"format":"RichTextFormat","fileExtensions":[".rtf"],"contentTypes":["application/rtf"],"versions":[]},{"format":"WordDocument","fileExtensions":[".doc"],"contentTypes":["application/msword"],"versions":[]},{"format":"PowerpointPresentation","fileExtensions":[".ppt"],"contentTypes":["application/vnd.ms-powerpoint"],"versions":[]},{"format":"ExcelSpreadsheet","fileExtensions":[".xls"],"contentTypes":["application/vnd.ms-excel"],"versions":[]},{"format":"OpenDocumentText","fileExtensions":[".odt"],"contentTypes":["application/vnd.oasis.opendocument.text"],"versions":[]},{"format":"OpenDocumentPresentation","fileExtensions":[".odp"],"contentTypes":["application/vnd.oasis.opendocument.presentation"],"versions":[]},{"format":"OpenDocumentSpreadsheet","fileExtensions":[".ods"],"contentTypes":["application/vnd.oasis.opendocument.spreadsheet"],"versions":[]}]}' headers: - apim-request-id: b6e65f73-4b60-4320-a890-a1f5a23eded5 + apim-request-id: aed69d3e-5a9f-4d27-a53e-e234abe63db1 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:35 GMT - etag: '"F50180F3F7A3DA2AD0976187D2FFC4ACD76EE3CF8049CD8DC1CB04DC7EE88660"' + date: Thu, 06 May 2021 21:04:19 GMT + etag: '"44A88B37BE223B6C068718250B179D652514ABB810E8DD9DCD271B2759493859"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b6e65f73-4b60-4320-a890-a1f5a23eded5 + x-requestid: aed69d3e-5a9f-4d27-a53e-e234abe63db1 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats_async.test_supported_glossary_formats.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats_async.test_supported_glossary_formats.yaml index bd432f4c9866..1867eea3f5c6 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats_async.test_supported_glossary_formats.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_supported_formats_async.test_supported_glossary_formats.yaml @@ -5,26 +5,26 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/glossaries/formats response: body: - string: '{"value":[{"format":"XLIFF","fileExtensions":[".xlf"],"contentTypes":["application/xliff+xml"],"defaultVersion":"1.2","versions":["1.0","1.1","1.2"]},{"format":"TSV","fileExtensions":[".tsv",".tab"],"contentTypes":["text/tab-separated-values"]}]}' + string: '{"value":[{"format":"XLIFF","fileExtensions":[".xlf"],"contentTypes":["application/xliff+xml"],"defaultVersion":"1.2","versions":["1.0","1.1","1.2"]},{"format":"TSV","fileExtensions":[".tsv",".tab"],"contentTypes":["text/tab-separated-values"]},{"format":"CSV","fileExtensions":[".csv"],"contentTypes":["text/csv"]}]}' headers: - apim-request-id: 5b0c8067-5c17-4685-b8f6-98ffc2ce18a0 + apim-request-id: 72a3c855-d594-4273-82f3-d9316904294e cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:14:35 GMT - etag: '"E45B28E0479C2E4442005F96664ED8DE0001CBFEE34F87F4E4C6D25064CECB2F"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:04:19 GMT + etag: '"BB09005FA0DB45CD46802EE70709AA319365D435A020BE2897C9B902157EAD55"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5b0c8067-5c17-4685-b8f6-98ffc2ce18a0 + x-requestid: 72a3c855-d594-4273-82f3-d9316904294e status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_bad_input_source.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_bad_input_source.yaml index 3e169467f8de..4fa84687857c 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_bad_input_source.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_bad_input_source.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:19:15 GMT + - Thu, 06 May 2021 21:04:20 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target17e544e1-5c4a-491a-a820-19b109697939?restype=container + uri: https://redacted.blob.core.windows.net/target4461618f-1989-43a2-8023-855921e7b40b?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:19:14 GMT + - Thu, 06 May 2021 21:04:20 GMT etag: - - '"0x8D8F54B6C1EC00D"' + - '"0x8D910D284E2555C"' last-modified: - - Thu, 01 Apr 2021 20:19:15 GMT + - Thu, 06 May 2021 21:04:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -39,7 +39,7 @@ interactions: message: Created - request: body: '{"inputs": [{"source": {"sourceUrl": "https://idont.ex.ist", "filter": - {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target17e544e1-5c4a-491a-a820-19b109697939?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4461618f-1989-43a2-8023-855921e7b40b?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -49,11 +49,11 @@ interactions: Connection: - keep-alive Content-Length: - - '316' + - '317' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -61,16 +61,16 @@ interactions: string: '' headers: apim-request-id: - - 827d169a-3420-411e-9b2d-1415f961815b + - 083ad5f4-9c19-4da7-8f39-47dad7d99d68 content-length: - '0' date: - - Thu, 01 Apr 2021 20:19:15 GMT + - Thu, 06 May 2021 21:04:21 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/812ac4e3-c4a6-487c-a1da-c1da1efbfb40 + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/f3ea5fb9-52fc-4008-8625-7a29b63f6c7c set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -78,7 +78,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 827d169a-3420-411e-9b2d-1415f961815b + - 083ad5f4-9c19-4da7-8f39-47dad7d99d68 status: code: 202 message: Accepted @@ -92,30 +92,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/812ac4e3-c4a6-487c-a1da-c1da1efbfb40 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f3ea5fb9-52fc-4008-8625-7a29b63f6c7c response: body: - string: '{"id":"812ac4e3-c4a6-487c-a1da-c1da1efbfb40","createdDateTimeUtc":"2021-04-01T20:19:16.2733022Z","lastActionDateTimeUtc":"2021-04-01T20:19:16.4174674Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot - access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot - access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"f3ea5fb9-52fc-4008-8625-7a29b63f6c7c","createdDateTimeUtc":"2021-05-06T21:04:21.4336453Z","lastActionDateTimeUtc":"2021-05-06T21:04:21.433646Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 27ad921d-dd22-4a3a-8e3b-6d3499c83c83 + - b7d22e61-d2d3-4085-9422-392eb4b9d271 cache-control: - public,max-age=1 content-length: - - '566' + - '291' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:19:15 GMT + - Thu, 06 May 2021 21:04:21 GMT etag: - - '"136C8EBE363A205A797EC73674ABFD7C2602EFEBF08E43523761A95772CB1A11"' + - '"8119BA7D6E22A0F3539D7DE3C8509A5B372DF881D49DE4ADE537B29BD30AFBC4"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -127,7 +125,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 27ad921d-dd22-4a3a-8e3b-6d3499c83c83 + - b7d22e61-d2d3-4085-9422-392eb4b9d271 status: code: 200 message: OK @@ -141,17 +139,17 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/812ac4e3-c4a6-487c-a1da-c1da1efbfb40 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f3ea5fb9-52fc-4008-8625-7a29b63f6c7c response: body: - string: '{"id":"812ac4e3-c4a6-487c-a1da-c1da1efbfb40","createdDateTimeUtc":"2021-04-01T20:19:16.2733022Z","lastActionDateTimeUtc":"2021-04-01T20:19:16.4174674Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"id":"f3ea5fb9-52fc-4008-8625-7a29b63f6c7c","createdDateTimeUtc":"2021-05-06T21:04:21.4336453Z","lastActionDateTimeUtc":"2021-05-06T21:04:21.6538002Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - e423a1c8-c22f-4b8c-a16b-13094887112e + - bb443aa3-9bfc-4c8e-ae99-3d8578fd5cbc cache-control: - public,max-age=1 content-length: @@ -159,12 +157,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:19:16 GMT + - Thu, 06 May 2021 21:04:21 GMT etag: - - '"136C8EBE363A205A797EC73674ABFD7C2602EFEBF08E43523761A95772CB1A11"' + - '"66CE91038DBA9469111527C72E62F91D2E04665264B2A876ECB9A7CC0DB542A5"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -176,7 +174,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e423a1c8-c22f-4b8c-a16b-13094887112e + - bb443aa3-9bfc-4c8e-ae99-3d8578fd5cbc status: code: 200 message: OK @@ -190,17 +188,17 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/812ac4e3-c4a6-487c-a1da-c1da1efbfb40 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f3ea5fb9-52fc-4008-8625-7a29b63f6c7c response: body: - string: '{"id":"812ac4e3-c4a6-487c-a1da-c1da1efbfb40","createdDateTimeUtc":"2021-04-01T20:19:16.2733022Z","lastActionDateTimeUtc":"2021-04-01T20:19:16.4174674Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"id":"f3ea5fb9-52fc-4008-8625-7a29b63f6c7c","createdDateTimeUtc":"2021-05-06T21:04:21.4336453Z","lastActionDateTimeUtc":"2021-05-06T21:04:21.6538002Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - b38ca1ee-1d58-4dfd-be8a-b350fc260876 + - b7259d1c-b8b0-4f4b-9248-8ed8aa220e45 cache-control: - public,max-age=1 content-length: @@ -208,12 +206,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:19:17 GMT + - Thu, 06 May 2021 21:04:22 GMT etag: - - '"136C8EBE363A205A797EC73674ABFD7C2602EFEBF08E43523761A95772CB1A11"' + - '"66CE91038DBA9469111527C72E62F91D2E04665264B2A876ECB9A7CC0DB542A5"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -225,7 +223,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b38ca1ee-1d58-4dfd-be8a-b350fc260876 + - b7259d1c-b8b0-4f4b-9248-8ed8aa220e45 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_empty_document.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_empty_document.yaml index 7fd4f932df34..346c6dc3adc1 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_empty_document.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_empty_document.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:47:26 GMT + - Thu, 06 May 2021 21:04:23 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src72dfff66-87aa-4322-9864-1b2b59e9b918?restype=container + uri: https://redacted.blob.core.windows.net/src8219ba89-3723-4a34-a0b4-46e263b2a2bd?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:47:25 GMT + - Thu, 06 May 2021 21:04:23 GMT etag: - - '"0x8D8F54F5BB87B51"' + - '"0x8D910D286B382EF"' last-modified: - - Thu, 01 Apr 2021 20:47:26 GMT + - Thu, 06 May 2021 21:04:23 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:47:26 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:04:24 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src72dfff66-87aa-4322-9864-1b2b59e9b918/22fdb125-eb77-4567-86c5-a4cb6a412085.txt + uri: https://redacted.blob.core.windows.net/src8219ba89-3723-4a34-a0b4-46e263b2a2bd/be4fcacd-4669-4f94-a6d0-80d6b801cae3.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - 1B2M2Y8AsgTpgAmY7PhCfg== date: - - Thu, 01 Apr 2021 20:47:25 GMT + - Thu, 06 May 2021 21:04:23 GMT etag: - - '"0x8D8F54F5BC00A5B"' + - '"0x8D910D286D791D8"' last-modified: - - Thu, 01 Apr 2021 20:47:26 GMT + - Thu, 06 May 2021 21:04:24 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:47:26 GMT + - Thu, 06 May 2021 21:04:24 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target13954874-36c8-476d-8ca6-2148e3cdb12b?restype=container + uri: https://redacted.blob.core.windows.net/targeta0ceeea7-9658-4f3e-a164-d34375cd24aa?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:47:26 GMT + - Thu, 06 May 2021 21:04:24 GMT etag: - - '"0x8D8F54F5BE0546E"' + - '"0x8D910D287601207"' last-modified: - - Thu, 01 Apr 2021 20:47:26 GMT + - Thu, 06 May 2021 21:04:25 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src72dfff66-87aa-4322-9864-1b2b59e9b918?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target13954874-36c8-476d-8ca6-2148e3cdb12b?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8219ba89-3723-4a34-a0b4-46e263b2a2bd?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta0ceeea7-9658-4f3e-a164-d34375cd24aa?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -143,7 +141,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -151,16 +149,16 @@ interactions: string: '' headers: apim-request-id: - - 7763a6a3-caa4-4369-a790-29e88a66e236 + - ac036f42-7272-4624-b430-f2a6d965b72e content-length: - '0' date: - - Thu, 01 Apr 2021 20:47:26 GMT + - Thu, 06 May 2021 21:04:24 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/a645eeb2-b088-4c1e-ad9b-c9ee2d017599 + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/37464ce2-0619-4303-960c-214a1204094f set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -168,7 +166,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 7763a6a3-caa4-4369-a790-29e88a66e236 + - ac036f42-7272-4624-b430-f2a6d965b72e status: code: 202 message: Accepted @@ -182,15 +180,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a645eeb2-b088-4c1e-ad9b-c9ee2d017599 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/37464ce2-0619-4303-960c-214a1204094f response: body: - string: '{"id":"a645eeb2-b088-4c1e-ad9b-c9ee2d017599","createdDateTimeUtc":"2021-04-01T20:47:26.8045647Z","lastActionDateTimeUtc":"2021-04-01T20:47:26.8045654Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"37464ce2-0619-4303-960c-214a1204094f","createdDateTimeUtc":"2021-05-06T21:04:25.4943194Z","lastActionDateTimeUtc":"2021-05-06T21:04:25.4943198Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 9e80eaf5-1b24-4381-8a7c-6f6bcff8c206 + - 28fd49f1-6674-40f4-8e39-09133f040d00 cache-control: - public,max-age=1 content-length: @@ -198,12 +196,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:26 GMT + - Thu, 06 May 2021 21:04:24 GMT etag: - - '"A6107DD724BB3DC13CE01CD456DAD965264405D6468489506E7B542DEC59D735"' + - '"DBA699DE3ADBD88A12D98BFBC656E9F0875A1ED9B5D15B9E2ACEC62B6FA09FAA"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -215,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 9e80eaf5-1b24-4381-8a7c-6f6bcff8c206 + - 28fd49f1-6674-40f4-8e39-09133f040d00 status: code: 200 message: OK @@ -229,15 +227,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a645eeb2-b088-4c1e-ad9b-c9ee2d017599 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/37464ce2-0619-4303-960c-214a1204094f response: body: - string: '{"id":"a645eeb2-b088-4c1e-ad9b-c9ee2d017599","createdDateTimeUtc":"2021-04-01T20:47:26.8045647Z","lastActionDateTimeUtc":"2021-04-01T20:47:26.9381182Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"37464ce2-0619-4303-960c-214a1204094f","createdDateTimeUtc":"2021-05-06T21:04:25.4943194Z","lastActionDateTimeUtc":"2021-05-06T21:04:25.4943198Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - bb83f231-3fd1-43a7-95ce-4ecda8cc380b + - d1ca6d62-569f-42fa-bda4-c2ca7b3accc5 cache-control: - public,max-age=1 content-length: @@ -245,12 +243,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:26 GMT + - Thu, 06 May 2021 21:04:25 GMT etag: - - '"44F9C413B7994E6D1E6470224CE8F8C05CCCAF389A0D37CC3AD05C8D8814A9E3"' + - '"DBA699DE3ADBD88A12D98BFBC656E9F0875A1ED9B5D15B9E2ACEC62B6FA09FAA"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -262,7 +260,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - bb83f231-3fd1-43a7-95ce-4ecda8cc380b + - d1ca6d62-569f-42fa-bda4-c2ca7b3accc5 status: code: 200 message: OK @@ -276,15 +274,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a645eeb2-b088-4c1e-ad9b-c9ee2d017599 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/37464ce2-0619-4303-960c-214a1204094f response: body: - string: '{"id":"a645eeb2-b088-4c1e-ad9b-c9ee2d017599","createdDateTimeUtc":"2021-04-01T20:47:26.8045647Z","lastActionDateTimeUtc":"2021-04-01T20:47:26.9381182Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"37464ce2-0619-4303-960c-214a1204094f","createdDateTimeUtc":"2021-05-06T21:04:25.4943194Z","lastActionDateTimeUtc":"2021-05-06T21:04:26.4243624Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 5d3d4c1e-a16b-45c0-bd33-9e8d66cc63aa + - d921fc4e-5830-4a35-9223-e6f8491d63e0 cache-control: - public,max-age=1 content-length: @@ -292,12 +290,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:27 GMT + - Thu, 06 May 2021 21:04:26 GMT etag: - - '"44F9C413B7994E6D1E6470224CE8F8C05CCCAF389A0D37CC3AD05C8D8814A9E3"' + - '"915F853295B4F2184EA4FB42181568E5C2102D11CD1CDEBFD5CA46FF5C3D02D9"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -309,7 +307,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5d3d4c1e-a16b-45c0-bd33-9e8d66cc63aa + - d921fc4e-5830-4a35-9223-e6f8491d63e0 status: code: 200 message: OK @@ -323,15 +321,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a645eeb2-b088-4c1e-ad9b-c9ee2d017599 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/37464ce2-0619-4303-960c-214a1204094f response: body: - string: '{"id":"a645eeb2-b088-4c1e-ad9b-c9ee2d017599","createdDateTimeUtc":"2021-04-01T20:47:26.8045647Z","lastActionDateTimeUtc":"2021-04-01T20:47:26.9381182Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"37464ce2-0619-4303-960c-214a1204094f","createdDateTimeUtc":"2021-05-06T21:04:25.4943194Z","lastActionDateTimeUtc":"2021-05-06T21:04:26.4243624Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - a739c6b2-55cf-41e3-a5b0-1b872023cac4 + - a2920224-4fe7-43d5-a27f-60132de190c4 cache-control: - public,max-age=1 content-length: @@ -339,12 +337,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:28 GMT + - Thu, 06 May 2021 21:04:27 GMT etag: - - '"44F9C413B7994E6D1E6470224CE8F8C05CCCAF389A0D37CC3AD05C8D8814A9E3"' + - '"915F853295B4F2184EA4FB42181568E5C2102D11CD1CDEBFD5CA46FF5C3D02D9"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -356,7 +354,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a739c6b2-55cf-41e3-a5b0-1b872023cac4 + - a2920224-4fe7-43d5-a27f-60132de190c4 status: code: 200 message: OK @@ -370,15 +368,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a645eeb2-b088-4c1e-ad9b-c9ee2d017599 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/37464ce2-0619-4303-960c-214a1204094f response: body: - string: '{"id":"a645eeb2-b088-4c1e-ad9b-c9ee2d017599","createdDateTimeUtc":"2021-04-01T20:47:26.8045647Z","lastActionDateTimeUtc":"2021-04-01T20:47:26.9381182Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"37464ce2-0619-4303-960c-214a1204094f","createdDateTimeUtc":"2021-05-06T21:04:25.4943194Z","lastActionDateTimeUtc":"2021-05-06T21:04:26.4243624Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 496e9a7d-b9a0-42ec-ade6-558d52d1d755 + - f6d86187-7515-4f83-8027-efa634045773 cache-control: - public,max-age=1 content-length: @@ -386,12 +384,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:29 GMT + - Thu, 06 May 2021 21:04:28 GMT etag: - - '"44F9C413B7994E6D1E6470224CE8F8C05CCCAF389A0D37CC3AD05C8D8814A9E3"' + - '"915F853295B4F2184EA4FB42181568E5C2102D11CD1CDEBFD5CA46FF5C3D02D9"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -403,7 +401,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 496e9a7d-b9a0-42ec-ade6-558d52d1d755 + - f6d86187-7515-4f83-8027-efa634045773 status: code: 200 message: OK @@ -417,122 +415,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a645eeb2-b088-4c1e-ad9b-c9ee2d017599 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/37464ce2-0619-4303-960c-214a1204094f response: body: - string: '{"id":"a645eeb2-b088-4c1e-ad9b-c9ee2d017599","createdDateTimeUtc":"2021-04-01T20:47:26.8045647Z","lastActionDateTimeUtc":"2021-04-01T20:47:26.9381182Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"37464ce2-0619-4303-960c-214a1204094f","createdDateTimeUtc":"2021-05-06T21:04:25.4943194Z","lastActionDateTimeUtc":"2021-05-06T21:04:29.656238Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 10ad6e6c-a050-48a4-b36d-9e316012f7a9 + - 4949d36d-7554-488f-af7e-ce8988ce067c cache-control: - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 01 Apr 2021 20:47:30 GMT - etag: - - '"44F9C413B7994E6D1E6470224CE8F8C05CCCAF389A0D37CC3AD05C8D8814A9E3"' - set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 10ad6e6c-a050-48a4-b36d-9e316012f7a9 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a645eeb2-b088-4c1e-ad9b-c9ee2d017599 - response: - body: - string: '{"id":"a645eeb2-b088-4c1e-ad9b-c9ee2d017599","createdDateTimeUtc":"2021-04-01T20:47:26.8045647Z","lastActionDateTimeUtc":"2021-04-01T20:47:26.9381182Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 535a656b-07e2-44f1-885b-299a5fb30f76 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 01 Apr 2021 20:47:31 GMT - etag: - - '"44F9C413B7994E6D1E6470224CE8F8C05CCCAF389A0D37CC3AD05C8D8814A9E3"' - set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 535a656b-07e2-44f1-885b-299a5fb30f76 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a645eeb2-b088-4c1e-ad9b-c9ee2d017599 - response: - body: - string: '{"id":"a645eeb2-b088-4c1e-ad9b-c9ee2d017599","createdDateTimeUtc":"2021-04-01T20:47:26.8045647Z","lastActionDateTimeUtc":"2021-04-01T20:47:33.4348138Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 03cba60b-5a2e-4006-8d9c-cfc2d0e94cf2 - cache-control: - - public,max-age=1 - content-length: - - '288' + - '287' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:33 GMT + - Thu, 06 May 2021 21:04:29 GMT etag: - - '"7E9C5C406B511F20C28C2CDA78C94BBC60D8CA05AC55046CB9C44FD2D3E0D3FA"' + - '"6AC9DD05FCBC9291DE00BBFE4079F86E274715BA7847A18C2BBC89147B090D00"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -544,7 +448,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 03cba60b-5a2e-4006-8d9c-cfc2d0e94cf2 + - 4949d36d-7554-488f-af7e-ce8988ce067c status: code: 200 message: OK @@ -558,30 +462,30 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a645eeb2-b088-4c1e-ad9b-c9ee2d017599/documents?$skip=0&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/37464ce2-0619-4303-960c-214a1204094f/documents?$skip=0 response: body: - string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/src72dfff66-87aa-4322-9864-1b2b59e9b918/22fdb125-eb77-4567-86c5-a4cb6a412085.txt","createdDateTimeUtc":"2021-04-01T20:47:33.3569249Z","lastActionDateTimeUtc":"2021-04-01T20:47:33.3569249Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Document + string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/src8219ba89-3723-4a34-a0b4-46e263b2a2bd/be4fcacd-4669-4f94-a6d0-80d6b801cae3.txt","createdDateTimeUtc":"2021-05-06T21:04:29.0003297Z","lastActionDateTimeUtc":"2021-05-06T21:04:29.6232318Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Document has wrong encoding or is binary file.","target":"Document","innerError":{"code":"WrongDocumentEncoding","message":"Document - has wrong encoding or is binary file."}},"progress":0,"id":"0000652e-0000-0000-0000-000000000000","characterCharged":0}]}' + has wrong encoding or is binary file."}},"progress":0,"id":"00002c09-0000-0000-0000-000000000000","characterCharged":0}]}' headers: apim-request-id: - - a5f84545-1314-47bf-99b5-02633bf2c89b + - b85b04b7-3d21-4a9c-a323-79b96266c9a0 cache-control: - public,max-age=1 content-length: - - '583' + - '584' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:33 GMT + - Thu, 06 May 2021 21:04:29 GMT etag: - - '"8FD6818D05F76BAD6AFB4683A8144DA3D0DA8E37B4A4AA9E6816067F34D9D76B"' + - '"2DB090F74E7FC5B461C50CDA00DCB3A429E4B15D96F2FE77471C2F58404558A3"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -593,7 +497,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a5f84545-1314-47bf-99b5-02633bf2c89b + - b85b04b7-3d21-4a9c-a323-79b96266c9a0 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_existing_documents_in_target.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_existing_documents_in_target.yaml index 0cf94fe61491..176100eeae34 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_existing_documents_in_target.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_existing_documents_in_target.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:30 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcb23e266f-c974-46be-96e1-6629d873f5a3?restype=container + uri: https://redacted.blob.core.windows.net/src9f44fa41-cf4d-41b6-8596-e01743e739bf?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:30 GMT etag: - - '"0x8D8F54F4E5AF3EF"' + - '"0x8D910D28B50EE9C"' last-modified: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:47:03 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:04:31 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcb23e266f-c974-46be-96e1-6629d873f5a3/document.txt + uri: https://redacted.blob.core.windows.net/src9f44fa41-cf4d-41b6-8596-e01743e739bf/document.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:30 GMT etag: - - '"0x8D8F54F4E62B95C"' + - '"0x8D910D28B7410B9"' last-modified: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:32 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target776986b2-0d07-46e8-92b5-badf0ce1898f?restype=container + uri: https://redacted.blob.core.windows.net/target2d1d811d-91a5-4a3b-a8a2-bf137e2e1ef5?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:31 GMT etag: - - '"0x8D8F54F4E7E257F"' + - '"0x8D910D28BFEA22A"' last-modified: - - Thu, 01 Apr 2021 20:47:04 GMT + - Thu, 06 May 2021 21:04:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -143,17 +141,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:47:04 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:04:32 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target776986b2-0d07-46e8-92b5-badf0ce1898f/document.txt + uri: https://redacted.blob.core.windows.net/target2d1d811d-91a5-4a3b-a8a2-bf137e2e1ef5/document.txt response: body: string: '' @@ -163,11 +159,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:32 GMT etag: - - '"0x8D8F54F4E875F0A"' + - '"0x8D910D28C224AAB"' last-modified: - - Thu, 01 Apr 2021 20:47:04 GMT + - Thu, 06 May 2021 21:04:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -180,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb23e266f-c974-46be-96e1-6629d873f5a3?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target776986b2-0d07-46e8-92b5-badf0ce1898f?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src9f44fa41-cf4d-41b6-8596-e01743e739bf?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2d1d811d-91a5-4a3b-a8a2-bf137e2e1ef5?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -191,11 +187,11 @@ interactions: Connection: - keep-alive Content-Length: - - '486' + - '490' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -203,16 +199,16 @@ interactions: string: '' headers: apim-request-id: - - 63450896-c6b3-4c39-8a45-4897355b40a7 + - ea41922f-9bfa-45da-a2eb-00d39843876a content-length: - '0' date: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:33 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c9126ab4-3a43-4bd3-895f-2bbb22f7cca9 + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/960c62df-193e-4ac9-844b-657699c2b9e4 set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -220,7 +216,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 63450896-c6b3-4c39-8a45-4897355b40a7 + - ea41922f-9bfa-45da-a2eb-00d39843876a status: code: 202 message: Accepted @@ -234,28 +230,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9126ab4-3a43-4bd3-895f-2bbb22f7cca9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/960c62df-193e-4ac9-844b-657699c2b9e4 response: body: - string: '{"id":"c9126ab4-3a43-4bd3-895f-2bbb22f7cca9","createdDateTimeUtc":"2021-04-01T20:47:04.394386Z","lastActionDateTimeUtc":"2021-04-01T20:47:04.3943863Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"960c62df-193e-4ac9-844b-657699c2b9e4","createdDateTimeUtc":"2021-05-06T21:04:33.4917928Z","lastActionDateTimeUtc":"2021-05-06T21:04:33.4917932Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 55453fd9-f7a2-4948-81ec-6fd464efb88d + - a72351e3-a41f-4363-8989-8d9c518db7dc cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:33 GMT etag: - - '"C4529F58D3151D6FA7F32F5665747C372CDB39A6CD4235CC0C9DF5E312F42315"' + - '"5E9145AFC3E2104C50036F16A5B57D1FE31311F4C38EA2E7A42A4E26391A3682"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -267,7 +263,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 55453fd9-f7a2-4948-81ec-6fd464efb88d + - a72351e3-a41f-4363-8989-8d9c518db7dc status: code: 200 message: OK @@ -281,28 +277,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9126ab4-3a43-4bd3-895f-2bbb22f7cca9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/960c62df-193e-4ac9-844b-657699c2b9e4 response: body: - string: '{"id":"c9126ab4-3a43-4bd3-895f-2bbb22f7cca9","createdDateTimeUtc":"2021-04-01T20:47:04.394386Z","lastActionDateTimeUtc":"2021-04-01T20:47:04.3943863Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"960c62df-193e-4ac9-844b-657699c2b9e4","createdDateTimeUtc":"2021-05-06T21:04:33.4917928Z","lastActionDateTimeUtc":"2021-05-06T21:04:33.4917932Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 9382c986-ef6b-4bba-b685-5fd06d3431e1 + - 92abd6f5-2231-4eb6-b6de-14597ee8025f cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:03 GMT + - Thu, 06 May 2021 21:04:33 GMT etag: - - '"C4529F58D3151D6FA7F32F5665747C372CDB39A6CD4235CC0C9DF5E312F42315"' + - '"5E9145AFC3E2104C50036F16A5B57D1FE31311F4C38EA2E7A42A4E26391A3682"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -314,7 +310,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 9382c986-ef6b-4bba-b685-5fd06d3431e1 + - 92abd6f5-2231-4eb6-b6de-14597ee8025f status: code: 200 message: OK @@ -328,28 +324,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9126ab4-3a43-4bd3-895f-2bbb22f7cca9 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/960c62df-193e-4ac9-844b-657699c2b9e4 response: body: - string: '{"id":"c9126ab4-3a43-4bd3-895f-2bbb22f7cca9","createdDateTimeUtc":"2021-04-01T20:47:04.394386Z","lastActionDateTimeUtc":"2021-04-01T20:47:04.5555798Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"960c62df-193e-4ac9-844b-657699c2b9e4","createdDateTimeUtc":"2021-05-06T21:04:33.4917928Z","lastActionDateTimeUtc":"2021-05-06T21:04:34.2175907Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 414a2647-01f7-4905-9458-074c6020d38a + - 904a1c12-d6e0-444c-b680-dd49ea0fb979 cache-control: - public,max-age=1 content-length: - - '287' + - '288' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:04 GMT + - Thu, 06 May 2021 21:04:34 GMT etag: - - '"C28D7DB22326CA96730114E4D8671CD42E7E58EB91F2EE404A2328D66541CEFF"' + - '"10135A9D396DBF74CDC4E021964D9D9EF6441CFEE348CEF507C584C75E0B8D23"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -361,7 +357,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 414a2647-01f7-4905-9458-074c6020d38a + - 904a1c12-d6e0-444c-b680-dd49ea0fb979 status: code: 200 message: OK @@ -375,30 +371,30 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c9126ab4-3a43-4bd3-895f-2bbb22f7cca9/documents?$skip=0&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/960c62df-193e-4ac9-844b-657699c2b9e4/documents?$skip=0 response: body: - string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/srcb23e266f-c974-46be-96e1-6629d873f5a3/document.txt","lastActionDateTimeUtc":"2021-04-01T20:47:04.555328Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Target + string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/src9f44fa41-cf4d-41b6-8596-e01743e739bf/document.txt","lastActionDateTimeUtc":"2021-05-06T21:04:34.2173985Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Target document file already exists.","target":"Document","innerError":{"code":"TargetFileAlreadyExists","message":"Target - document file already exists."}},"progress":0,"id":"00006526-0000-0000-0000-000000000000","characterCharged":0}]}' + document file already exists."}},"progress":0,"id":"00002c0a-0000-0000-0000-000000000000","characterCharged":0}]}' headers: apim-request-id: - - 85bb0c5e-3dd3-4aba-a50e-fe63a6e2a255 + - 84274106-4bee-4950-acc1-247aefe4e035 cache-control: - public,max-age=1 content-length: - - '484' + - '486' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:04 GMT + - Thu, 06 May 2021 21:04:35 GMT etag: - - '"BC7B9D6DB35DBEB7926A0669BDB4252F1DF25B75E2E5C1F2EA60B299C9725424"' + - '"C5A353BA74D3D7BC21FB125C9B565803055A63CEF00A5C4F0055D2F67512D2EC"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -410,7 +406,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 85bb0c5e-3dd3-4aba-a50e-fe63a6e2a255 + - 84274106-4bee-4950-acc1-247aefe4e035 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_existing_documents_in_target_one_valid.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_existing_documents_in_target_one_valid.yaml index b23372594176..ba5e335d0bc7 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_existing_documents_in_target_one_valid.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_existing_documents_in_target_one_valid.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:47:13 GMT + - Thu, 06 May 2021 21:04:35 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src87f30042-16d8-4a81-a76e-e8326c9c1c3c?restype=container + uri: https://redacted.blob.core.windows.net/srcac6495d3-191c-4eff-824a-c61fdd16acbe?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:47:13 GMT + - Thu, 06 May 2021 21:04:35 GMT etag: - - '"0x8D8F54F54865EF5"' + - '"0x8D910D28DFF29B1"' last-modified: - - Thu, 01 Apr 2021 20:47:14 GMT + - Thu, 06 May 2021 21:04:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:47:14 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:04:36 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src87f30042-16d8-4a81-a76e-e8326c9c1c3c/document.txt + uri: https://redacted.blob.core.windows.net/srcac6495d3-191c-4eff-824a-c61fdd16acbe/document.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:47:13 GMT + - Thu, 06 May 2021 21:04:36 GMT etag: - - '"0x8D8F54F54951673"' + - '"0x8D910D28E23F67F"' last-modified: - - Thu, 01 Apr 2021 20:47:14 GMT + - Thu, 06 May 2021 21:04:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -105,17 +103,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:47:14 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:04:36 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src87f30042-16d8-4a81-a76e-e8326c9c1c3c/f377c80b-2a19-4332-99c4-c6f5f8b7331d.txt + uri: https://redacted.blob.core.windows.net/srcac6495d3-191c-4eff-824a-c61fdd16acbe/aabcc451-45eb-4acf-a576-57b736794a38.txt response: body: string: '' @@ -125,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:47:13 GMT + - Thu, 06 May 2021 21:04:36 GMT etag: - - '"0x8D8F54F549DF1B0"' + - '"0x8D910D28E484DF4"' last-modified: - - Thu, 01 Apr 2021 20:47:14 GMT + - Thu, 06 May 2021 21:04:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -153,13 +149,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:47:14 GMT + - Thu, 06 May 2021 21:04:36 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targeta834b26e-aa95-47c0-a3bd-5576dc1d5f49?restype=container + uri: https://redacted.blob.core.windows.net/target052c7e10-70ab-4e6a-af93-53e0c74bc386?restype=container response: body: string: '' @@ -167,11 +163,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:47:13 GMT + - Thu, 06 May 2021 21:04:36 GMT etag: - - '"0x8D8F54F54C04CFC"' + - '"0x8D910D28ED3C4D0"' last-modified: - - Thu, 01 Apr 2021 20:47:14 GMT + - Thu, 06 May 2021 21:04:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -195,17 +191,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:47:14 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:04:37 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targeta834b26e-aa95-47c0-a3bd-5576dc1d5f49/document.txt + uri: https://redacted.blob.core.windows.net/target052c7e10-70ab-4e6a-af93-53e0c74bc386/document.txt response: body: string: '' @@ -215,11 +209,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:47:13 GMT + - Thu, 06 May 2021 21:04:36 GMT etag: - - '"0x8D8F54F54CB2476"' + - '"0x8D910D28EF8AB33"' last-modified: - - Thu, 01 Apr 2021 20:47:14 GMT + - Thu, 06 May 2021 21:04:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -232,8 +226,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src87f30042-16d8-4a81-a76e-e8326c9c1c3c?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targeta834b26e-aa95-47c0-a3bd-5576dc1d5f49?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcac6495d3-191c-4eff-824a-c61fdd16acbe?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target052c7e10-70ab-4e6a-af93-53e0c74bc386?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -243,11 +237,11 @@ interactions: Connection: - keep-alive Content-Length: - - '484' + - '486' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -255,16 +249,16 @@ interactions: string: '' headers: apim-request-id: - - c657aa51-3955-4522-819c-123fda58c6f6 + - e1109473-5467-491b-889a-6daf74c47a9c content-length: - '0' date: - - Thu, 01 Apr 2021 20:47:14 GMT + - Thu, 06 May 2021 21:04:38 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/f9fabec3-007e-4ee2-956b-57f5f70f0b05 + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -272,7 +266,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c657aa51-3955-4522-819c-123fda58c6f6 + - e1109473-5467-491b-889a-6daf74c47a9c status: code: 202 message: Accepted @@ -286,15 +280,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f9fabec3-007e-4ee2-956b-57f5f70f0b05 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 response: body: - string: '{"id":"f9fabec3-007e-4ee2-956b-57f5f70f0b05","createdDateTimeUtc":"2021-04-01T20:47:14.9830555Z","lastActionDateTimeUtc":"2021-04-01T20:47:14.983056Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:38.3526894Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 4cf578eb-0307-48f1-b0d4-e8ea25d9e66a + - 5faf77b7-9c36-4ab5-841e-5e164860b010 cache-control: - public,max-age=1 content-length: @@ -302,12 +296,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:14 GMT + - Thu, 06 May 2021 21:04:38 GMT etag: - - '"05D7E7C8504AF10F3DF9544018396EB10D3592798732B56E2694B36F0547777B"' + - '"6B9E7370B8A4F784F0B6501091A2A117779B4F0A6A7347B0347338BFC2F51086"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -319,7 +313,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4cf578eb-0307-48f1-b0d4-e8ea25d9e66a + - 5faf77b7-9c36-4ab5-841e-5e164860b010 status: code: 200 message: OK @@ -333,15 +327,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f9fabec3-007e-4ee2-956b-57f5f70f0b05 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 response: body: - string: '{"id":"f9fabec3-007e-4ee2-956b-57f5f70f0b05","createdDateTimeUtc":"2021-04-01T20:47:14.9830555Z","lastActionDateTimeUtc":"2021-04-01T20:47:15.181919Z","status":"NotStarted","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:38.3526894Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - a02715fa-d9ea-4d46-8402-150356d9bc47 + - 91ba077a-76bf-4bb3-8d4c-8328ab62c933 cache-control: - public,max-age=1 content-length: @@ -349,12 +343,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:14 GMT + - Thu, 06 May 2021 21:04:38 GMT etag: - - '"B36EDF7B5EC878C467A0FDFC3E00EF5190EF2F0D85A9AB05B6EB663E1925A597"' + - '"6B9E7370B8A4F784F0B6501091A2A117779B4F0A6A7347B0347338BFC2F51086"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -366,7 +360,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a02715fa-d9ea-4d46-8402-150356d9bc47 + - 91ba077a-76bf-4bb3-8d4c-8328ab62c933 status: code: 200 message: OK @@ -380,28 +374,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f9fabec3-007e-4ee2-956b-57f5f70f0b05 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 response: body: - string: '{"id":"f9fabec3-007e-4ee2-956b-57f5f70f0b05","createdDateTimeUtc":"2021-04-01T20:47:14.9830555Z","lastActionDateTimeUtc":"2021-04-01T20:47:15.181919Z","status":"NotStarted","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:39.5393549Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 7306a226-b6c5-4935-8951-80405056406a + - 277bf0e7-e0ae-42d7-af1e-1385361469ea cache-control: - public,max-age=1 content-length: - - '291' + - '288' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:15 GMT + - Thu, 06 May 2021 21:04:39 GMT etag: - - '"B36EDF7B5EC878C467A0FDFC3E00EF5190EF2F0D85A9AB05B6EB663E1925A597"' + - '"0753B75ECEA6477EF97C59A1916C03A0E91D70E66F8EA36AE7AB2646AF792A7A"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -413,7 +407,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 7306a226-b6c5-4935-8951-80405056406a + - 277bf0e7-e0ae-42d7-af1e-1385361469ea status: code: 200 message: OK @@ -427,28 +421,310 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f9fabec3-007e-4ee2-956b-57f5f70f0b05 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 response: body: - string: '{"id":"f9fabec3-007e-4ee2-956b-57f5f70f0b05","createdDateTimeUtc":"2021-04-01T20:47:14.9830555Z","lastActionDateTimeUtc":"2021-04-01T20:47:15.181919Z","status":"NotStarted","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:40.701558Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 0db2be30-92fc-4189-9451-69567b7296a2 + - 1ad52c7b-2e5b-4d96-a24e-fafceeec4462 cache-control: - public,max-age=1 content-length: - - '291' + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:04:40 GMT + etag: + - '"A87E035A6D97DA3551EC5FD2368A4679CECB39014EFF5D3C4438D447B02773EB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 1ad52c7b-2e5b-4d96-a24e-fafceeec4462 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 + response: + body: + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:40.701558Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 3f3a09b8-1b98-4f00-9658-35005f17dc38 + cache-control: + - public,max-age=1 + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:04:41 GMT + etag: + - '"A87E035A6D97DA3551EC5FD2368A4679CECB39014EFF5D3C4438D447B02773EB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 3f3a09b8-1b98-4f00-9658-35005f17dc38 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 + response: + body: + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:40.701558Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - c2393437-c579-4dbc-afc3-017e6543e6ff + cache-control: + - public,max-age=1 + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:04:42 GMT + etag: + - '"A87E035A6D97DA3551EC5FD2368A4679CECB39014EFF5D3C4438D447B02773EB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - c2393437-c579-4dbc-afc3-017e6543e6ff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 + response: + body: + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:40.701558Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 316766bd-bd17-4b5f-a8a8-3f7287898fcf + cache-control: + - public,max-age=1 + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:04:44 GMT + etag: + - '"A87E035A6D97DA3551EC5FD2368A4679CECB39014EFF5D3C4438D447B02773EB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 316766bd-bd17-4b5f-a8a8-3f7287898fcf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 + response: + body: + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:40.701558Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - e46c2707-506d-468d-b413-ad7953046f67 + cache-control: + - public,max-age=1 + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:04:45 GMT + etag: + - '"A87E035A6D97DA3551EC5FD2368A4679CECB39014EFF5D3C4438D447B02773EB"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - e46c2707-506d-468d-b413-ad7953046f67 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 + response: + body: + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:40.701558Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 0b1ff66f-0023-48e5-959c-24743b7b579d + cache-control: + - public,max-age=1 + content-length: + - '287' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:04:46 GMT + etag: + - '"A87E035A6D97DA3551EC5FD2368A4679CECB39014EFF5D3C4438D447B02773EB"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 0b1ff66f-0023-48e5-959c-24743b7b579d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 + response: + body: + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:40.701558Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 3a937860-ffd9-43bb-8cf8-40d3cfb3c210 + cache-control: + - public,max-age=1 + content-length: + - '287' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:16 GMT + - Thu, 06 May 2021 21:04:47 GMT etag: - - '"B36EDF7B5EC878C467A0FDFC3E00EF5190EF2F0D85A9AB05B6EB663E1925A597"' + - '"A87E035A6D97DA3551EC5FD2368A4679CECB39014EFF5D3C4438D447B02773EB"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -460,7 +736,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0db2be30-92fc-4189-9451-69567b7296a2 + - 3a937860-ffd9-43bb-8cf8-40d3cfb3c210 status: code: 200 message: OK @@ -474,15 +750,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f9fabec3-007e-4ee2-956b-57f5f70f0b05 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79 response: body: - string: '{"id":"f9fabec3-007e-4ee2-956b-57f5f70f0b05","createdDateTimeUtc":"2021-04-01T20:47:14.9830555Z","lastActionDateTimeUtc":"2021-04-01T20:47:17.771041Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"481f46a9-aa01-4115-aa62-3d3ea934be79","createdDateTimeUtc":"2021-05-06T21:04:38.352689Z","lastActionDateTimeUtc":"2021-05-06T21:04:40.701558Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - 9ba5906f-8f0b-4087-bfe5-70f40bf1b035 + - 38a32200-10c6-4c2c-bf4b-74e5241b47db cache-control: - public,max-age=1 content-length: @@ -490,12 +766,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:18 GMT + - Thu, 06 May 2021 21:04:48 GMT etag: - - '"7110622DE81BF3015D0FA84481283B0BA37C1F4C7A0DA8E5BF21C1695327FC23"' + - '"563F711A744AC07AFC20842D0F4AC3A514D5306E16F3F8EBAEF934BAB17ED097"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -507,7 +783,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 9ba5906f-8f0b-4087-bfe5-70f40bf1b035 + - 38a32200-10c6-4c2c-bf4b-74e5241b47db status: code: 200 message: OK @@ -521,30 +797,30 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/f9fabec3-007e-4ee2-956b-57f5f70f0b05/documents?$skip=0&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/481f46a9-aa01-4115-aa62-3d3ea934be79/documents?$skip=0 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targeta834b26e-aa95-47c0-a3bd-5576dc1d5f49/f377c80b-2a19-4332-99c4-c6f5f8b7331d.txt","sourcePath":"https://redacted.blob.core.windows.net/src87f30042-16d8-4a81-a76e-e8326c9c1c3c/f377c80b-2a19-4332-99c4-c6f5f8b7331d.txt","createdDateTimeUtc":"2021-04-01T20:47:17.7602653Z","lastActionDateTimeUtc":"2021-04-01T20:47:18.6168022Z","status":"Succeeded","to":"es","progress":1,"id":"0000652c-0000-0000-0000-000000000000","characterCharged":27},{"sourcePath":"https://redacted.blob.core.windows.net/src87f30042-16d8-4a81-a76e-e8326c9c1c3c/document.txt","lastActionDateTimeUtc":"2021-04-01T20:47:15.1572689Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Target + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target052c7e10-70ab-4e6a-af93-53e0c74bc386/aabcc451-45eb-4acf-a576-57b736794a38.txt","sourcePath":"https://redacted.blob.core.windows.net/srcac6495d3-191c-4eff-824a-c61fdd16acbe/aabcc451-45eb-4acf-a576-57b736794a38.txt","createdDateTimeUtc":"2021-05-06T21:04:40.072924Z","lastActionDateTimeUtc":"2021-05-06T21:04:48.5456598Z","status":"Succeeded","to":"es","progress":1,"id":"00002c0b-0000-0000-0000-000000000000","characterCharged":27},{"sourcePath":"https://redacted.blob.core.windows.net/srcac6495d3-191c-4eff-824a-c61fdd16acbe/document.txt","lastActionDateTimeUtc":"2021-05-06T21:04:39.5391603Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Target document file already exists.","target":"Document","innerError":{"code":"TargetFileAlreadyExists","message":"Target - document file already exists."}},"progress":0,"id":"0000652b-0000-0000-0000-000000000000","characterCharged":0}]}' + document file already exists."}},"progress":0,"id":"00002c0c-0000-0000-0000-000000000000","characterCharged":0}]}' headers: apim-request-id: - - 6dfa1281-56df-43e0-b340-dd76f699f6f8 + - 640ac1c9-5a54-48f7-bf78-4c78df2df843 cache-control: - public,max-age=1 content-length: - - '979' + - '981' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:47:18 GMT + - Thu, 06 May 2021 21:04:48 GMT etag: - - '"94AE4A9C73AE9D76EA16FE4903E1D076ECF00F4AF33376ED355F06AFF6B99965"' + - '"B1369EE20CC800C4DAAF82DD2F47C244EA1B5A126EC5DB3486C7D6DB1A8256B5"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -556,7 +832,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 6dfa1281-56df-43e0-b340-dd76f699f6f8 + - 640ac1c9-5a54-48f7-bf78-4c78df2df843 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_multiple_sources_single_target.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_multiple_sources_single_target.yaml index bc7c4150084a..7b4600327f49 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_multiple_sources_single_target.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_multiple_sources_single_target.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:14:37 GMT + - Thu, 06 May 2021 21:04:49 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src3317b758-77d6-4285-bd9f-4227fdfedd25?restype=container + uri: https://redacted.blob.core.windows.net/srcffd92ea9-e8cd-4668-b165-f515e9c2336f?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:14:37 GMT + - Thu, 06 May 2021 21:04:50 GMT etag: - - '"0x8D8F4925F9AD1D8"' + - '"0x8D910D29668092F"' last-modified: - - Wed, 31 Mar 2021 22:14:37 GMT + - Thu, 06 May 2021 21:04:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:14:38 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:04:50 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src3317b758-77d6-4285-bd9f-4227fdfedd25/a3e2bc88-de84-46a4-881b-ac113944b76a.txt + uri: https://redacted.blob.core.windows.net/srcffd92ea9-e8cd-4668-b165-f515e9c2336f/289a3eb0-3933-4f59-b56c-a275a40b80d9.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:14:37 GMT + - Thu, 06 May 2021 21:04:50 GMT etag: - - '"0x8D8F4925FCBEAF3"' + - '"0x8D910D2968B7469"' last-modified: - - Wed, 31 Mar 2021 22:14:38 GMT + - Thu, 06 May 2021 21:04:50 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:14:38 GMT + - Thu, 06 May 2021 21:04:50 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src4fd50bb1-9986-4a22-8a66-42ebe7fe6893?restype=container + uri: https://redacted.blob.core.windows.net/src58a8e005-389b-4cef-b2ab-34b8de4d482a?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:14:38 GMT + - Thu, 06 May 2021 21:04:51 GMT etag: - - '"0x8D8F4926061869F"' + - '"0x8D910D29715F166"' last-modified: - - Wed, 31 Mar 2021 22:14:39 GMT + - Thu, 06 May 2021 21:04:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -143,17 +141,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:14:39 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:04:51 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src4fd50bb1-9986-4a22-8a66-42ebe7fe6893/24ccc262-91e0-4508-b621-d03ed9aed578.txt + uri: https://redacted.blob.core.windows.net/src58a8e005-389b-4cef-b2ab-34b8de4d482a/c1c67fca-b599-4f8b-a8c4-9c064b37c527.txt response: body: string: '' @@ -163,11 +159,11 @@ interactions: content-md5: - fcJZDg3E50i3i55bsEwJZg== date: - - Wed, 31 Mar 2021 22:14:39 GMT + - Thu, 06 May 2021 21:04:51 GMT etag: - - '"0x8D8F4926087BC31"' + - '"0x8D910D2973ABFF6"' last-modified: - - Wed, 31 Mar 2021 22:14:39 GMT + - Thu, 06 May 2021 21:04:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -191,13 +187,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:14:40 GMT + - Thu, 06 May 2021 21:04:51 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target2869cdaa-8f99-4ab2-a6d5-29a4797c55d4?restype=container + uri: https://redacted.blob.core.windows.net/targetb62b0607-2b40-4732-a638-bb91a258fc38?restype=container response: body: string: '' @@ -205,11 +201,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:14:40 GMT + - Thu, 06 May 2021 21:04:51 GMT etag: - - '"0x8D8F492611E725E"' + - '"0x8D910D297C61C1C"' last-modified: - - Wed, 31 Mar 2021 22:14:40 GMT + - Thu, 06 May 2021 21:04:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -218,10 +214,10 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3317b758-77d6-4285-bd9f-4227fdfedd25?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2869cdaa-8f99-4ab2-a6d5-29a4797c55d4?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", - "language": "es"}]}, {"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4fd50bb1-9986-4a22-8a66-42ebe7fe6893?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target2869cdaa-8f99-4ab2-a6d5-29a4797c55d4?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcffd92ea9-e8cd-4668-b165-f515e9c2336f?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb62b0607-2b40-4732-a638-bb91a258fc38?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}, {"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src58a8e005-389b-4cef-b2ab-34b8de4d482a?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetb62b0607-2b40-4732-a638-bb91a258fc38?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "fr"}]}]}' headers: Accept: @@ -231,11 +227,11 @@ interactions: Connection: - keep-alive Content-Length: - - '966' + - '960' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -243,16 +239,16 @@ interactions: string: '' headers: apim-request-id: - - d010733a-7efe-474e-8ddb-e04a656ba261 + - 76eec9fc-4b83-4cf7-a87a-fb6f62422e22 content-length: - '0' date: - - Wed, 31 Mar 2021 22:14:40 GMT + - Thu, 06 May 2021 21:04:52 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -260,7 +256,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d010733a-7efe-474e-8ddb-e04a656ba261 + - 76eec9fc-4b83-4cf7-a87a-fb6f62422e22 status: code: 202 message: Accepted @@ -274,15 +270,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:41.0763729Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:53.1254771Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 30d45540-6aca-4918-b877-1e01380b0aa4 + - abf96bda-ddcc-4e89-9bc8-1d6785a7a8e9 cache-control: - public,max-age=1 content-length: @@ -290,9 +286,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:40 GMT + - Thu, 06 May 2021 21:04:52 GMT etag: - - '"8E8F94AB58F2E0C2CF004C38BEB5B3099FFE41F353775139F404F04D982AE9DB"' + - '"0F2DE19E7447C3DF4730039F3960FCD4725104734B434C5E9BDCFAAD7F77B31D"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -307,7 +303,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 30d45540-6aca-4918-b877-1e01380b0aa4 + - abf96bda-ddcc-4e89-9bc8-1d6785a7a8e9 status: code: 200 message: OK @@ -321,15 +317,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:41.0763729Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:53.1254771Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - f67b4e6f-f75e-4972-9fa6-c8945d8d4c95 + - 3c3d7358-f7ff-4af2-8252-0db27b19c146 cache-control: - public,max-age=1 content-length: @@ -337,12 +333,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:40 GMT + - Thu, 06 May 2021 21:04:52 GMT etag: - - '"8E8F94AB58F2E0C2CF004C38BEB5B3099FFE41F353775139F404F04D982AE9DB"' + - '"0F2DE19E7447C3DF4730039F3960FCD4725104734B434C5E9BDCFAAD7F77B31D"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -354,7 +350,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - f67b4e6f-f75e-4972-9fa6-c8945d8d4c95 + - 3c3d7358-f7ff-4af2-8252-0db27b19c146 status: code: 200 message: OK @@ -368,15 +364,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:41.0763729Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:53.1254771Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - a44f65ce-dcbe-4991-89ac-bba5233c33b3 + - f17340eb-c91b-4ad9-a99c-fa5348db8945 cache-control: - public,max-age=1 content-length: @@ -384,9 +380,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:41 GMT + - Thu, 06 May 2021 21:04:54 GMT etag: - - '"8E8F94AB58F2E0C2CF004C38BEB5B3099FFE41F353775139F404F04D982AE9DB"' + - '"0F2DE19E7447C3DF4730039F3960FCD4725104734B434C5E9BDCFAAD7F77B31D"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -401,7 +397,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a44f65ce-dcbe-4991-89ac-bba5233c33b3 + - f17340eb-c91b-4ad9-a99c-fa5348db8945 status: code: 200 message: OK @@ -415,216 +411,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:42.8614564Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:55.6682377Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 614efd33-8f00-439e-b5d5-d5d1e61748bd + - c347dbf4-7fa5-4882-be07-622c2d5ebad0 cache-control: - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:14:43 GMT - etag: - - '"0F7770A3029EA119EE70627E236FA86AAE11239D3AF55601370C22FCF74D8944"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 614efd33-8f00-439e-b5d5-d5d1e61748bd - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b - response: - body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:42.8614564Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 4295ab0f-bc65-4097-954a-50ef2d075dac - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:14:44 GMT - etag: - - '"0F7770A3029EA119EE70627E236FA86AAE11239D3AF55601370C22FCF74D8944"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 4295ab0f-bc65-4097-954a-50ef2d075dac - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b - response: - body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:42.8614564Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 6b0ee6de-4066-40b8-a180-7c26803e614d - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:14:45 GMT - etag: - - '"0F7770A3029EA119EE70627E236FA86AAE11239D3AF55601370C22FCF74D8944"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 6b0ee6de-4066-40b8-a180-7c26803e614d - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b - response: - body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:42.8614564Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 737396d9-bd4b-4053-a910-070ebd46bb25 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:14:46 GMT - etag: - - '"0F7770A3029EA119EE70627E236FA86AAE11239D3AF55601370C22FCF74D8944"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 737396d9-bd4b-4053-a910-070ebd46bb25 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b - response: - body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:42.8614564Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - f3b8edca-b49e-46c8-af9b-5f1299612651 - cache-control: - - public,max-age=1 - content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:47 GMT + - Thu, 06 May 2021 21:04:55 GMT etag: - - '"0F7770A3029EA119EE70627E236FA86AAE11239D3AF55601370C22FCF74D8944"' + - '"1B7B537ABFBA8140E4698C6BCCC1D0D0B697E506A71383D3FE6AF168E5C74960"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -636,7 +444,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - f3b8edca-b49e-46c8-af9b-5f1299612651 + - c347dbf4-7fa5-4882-be07-622c2d5ebad0 status: code: 200 message: OK @@ -650,15 +458,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:49.5761102Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":1,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:55.6682377Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - c71c358f-c415-452e-bf2a-dd0bd8e65cf2 + - 36fe913c-6574-4d92-b456-f694c96983d6 cache-control: - public,max-age=1 content-length: @@ -666,9 +474,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:49 GMT + - Thu, 06 May 2021 21:04:56 GMT etag: - - '"AF6B0596AD51FC02846760F7D08543C26CCE1B824C67891F675B3CFED0EF24A6"' + - '"1B7B537ABFBA8140E4698C6BCCC1D0D0B697E506A71383D3FE6AF168E5C74960"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -683,7 +491,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c71c358f-c415-452e-bf2a-dd0bd8e65cf2 + - 36fe913c-6574-4d92-b456-f694c96983d6 status: code: 200 message: OK @@ -697,15 +505,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:49.9848946Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:55.6682377Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 90cfb41c-db56-41d2-a931-28e8318b79fa + - 7a4b2a22-fe0e-4343-818e-66cd3dceea3e cache-control: - public,max-age=1 content-length: @@ -713,12 +521,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:50 GMT + - Thu, 06 May 2021 21:04:57 GMT etag: - - '"89D5C771117E83B39DFAD7B2EA2670229CF2CD68B3F2D87A0595909F5DD6F56B"' + - '"1B7B537ABFBA8140E4698C6BCCC1D0D0B697E506A71383D3FE6AF168E5C74960"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -730,7 +538,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 90cfb41c-db56-41d2-a931-28e8318b79fa + - 7a4b2a22-fe0e-4343-818e-66cd3dceea3e status: code: 200 message: OK @@ -744,15 +552,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:49.9848946Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:55.6682377Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - c7723390-f405-4c1f-b203-30db882186fd + - 5046bcce-6192-4aec-8167-465be5c8abc9 cache-control: - public,max-age=1 content-length: @@ -760,9 +568,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:51 GMT + - Thu, 06 May 2021 21:04:58 GMT etag: - - '"89D5C771117E83B39DFAD7B2EA2670229CF2CD68B3F2D87A0595909F5DD6F56B"' + - '"1B7B537ABFBA8140E4698C6BCCC1D0D0B697E506A71383D3FE6AF168E5C74960"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -777,7 +585,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - c7723390-f405-4c1f-b203-30db882186fd + - 5046bcce-6192-4aec-8167-465be5c8abc9 status: code: 200 message: OK @@ -791,15 +599,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:49.9848946Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:55.6682377Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 4d7ff61d-841f-4744-9b3a-b1992096a062 + - 0b26773f-cd05-4e6f-ae6a-70160aaae712 cache-control: - public,max-age=1 content-length: @@ -807,12 +615,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:52 GMT + - Thu, 06 May 2021 21:04:59 GMT etag: - - '"89D5C771117E83B39DFAD7B2EA2670229CF2CD68B3F2D87A0595909F5DD6F56B"' + - '"1B7B537ABFBA8140E4698C6BCCC1D0D0B697E506A71383D3FE6AF168E5C74960"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -824,7 +632,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4d7ff61d-841f-4744-9b3a-b1992096a062 + - 0b26773f-cd05-4e6f-ae6a-70160aaae712 status: code: 200 message: OK @@ -838,15 +646,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:49.9848946Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:55.6682377Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 57c508a4-f44a-451c-a27f-8e3b414d1bc6 + - d400f120-b9d0-4e2f-8c6b-6916e45a056f cache-control: - public,max-age=1 content-length: @@ -854,9 +662,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:54 GMT + - Thu, 06 May 2021 21:05:01 GMT etag: - - '"89D5C771117E83B39DFAD7B2EA2670229CF2CD68B3F2D87A0595909F5DD6F56B"' + - '"1B7B537ABFBA8140E4698C6BCCC1D0D0B697E506A71383D3FE6AF168E5C74960"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -871,7 +679,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 57c508a4-f44a-451c-a27f-8e3b414d1bc6 + - d400f120-b9d0-4e2f-8c6b-6916e45a056f status: code: 200 message: OK @@ -885,15 +693,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:49.9848946Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:55.6682377Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 46574906-45db-49b8-96af-34f39ae35220 + - 7561e157-68e9-460b-99d4-504a2853a0e3 cache-control: - public,max-age=1 content-length: @@ -901,12 +709,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:56 GMT + - Thu, 06 May 2021 21:05:02 GMT etag: - - '"89D5C771117E83B39DFAD7B2EA2670229CF2CD68B3F2D87A0595909F5DD6F56B"' + - '"1B7B537ABFBA8140E4698C6BCCC1D0D0B697E506A71383D3FE6AF168E5C74960"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -918,7 +726,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 46574906-45db-49b8-96af-34f39ae35220 + - 7561e157-68e9-460b-99d4-504a2853a0e3 status: code: 200 message: OK @@ -932,15 +740,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/69795248-7701-4eba-92bc-1a459407955b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e2945652-0e4c-422e-9acb-67618c429020 response: body: - string: '{"id":"69795248-7701-4eba-92bc-1a459407955b","createdDateTimeUtc":"2021-03-31T22:14:41.0763725Z","lastActionDateTimeUtc":"2021-03-31T22:14:56.7437208Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}' + string: '{"id":"e2945652-0e4c-422e-9acb-67618c429020","createdDateTimeUtc":"2021-05-06T21:04:53.1254767Z","lastActionDateTimeUtc":"2021-05-06T21:04:55.6682377Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}' headers: apim-request-id: - - a5e86f05-0a18-497e-98f7-36f104a34958 + - cd6f2e05-8e83-4df6-a310-ce94a41d30f7 cache-control: - public,max-age=1 content-length: @@ -948,12 +756,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:14:57 GMT + - Thu, 06 May 2021 21:05:03 GMT etag: - - '"2C59B7162BBC5057EE174A428C1B0BF468CA49ACA7826A50B112DF326CF3B154"' + - '"6913DDA80881359A9BF272B1FE50A7B6B949581A99DA80279C6CB526263AE3B3"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -965,7 +773,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - a5e86f05-0a18-497e-98f7-36f104a34958 + - cd6f2e05-8e83-4df6-a310-ce94a41d30f7 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target.yaml index fe4bd20505e3..b6b313cbc760 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:14:57 GMT + - Thu, 06 May 2021 21:05:04 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcb5d42849-8a29-41f8-a8e1-fd57738fe83c?restype=container + uri: https://redacted.blob.core.windows.net/src021187ec-1178-494d-8f29-27088f7061a7?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:14:58 GMT + - Thu, 06 May 2021 21:05:04 GMT etag: - - '"0x8D8F4926BF453FD"' + - '"0x8D910D29F1EC27C"' last-modified: - - Wed, 31 Mar 2021 22:14:58 GMT + - Thu, 06 May 2021 21:05:04 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:14:59 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:05:05 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcb5d42849-8a29-41f8-a8e1-fd57738fe83c/6e76fdd3-56ad-42e4-bb57-e5f898aa935f.txt + uri: https://redacted.blob.core.windows.net/src021187ec-1178-494d-8f29-27088f7061a7/937e211f-d421-4ce5-9d32-40feed31dffa.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:14:58 GMT + - Thu, 06 May 2021 21:05:05 GMT etag: - - '"0x8D8F4926C1AF79A"' + - '"0x8D910D29F42A771"' last-modified: - - Wed, 31 Mar 2021 22:14:58 GMT + - Thu, 06 May 2021 21:05:05 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:14:59 GMT + - Thu, 06 May 2021 21:05:05 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target940f7914-d235-42d3-94ed-548c5356a60c?restype=container + uri: https://redacted.blob.core.windows.net/targetaf5986f4-a17a-417a-ad0a-8b1e2a604a19?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:14:59 GMT + - Thu, 06 May 2021 21:05:05 GMT etag: - - '"0x8D8F4926CB12F4E"' + - '"0x8D910D29FCE5647"' last-modified: - - Wed, 31 Mar 2021 22:14:59 GMT + - Thu, 06 May 2021 21:05:05 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb5d42849-8a29-41f8-a8e1-fd57738fe83c?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target940f7914-d235-42d3-94ed-548c5356a60c?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src021187ec-1178-494d-8f29-27088f7061a7?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetaf5986f4-a17a-417a-ad0a-8b1e2a604a19?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -139,11 +137,11 @@ interactions: Connection: - keep-alive Content-Length: - - '494' + - '484' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -151,16 +149,16 @@ interactions: string: '' headers: apim-request-id: - - f8530ce8-17fd-4e46-9a33-b580aa074b8c + - 6ece8a8a-1597-4bb8-a771-bf7ee34cea6d content-length: - '0' date: - - Wed, 31 Mar 2021 22:14:59 GMT + - Thu, 06 May 2021 21:05:05 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/aa2f7df9-9591-4570-baf3-b36d705b213b set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -168,7 +166,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - f8530ce8-17fd-4e46-9a33-b580aa074b8c + - 6ece8a8a-1597-4bb8-a771-bf7ee34cea6d status: code: 202 message: Accepted @@ -182,15 +180,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/aa2f7df9-9591-4570-baf3-b36d705b213b response: body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:00.3958426Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"aa2f7df9-9591-4570-baf3-b36d705b213b","createdDateTimeUtc":"2021-05-06T21:05:06.5482554Z","lastActionDateTimeUtc":"2021-05-06T21:05:06.5482557Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 70bc7305-1c0a-4a46-b238-5e14b9debd6b + - db16bcac-7708-48d7-b997-3e96684bf811 cache-control: - public,max-age=1 content-length: @@ -198,12 +196,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:00 GMT + - Thu, 06 May 2021 21:05:06 GMT etag: - - '"233D7F7D299A70AF12AD79EC827DAB7F80CBCA7DE0DE134FB15606648A9CED29"' + - '"987B0581ECA5A8223E684796F7AC195A5FAAD5090D293F0EE769F5B77248BD45"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -215,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 70bc7305-1c0a-4a46-b238-5e14b9debd6b + - db16bcac-7708-48d7-b997-3e96684bf811 status: code: 200 message: OK @@ -229,15 +227,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/aa2f7df9-9591-4570-baf3-b36d705b213b response: body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:00.3958426Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"aa2f7df9-9591-4570-baf3-b36d705b213b","createdDateTimeUtc":"2021-05-06T21:05:06.5482554Z","lastActionDateTimeUtc":"2021-05-06T21:05:06.5482557Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 3a2e2e04-0f75-4b94-a5a0-140fb622b6ec + - 918d43b1-4aeb-48ac-9947-53287d02e7cf cache-control: - public,max-age=1 content-length: @@ -245,56 +243,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:00 GMT + - Thu, 06 May 2021 21:05:06 GMT etag: - - '"233D7F7D299A70AF12AD79EC827DAB7F80CBCA7DE0DE134FB15606648A9CED29"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3a2e2e04-0f75-4b94-a5a0-140fb622b6ec - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 - response: - body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:01.3970515Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 1090ad41-ee34-4918-a07b-f70498a56e88 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:01 GMT - etag: - - '"2F8FED55DB7096B0F5ED567DEAD60E41E7B5E431413008D69B9418870641350D"' + - '"987B0581ECA5A8223E684796F7AC195A5FAAD5090D293F0EE769F5B77248BD45"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -309,7 +260,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1090ad41-ee34-4918-a07b-f70498a56e88 + - 918d43b1-4aeb-48ac-9947-53287d02e7cf status: code: 200 message: OK @@ -323,28 +274,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/aa2f7df9-9591-4570-baf3-b36d705b213b response: body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:01.3970515Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"aa2f7df9-9591-4570-baf3-b36d705b213b","createdDateTimeUtc":"2021-05-06T21:05:06.5482554Z","lastActionDateTimeUtc":"2021-05-06T21:05:07.423213Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 5c44a2d2-db66-463f-b2a9-19af0a6b7b3f + - ed82c99a-37e3-4427-8ce2-b2a3f12cbb4f cache-control: - public,max-age=1 content-length: - - '292' + - '291' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:02 GMT + - Thu, 06 May 2021 21:05:07 GMT etag: - - '"2F8FED55DB7096B0F5ED567DEAD60E41E7B5E431413008D69B9418870641350D"' + - '"5030235FC9EE52000671FD786E9002020FEF125F366BA72061FC64AE5C4DDBEB"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -356,7 +307,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5c44a2d2-db66-463f-b2a9-19af0a6b7b3f + - ed82c99a-37e3-4427-8ce2-b2a3f12cbb4f status: code: 200 message: OK @@ -370,25 +321,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/aa2f7df9-9591-4570-baf3-b36d705b213b response: body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:01.3970515Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"aa2f7df9-9591-4570-baf3-b36d705b213b","createdDateTimeUtc":"2021-05-06T21:05:06.5482554Z","lastActionDateTimeUtc":"2021-05-06T21:05:07.423213Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 70311e13-55d1-4dea-95e8-6e04f146c9a4 + - 0c843cc7-fd84-4734-ab7b-fe95fdd820a4 cache-control: - public,max-age=1 content-length: - - '292' + - '291' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:03 GMT + - Thu, 06 May 2021 21:05:08 GMT etag: - - '"2F8FED55DB7096B0F5ED567DEAD60E41E7B5E431413008D69B9418870641350D"' + - '"5030235FC9EE52000671FD786E9002020FEF125F366BA72061FC64AE5C4DDBEB"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -403,7 +354,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 70311e13-55d1-4dea-95e8-6e04f146c9a4 + - 0c843cc7-fd84-4734-ab7b-fe95fdd820a4 status: code: 200 message: OK @@ -417,28 +368,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/aa2f7df9-9591-4570-baf3-b36d705b213b response: body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:04.6219976Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"aa2f7df9-9591-4570-baf3-b36d705b213b","createdDateTimeUtc":"2021-05-06T21:05:06.5482554Z","lastActionDateTimeUtc":"2021-05-06T21:05:07.423213Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 794c83d0-e5ea-4343-a116-ce73146e7d65 + - bf39a964-2823-4707-ad95-9e90141f4169 cache-control: - public,max-age=1 content-length: - - '289' + - '291' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:04 GMT + - Thu, 06 May 2021 21:05:09 GMT etag: - - '"584A1558B5D1108306B257DC8E6E44F31EF81B03CFF6FD33DB576A8917FF07B1"' + - '"5030235FC9EE52000671FD786E9002020FEF125F366BA72061FC64AE5C4DDBEB"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -450,7 +401,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 794c83d0-e5ea-4343-a116-ce73146e7d65 + - bf39a964-2823-4707-ad95-9e90141f4169 status: code: 200 message: OK @@ -464,15 +415,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/aa2f7df9-9591-4570-baf3-b36d705b213b response: body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:04.6219976Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"aa2f7df9-9591-4570-baf3-b36d705b213b","createdDateTimeUtc":"2021-05-06T21:05:06.5482554Z","lastActionDateTimeUtc":"2021-05-06T21:05:10.7474005Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 946ead87-15f0-469f-9cac-d7d48ec65284 + - b580ceb4-a9c5-4019-ac76-0126f8111831 cache-control: - public,max-age=1 content-length: @@ -480,9 +431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:05 GMT + - Thu, 06 May 2021 21:05:10 GMT etag: - - '"584A1558B5D1108306B257DC8E6E44F31EF81B03CFF6FD33DB576A8917FF07B1"' + - '"A551CE0CD24E16185E8B7F72EF40D960195F2AB9820AC54514F60D517EA7A9DC"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -497,54 +448,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 946ead87-15f0-469f-9cac-d7d48ec65284 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 - response: - body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:04.6219976Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 883cf860-a815-4d6b-b769-4b0f46fdd2ee - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:06 GMT - etag: - - '"584A1558B5D1108306B257DC8E6E44F31EF81B03CFF6FD33DB576A8917FF07B1"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 883cf860-a815-4d6b-b769-4b0f46fdd2ee + - b580ceb4-a9c5-4019-ac76-0126f8111831 status: code: 200 message: OK @@ -558,15 +462,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/aa2f7df9-9591-4570-baf3-b36d705b213b response: body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:04.6219976Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"aa2f7df9-9591-4570-baf3-b36d705b213b","createdDateTimeUtc":"2021-05-06T21:05:06.5482554Z","lastActionDateTimeUtc":"2021-05-06T21:05:10.7474005Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 4b995c4b-ac78-4764-8da0-cf7f952d2a8b + - 1f4b126a-fdd3-43a1-a6c6-b01b6c678422 cache-control: - public,max-age=1 content-length: @@ -574,12 +478,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:08 GMT + - Thu, 06 May 2021 21:05:12 GMT etag: - - '"584A1558B5D1108306B257DC8E6E44F31EF81B03CFF6FD33DB576A8917FF07B1"' + - '"A551CE0CD24E16185E8B7F72EF40D960195F2AB9820AC54514F60D517EA7A9DC"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -591,7 +495,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4b995c4b-ac78-4764-8da0-cf7f952d2a8b + - 1f4b126a-fdd3-43a1-a6c6-b01b6c678422 status: code: 200 message: OK @@ -605,119 +509,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/aa2f7df9-9591-4570-baf3-b36d705b213b response: body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:04.6219976Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"aa2f7df9-9591-4570-baf3-b36d705b213b","createdDateTimeUtc":"2021-05-06T21:05:06.5482554Z","lastActionDateTimeUtc":"2021-05-06T21:05:10.7474005Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - 6a5f11f3-e936-4ba9-b1bc-784b28a101e9 + - d9eca81a-eb4e-4985-955c-4f2d18d339b7 cache-control: - public,max-age=1 content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:09 GMT - etag: - - '"584A1558B5D1108306B257DC8E6E44F31EF81B03CFF6FD33DB576A8917FF07B1"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 6a5f11f3-e936-4ba9-b1bc-784b28a101e9 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 - response: - body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:04.6219976Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - ad00539c-b19c-4a83-bb7e-5afa74b8915c - cache-control: - - public,max-age=1 - content-length: - - '289' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:10 GMT - etag: - - '"584A1558B5D1108306B257DC8E6E44F31EF81B03CFF6FD33DB576A8917FF07B1"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ad00539c-b19c-4a83-bb7e-5afa74b8915c - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 - response: - body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:04.6219976Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 54587145-36e2-4904-8624-151c709a7781 - cache-control: - - public,max-age=1 - content-length: - - '289' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:11 GMT + - Thu, 06 May 2021 21:05:13 GMT etag: - - '"584A1558B5D1108306B257DC8E6E44F31EF81B03CFF6FD33DB576A8917FF07B1"' + - '"AFA4A718BF6DDF1B8BB3EF11729CEC7B15D7C286A7DD9FD5E0CD5EAC9F888657"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -732,54 +542,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 54587145-36e2-4904-8624-151c709a7781 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a18a6d98-aaa2-4320-9651-ac7b4cfc7a14 - response: - body: - string: '{"id":"a18a6d98-aaa2-4320-9651-ac7b4cfc7a14","createdDateTimeUtc":"2021-03-31T22:15:00.3958422Z","lastActionDateTimeUtc":"2021-03-31T22:15:12.8764923Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' - headers: - apim-request-id: - - ac9778d6-3cab-4f40-a931-5c2b2c9238f8 - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:12 GMT - etag: - - '"6BD956AD7EA15BECBFD3CE3A1E3B8046A01EEE7CE8A94B5140C698F833973324"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - ac9778d6-3cab-4f40-a931-5c2b2c9238f8 + - d9eca81a-eb4e-4985-955c-4f2d18d339b7 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target_with_prefix.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target_with_prefix.yaml index ae829ee0136c..f9331a3093ae 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target_with_prefix.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target_with_prefix.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:15:14 GMT + - Thu, 06 May 2021 21:05:14 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc6510b63-1fb8-440d-b405-9665c389655e?restype=container + uri: https://redacted.blob.core.windows.net/srcac504691-b275-4176-9e5e-9e533cf62ab3?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:15:14 GMT + - Thu, 06 May 2021 21:05:14 GMT etag: - - '"0x8D8F4927579F130"' + - '"0x8D910D2A528400A"' last-modified: - - Wed, 31 Mar 2021 22:15:14 GMT + - Thu, 06 May 2021 21:05:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:15:15 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:05:15 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc6510b63-1fb8-440d-b405-9665c389655e/xyzdb2a4dea-0598-454f-94ed-44b0b1a155d5.txt + uri: https://redacted.blob.core.windows.net/srcac504691-b275-4176-9e5e-9e533cf62ab3/xyz72caeadf-37a7-4f3d-851f-8bd05aebacaa.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:15:14 GMT + - Thu, 06 May 2021 21:05:14 GMT etag: - - '"0x8D8F49275A2E8B3"' + - '"0x8D910D2A551222A"' last-modified: - - Wed, 31 Mar 2021 22:15:14 GMT + - Thu, 06 May 2021 21:05:15 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:15:15 GMT + - Thu, 06 May 2021 21:05:15 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target6baaa8e8-c726-4a0c-82fd-4b7d9eb27ba0?restype=container + uri: https://redacted.blob.core.windows.net/target7fafead0-28e4-4a8f-9294-2fa98968dc7c?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:15:16 GMT + - Thu, 06 May 2021 21:05:16 GMT etag: - - '"0x8D8F492766FE00D"' + - '"0x8D910D2A5DC8941"' last-modified: - - Wed, 31 Mar 2021 22:15:16 GMT + - Thu, 06 May 2021 21:05:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc6510b63-1fb8-440d-b405-9665c389655e?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {"prefix": "xyz"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target6baaa8e8-c726-4a0c-82fd-4b7d9eb27ba0?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcac504691-b275-4176-9e5e-9e533cf62ab3?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {"prefix": "xyz"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target7fafead0-28e4-4a8f-9294-2fa98968dc7c?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -143,7 +141,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -151,16 +149,16 @@ interactions: string: '' headers: apim-request-id: - - 652a00ae-85eb-437f-9de9-bd0bda078633 + - 907ab8ad-d1ab-46e4-8b19-904e4aa85d74 content-length: - '0' date: - - Wed, 31 Mar 2021 22:15:16 GMT + - Thu, 06 May 2021 21:05:15 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -168,7 +166,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 652a00ae-85eb-437f-9de9-bd0bda078633 + - 907ab8ad-d1ab-46e4-8b19-904e4aa85d74 status: code: 202 message: Accepted @@ -182,25 +180,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:17.2759486Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:16.656836Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - ccf6a3be-590c-447c-8715-4a51fdc2545d + - b51dcefa-e265-4850-ba7f-fbb0ec923cc3 cache-control: - public,max-age=1 content-length: - - '292' + - '291' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:17 GMT + - Thu, 06 May 2021 21:05:15 GMT etag: - - '"B9F66A0283B189502B4AD9A1578035E90C9933245065C6C339C7699C44A04A17"' + - '"7A7B8B6DB99257563EC92A1BA7C91A1BD70D122CFFA5435D8CE02DC99E54D570"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -215,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ccf6a3be-590c-447c-8715-4a51fdc2545d + - b51dcefa-e265-4850-ba7f-fbb0ec923cc3 status: code: 200 message: OK @@ -229,28 +227,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:17.2759486Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:16.656836Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 40ccba50-bf96-475f-a646-9f1221c8c3ba + - 35f75e4d-2e73-448d-9827-dc490787409c cache-control: - public,max-age=1 content-length: - - '292' + - '291' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:17 GMT + - Thu, 06 May 2021 21:05:16 GMT etag: - - '"B9F66A0283B189502B4AD9A1578035E90C9933245065C6C339C7699C44A04A17"' + - '"7A7B8B6DB99257563EC92A1BA7C91A1BD70D122CFFA5435D8CE02DC99E54D570"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -262,7 +260,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 40ccba50-bf96-475f-a646-9f1221c8c3ba + - 35f75e4d-2e73-448d-9827-dc490787409c status: code: 200 message: OK @@ -276,15 +274,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:18.2557244Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:17.5357306Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - e80f4efe-5d07-4388-b77b-81650825139f + - 2789c47b-e592-470b-8d58-4f8685236ae3 cache-control: - public,max-age=1 content-length: @@ -292,9 +290,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:18 GMT + - Thu, 06 May 2021 21:05:17 GMT etag: - - '"950F7270A0F947B27100B00EE333943112E86B06C78E3E7AD7782C43F599154B"' + - '"A23B2A700E4110B0600A8E7DBDF28C5E5A784BCD0865596A3239AC5A92A72135"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -309,7 +307,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e80f4efe-5d07-4388-b77b-81650825139f + - 2789c47b-e592-470b-8d58-4f8685236ae3 status: code: 200 message: OK @@ -323,28 +321,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:19.839027Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:17.5357306Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 4aef3e41-6c38-4bd1-889c-179000ab001f + - 26c04b42-956b-4aa1-9142-a8cbc3205b1d cache-control: - public,max-age=1 content-length: - - '288' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:20 GMT + - Thu, 06 May 2021 21:05:18 GMT etag: - - '"0BACB00D67C8AD79C1E4A814670C535FEF942CD3A7ECA9650D6B470C44DBD1E6"' + - '"A23B2A700E4110B0600A8E7DBDF28C5E5A784BCD0865596A3239AC5A92A72135"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -356,7 +354,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4aef3e41-6c38-4bd1-889c-179000ab001f + - 26c04b42-956b-4aa1-9142-a8cbc3205b1d status: code: 200 message: OK @@ -370,25 +368,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:19.839027Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:17.5357306Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - cf82ca9e-255f-4bcc-be7d-da9b2914169d + - 64f6610a-f3e2-40f8-8064-498807353739 cache-control: - public,max-age=1 content-length: - - '288' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:21 GMT + - Thu, 06 May 2021 21:05:19 GMT etag: - - '"0BACB00D67C8AD79C1E4A814670C535FEF942CD3A7ECA9650D6B470C44DBD1E6"' + - '"A23B2A700E4110B0600A8E7DBDF28C5E5A784BCD0865596A3239AC5A92A72135"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -403,7 +401,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cf82ca9e-255f-4bcc-be7d-da9b2914169d + - 64f6610a-f3e2-40f8-8064-498807353739 status: code: 200 message: OK @@ -417,28 +415,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:19.839027Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:17.5357306Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 0aa2d029-d0c4-4ece-8f18-2b4995068bae + - 44b5b912-0b88-4e03-9e2b-4317d30d60cc cache-control: - public,max-age=1 content-length: - - '288' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:22 GMT + - Thu, 06 May 2021 21:05:21 GMT etag: - - '"0BACB00D67C8AD79C1E4A814670C535FEF942CD3A7ECA9650D6B470C44DBD1E6"' + - '"A23B2A700E4110B0600A8E7DBDF28C5E5A784BCD0865596A3239AC5A92A72135"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -450,7 +448,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0aa2d029-d0c4-4ece-8f18-2b4995068bae + - 44b5b912-0b88-4e03-9e2b-4317d30d60cc status: code: 200 message: OK @@ -464,25 +462,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:19.839027Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:17.5357306Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 09ec97a8-a788-4360-9d53-37f99b1e4232 + - 9853e8fe-2baa-42c5-996e-f00beee1594a cache-control: - public,max-age=1 content-length: - - '288' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:23 GMT + - Thu, 06 May 2021 21:05:22 GMT etag: - - '"0BACB00D67C8AD79C1E4A814670C535FEF942CD3A7ECA9650D6B470C44DBD1E6"' + - '"A23B2A700E4110B0600A8E7DBDF28C5E5A784BCD0865596A3239AC5A92A72135"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -497,7 +495,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 09ec97a8-a788-4360-9d53-37f99b1e4232 + - 9853e8fe-2baa-42c5-996e-f00beee1594a status: code: 200 message: OK @@ -511,28 +509,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:19.839027Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:17.5357306Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 960d29df-8fc4-4232-94e1-3eabfa52065d + - b7614bb9-3928-4fe3-973d-6131d30e85b2 cache-control: - public,max-age=1 content-length: - - '288' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:25 GMT + - Thu, 06 May 2021 21:05:24 GMT etag: - - '"0BACB00D67C8AD79C1E4A814670C535FEF942CD3A7ECA9650D6B470C44DBD1E6"' + - '"A23B2A700E4110B0600A8E7DBDF28C5E5A784BCD0865596A3239AC5A92A72135"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -544,7 +542,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 960d29df-8fc4-4232-94e1-3eabfa52065d + - b7614bb9-3928-4fe3-973d-6131d30e85b2 status: code: 200 message: OK @@ -558,25 +556,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:19.839027Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:24.6314397Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - ec2d2a09-0570-4baa-be63-c104e665125e + - decb4d1b-0662-4c08-a5f5-c3600eea98ba cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:26 GMT + - Thu, 06 May 2021 21:05:25 GMT etag: - - '"0BACB00D67C8AD79C1E4A814670C535FEF942CD3A7ECA9650D6B470C44DBD1E6"' + - '"F4E5D63B2E3A767E561D5D5AF59566C972216354B8586E019685FF467F6D258B"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -591,7 +589,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ec2d2a09-0570-4baa-be63-c104e665125e + - decb4d1b-0662-4c08-a5f5-c3600eea98ba status: code: 200 message: OK @@ -605,28 +603,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:19.839027Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:24.6314397Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 6cba54bf-1c58-44fb-841b-f375614f3a67 + - 72cb8543-a8d3-4f63-83ee-f5001de5c2f7 cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:28 GMT + - Thu, 06 May 2021 21:05:26 GMT etag: - - '"0BACB00D67C8AD79C1E4A814670C535FEF942CD3A7ECA9650D6B470C44DBD1E6"' + - '"F4E5D63B2E3A767E561D5D5AF59566C972216354B8586E019685FF467F6D258B"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -638,7 +636,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 6cba54bf-1c58-44fb-841b-f375614f3a67 + - 72cb8543-a8d3-4f63-83ee-f5001de5c2f7 status: code: 200 message: OK @@ -652,25 +650,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 response: body: - string: '{"id":"04f4d0f0-fa38-4673-b0ce-cfb91eabe4f4","createdDateTimeUtc":"2021-03-31T22:15:17.2759483Z","lastActionDateTimeUtc":"2021-03-31T22:15:28.9080085Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:24.6314397Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 0bb5926b-73fe-4939-b007-094a2303799c + - faac4777-85e0-4c4a-9056-ada07c51d32b cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:29 GMT + - Thu, 06 May 2021 21:05:27 GMT etag: - - '"D6BC63ED274EAC459EDD987B98DF926B4885FA7A7004310F87171FF739E3509B"' + - '"F4E5D63B2E3A767E561D5D5AF59566C972216354B8586E019685FF467F6D258B"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -685,7 +683,54 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0bb5926b-73fe-4939-b007-094a2303799c + - faac4777-85e0-4c4a-9056-ada07c51d32b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/dd0512fd-5efb-403b-9632-324fdf23eb37 + response: + body: + string: '{"id":"dd0512fd-5efb-403b-9632-324fdf23eb37","createdDateTimeUtc":"2021-05-06T21:05:16.6568356Z","lastActionDateTimeUtc":"2021-05-06T21:05:24.6314397Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + headers: + apim-request-id: + - 2389cdff-9a30-4bde-92a4-53bebe7e8c05 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:05:28 GMT + etag: + - '"8BEDB76156E5A3AC8A11BDE2BF997C6695FC7B1D5C179B25C1476DB138D0C17C"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 2389cdff-9a30-4bde-92a4-53bebe7e8c05 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target_with_suffix.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target_with_suffix.yaml index cbd96ee21df9..c352828febf5 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target_with_suffix.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_single_target_with_suffix.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:15:31 GMT + - Thu, 06 May 2021 21:05:29 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcdf33d061-d169-4078-b2b8-1251f76c4505?restype=container + uri: https://redacted.blob.core.windows.net/src44237cb3-314a-47f1-a25d-0cd7e3b36167?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:15:31 GMT + - Thu, 06 May 2021 21:05:29 GMT etag: - - '"0x8D8F4927FFBA11B"' + - '"0x8D910D2AE1C5529"' last-modified: - - Wed, 31 Mar 2021 22:15:32 GMT + - Thu, 06 May 2021 21:05:29 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:15:33 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:05:30 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcdf33d061-d169-4078-b2b8-1251f76c4505/8e3f71fa-8459-40bd-b410-4c6262b1cc5e.txt + uri: https://redacted.blob.core.windows.net/src44237cb3-314a-47f1-a25d-0cd7e3b36167/e2cb7564-7eb7-4be9-befa-0cf3a58fb7a3.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:15:31 GMT + - Thu, 06 May 2021 21:05:29 GMT etag: - - '"0x8D8F492803A7F38"' + - '"0x8D910D2AE40AD7C"' last-modified: - - Wed, 31 Mar 2021 22:15:32 GMT + - Thu, 06 May 2021 21:05:30 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:15:33 GMT + - Thu, 06 May 2021 21:05:30 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target5c38b9aa-45c1-4183-ac65-d9310cf243b9?restype=container + uri: https://redacted.blob.core.windows.net/target03906afd-b5e1-4b68-86e3-46aacc4feaf9?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:15:33 GMT + - Thu, 06 May 2021 21:05:30 GMT etag: - - '"0x8D8F49281060F04"' + - '"0x8D910D2AECAA5F7"' last-modified: - - Wed, 31 Mar 2021 22:15:33 GMT + - Thu, 06 May 2021 21:05:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcdf33d061-d169-4078-b2b8-1251f76c4505?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {"suffix": "txt"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5c38b9aa-45c1-4183-ac65-d9310cf243b9?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src44237cb3-314a-47f1-a25d-0cd7e3b36167?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {"suffix": "txt"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target03906afd-b5e1-4b68-86e3-46aacc4feaf9?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -139,11 +137,11 @@ interactions: Connection: - keep-alive Content-Length: - - '507' + - '503' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -151,16 +149,16 @@ interactions: string: '' headers: apim-request-id: - - 467e6d59-2d67-4b18-a06e-1d5c383167c1 + - 35a55892-134a-41a1-be9c-2e1b006d2433 content-length: - '0' date: - - Wed, 31 Mar 2021 22:15:34 GMT + - Thu, 06 May 2021 21:05:31 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/5632865d-2020-4546-a3b3-157b9f427851 set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -168,7 +166,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 467e6d59-2d67-4b18-a06e-1d5c383167c1 + - 35a55892-134a-41a1-be9c-2e1b006d2433 status: code: 202 message: Accepted @@ -182,28 +180,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5632865d-2020-4546-a3b3-157b9f427851 response: body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:35.196386Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5632865d-2020-4546-a3b3-157b9f427851","createdDateTimeUtc":"2021-05-06T21:05:31.7512734Z","lastActionDateTimeUtc":"2021-05-06T21:05:31.7512737Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - d5ea5c63-8fe3-4e32-92c1-7cdc5c315168 + - afc2b418-e68d-4854-b35e-23d735ef67c2 cache-control: - public,max-age=1 content-length: - - '291' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:34 GMT + - Thu, 06 May 2021 21:05:31 GMT etag: - - '"E00EDE863653FC32BD4A2939B4B477E5185CE01C4C9151BA4CA38E50607A3918"' + - '"4903C598D120DB7C50083C20EB1346208FA0AF3C6222405F8EC081A33ADF4198"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -215,7 +213,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - d5ea5c63-8fe3-4e32-92c1-7cdc5c315168 + - afc2b418-e68d-4854-b35e-23d735ef67c2 status: code: 200 message: OK @@ -229,401 +227,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 - response: - body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:35.196386Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 85848cf6-81d5-4d02-8596-081e02b22c90 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:34 GMT - etag: - - '"E00EDE863653FC32BD4A2939B4B477E5185CE01C4C9151BA4CA38E50607A3918"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 85848cf6-81d5-4d02-8596-081e02b22c90 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 - response: - body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:36.195041Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - d93ad1d2-5119-4277-85f3-7990a7646253 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:36 GMT - etag: - - '"929D03B06A50B7AD57DF290C35A7BFE1EBDC9FD49973AF5501205C80E86D3A1F"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - d93ad1d2-5119-4277-85f3-7990a7646253 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 - response: - body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:36.195041Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 1333b4d3-22de-4596-87ad-bc47b70c8b8a - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:37 GMT - etag: - - '"929D03B06A50B7AD57DF290C35A7BFE1EBDC9FD49973AF5501205C80E86D3A1F"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 1333b4d3-22de-4596-87ad-bc47b70c8b8a - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 - response: - body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:36.195041Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 5e0bea28-e1b9-433c-842c-588fe8493673 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:39 GMT - etag: - - '"929D03B06A50B7AD57DF290C35A7BFE1EBDC9FD49973AF5501205C80E86D3A1F"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 5e0bea28-e1b9-433c-842c-588fe8493673 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 - response: - body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:36.195041Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 3e1da837-cf63-4a81-ab96-30b94973afe6 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:40 GMT - etag: - - '"929D03B06A50B7AD57DF290C35A7BFE1EBDC9FD49973AF5501205C80E86D3A1F"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 3e1da837-cf63-4a81-ab96-30b94973afe6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 - response: - body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:36.195041Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 4add5be8-9759-4268-b00b-67c5526f40fc - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:41 GMT - etag: - - '"929D03B06A50B7AD57DF290C35A7BFE1EBDC9FD49973AF5501205C80E86D3A1F"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 4add5be8-9759-4268-b00b-67c5526f40fc - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 - response: - body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:36.195041Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 9516c7b6-1a6d-4b2d-8c59-f994ac571108 - cache-control: - - public,max-age=1 - content-length: - - '291' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:42 GMT - etag: - - '"929D03B06A50B7AD57DF290C35A7BFE1EBDC9FD49973AF5501205C80E86D3A1F"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 9516c7b6-1a6d-4b2d-8c59-f994ac571108 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 - response: - body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:44.750587Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 1488f448-faee-48b4-b345-7a0552ca6bec - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:43 GMT - etag: - - '"0D84C79371DFD6A5414E3C85F0968DC7E3EB2DF50E58B83D86415AC198C74E5A"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 1488f448-faee-48b4-b345-7a0552ca6bec - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5632865d-2020-4546-a3b3-157b9f427851 response: body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:44.750587Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5632865d-2020-4546-a3b3-157b9f427851","createdDateTimeUtc":"2021-05-06T21:05:31.7512734Z","lastActionDateTimeUtc":"2021-05-06T21:05:31.7512737Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - de0aba76-b7c4-4a0f-a7bb-a8f04fe3687b + - 702cee69-7a5e-4be5-9094-c5b83b020e4b cache-control: - public,max-age=1 content-length: - - '288' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:46 GMT + - Thu, 06 May 2021 21:05:31 GMT etag: - - '"0D84C79371DFD6A5414E3C85F0968DC7E3EB2DF50E58B83D86415AC198C74E5A"' + - '"4903C598D120DB7C50083C20EB1346208FA0AF3C6222405F8EC081A33ADF4198"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -638,54 +260,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - de0aba76-b7c4-4a0f-a7bb-a8f04fe3687b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 - response: - body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:44.750587Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 59a4b2a2-43ed-4dfb-856d-6e54ab477fd8 - cache-control: - - public,max-age=1 - content-length: - - '288' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:15:47 GMT - etag: - - '"0D84C79371DFD6A5414E3C85F0968DC7E3EB2DF50E58B83D86415AC198C74E5A"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 59a4b2a2-43ed-4dfb-856d-6e54ab477fd8 + - 702cee69-7a5e-4be5-9094-c5b83b020e4b status: code: 200 message: OK @@ -699,28 +274,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5632865d-2020-4546-a3b3-157b9f427851 response: body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:44.750587Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5632865d-2020-4546-a3b3-157b9f427851","createdDateTimeUtc":"2021-05-06T21:05:31.7512734Z","lastActionDateTimeUtc":"2021-05-06T21:05:32.6671718Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 5841f0c2-fff5-478c-b8cb-ed48f5883f80 + - cd809d0a-da3d-47ff-8c58-ee0ade1eda44 cache-control: - public,max-age=1 content-length: - - '288' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:49 GMT + - Thu, 06 May 2021 21:05:32 GMT etag: - - '"0D84C79371DFD6A5414E3C85F0968DC7E3EB2DF50E58B83D86415AC198C74E5A"' + - '"6457968918C1F20014815FD2E910A159F1EF21DF69EAEB592BC05202C687BC78"' set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -732,7 +307,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5841f0c2-fff5-478c-b8cb-ed48f5883f80 + - cd809d0a-da3d-47ff-8c58-ee0ade1eda44 status: code: 200 message: OK @@ -746,25 +321,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5632865d-2020-4546-a3b3-157b9f427851 response: body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:44.750587Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5632865d-2020-4546-a3b3-157b9f427851","createdDateTimeUtc":"2021-05-06T21:05:31.7512734Z","lastActionDateTimeUtc":"2021-05-06T21:05:32.6671718Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 808ca485-6766-4ae9-b356-31d125cfda3e + - 4f17fe71-c785-4022-a75a-f4a8342d40ce cache-control: - public,max-age=1 content-length: - - '288' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:50 GMT + - Thu, 06 May 2021 21:05:33 GMT etag: - - '"0D84C79371DFD6A5414E3C85F0968DC7E3EB2DF50E58B83D86415AC198C74E5A"' + - '"6457968918C1F20014815FD2E910A159F1EF21DF69EAEB592BC05202C687BC78"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -779,7 +354,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 808ca485-6766-4ae9-b356-31d125cfda3e + - 4f17fe71-c785-4022-a75a-f4a8342d40ce status: code: 200 message: OK @@ -793,28 +368,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5632865d-2020-4546-a3b3-157b9f427851 response: body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:44.750587Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5632865d-2020-4546-a3b3-157b9f427851","createdDateTimeUtc":"2021-05-06T21:05:31.7512734Z","lastActionDateTimeUtc":"2021-05-06T21:05:32.6671718Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 457b4699-4eaf-4fe9-919f-ae486cf7f2f5 + - 68ed14a8-4972-4764-b757-78c48f67432e cache-control: - public,max-age=1 content-length: - - '288' + - '292' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:51 GMT + - Thu, 06 May 2021 21:05:35 GMT etag: - - '"0D84C79371DFD6A5414E3C85F0968DC7E3EB2DF50E58B83D86415AC198C74E5A"' + - '"6457968918C1F20014815FD2E910A159F1EF21DF69EAEB592BC05202C687BC78"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -826,7 +401,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 457b4699-4eaf-4fe9-919f-ae486cf7f2f5 + - 68ed14a8-4972-4764-b757-78c48f67432e status: code: 200 message: OK @@ -840,25 +415,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5632865d-2020-4546-a3b3-157b9f427851 response: body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:44.750587Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5632865d-2020-4546-a3b3-157b9f427851","createdDateTimeUtc":"2021-05-06T21:05:31.7512734Z","lastActionDateTimeUtc":"2021-05-06T21:05:35.7533168Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - e119e5be-dbae-4f9c-9ebb-31686a2132ee + - ab915135-2dce-454d-b302-5a25d57272a8 cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:52 GMT + - Thu, 06 May 2021 21:05:36 GMT etag: - - '"0D84C79371DFD6A5414E3C85F0968DC7E3EB2DF50E58B83D86415AC198C74E5A"' + - '"07E8732E9226AFF7451E2F860BDEF609B3F2B7DC15F29DDC193447A8C918747E"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -873,7 +448,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e119e5be-dbae-4f9c-9ebb-31686a2132ee + - ab915135-2dce-454d-b302-5a25d57272a8 status: code: 200 message: OK @@ -887,28 +462,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5632865d-2020-4546-a3b3-157b9f427851 response: body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:44.750587Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"5632865d-2020-4546-a3b3-157b9f427851","createdDateTimeUtc":"2021-05-06T21:05:31.7512734Z","lastActionDateTimeUtc":"2021-05-06T21:05:35.7533168Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 99e0af8c-d46e-4e0d-98f6-27d899e15366 + - 673ad0e5-5bf0-45c3-88c4-494f3b6372b7 cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:54 GMT + - Thu, 06 May 2021 21:05:37 GMT etag: - - '"0D84C79371DFD6A5414E3C85F0968DC7E3EB2DF50E58B83D86415AC198C74E5A"' + - '"07E8732E9226AFF7451E2F860BDEF609B3F2B7DC15F29DDC193447A8C918747E"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -920,7 +495,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 99e0af8c-d46e-4e0d-98f6-27d899e15366 + - 673ad0e5-5bf0-45c3-88c4-494f3b6372b7 status: code: 200 message: OK @@ -934,15 +509,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/81dc3f86-e4e7-496c-b094-e560b8ef5290 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/5632865d-2020-4546-a3b3-157b9f427851 response: body: - string: '{"id":"81dc3f86-e4e7-496c-b094-e560b8ef5290","createdDateTimeUtc":"2021-03-31T22:15:35.1963856Z","lastActionDateTimeUtc":"2021-03-31T22:15:54.9239952Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"5632865d-2020-4546-a3b3-157b9f427851","createdDateTimeUtc":"2021-05-06T21:05:31.7512734Z","lastActionDateTimeUtc":"2021-05-06T21:05:35.7533168Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - 0515d128-56b7-4c22-b3d0-46dceda1769e + - 480abcdf-f263-4f60-b49e-c614af326143 cache-control: - public,max-age=1 content-length: @@ -950,9 +525,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:55 GMT + - Thu, 06 May 2021 21:05:38 GMT etag: - - '"A41093CA46C588C2D26910383E96549A14699683CB97F01A23E9E73B71E473B1"' + - '"77242C73FCDBD64A9F33630B9A56F4B273C3E617A815E72CCC011A61DF0E1122"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -967,7 +542,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 0515d128-56b7-4c22-b3d0-46dceda1769e + - 480abcdf-f263-4f60-b49e-c614af326143 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_two_targets.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_two_targets.yaml index 50e186a3ee13..98f0ae04c605 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_two_targets.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_single_source_two_targets.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:15:56 GMT + - Thu, 06 May 2021 21:05:39 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src0e462ad7-d5cd-4371-8d40-a0b4aa522e9f?restype=container + uri: https://redacted.blob.core.windows.net/src62c50218-70fc-4c05-aeed-1fe3367cd94c?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:15:56 GMT + - Thu, 06 May 2021 21:05:39 GMT etag: - - '"0x8D8F4928E724BF9"' + - '"0x8D910D2B40EC809"' last-modified: - - Wed, 31 Mar 2021 22:15:56 GMT + - Thu, 06 May 2021 21:05:39 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:15:57 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:05:40 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src0e462ad7-d5cd-4371-8d40-a0b4aa522e9f/ebc4da41-c2ba-4ad6-86af-00a4d1a5689e.txt + uri: https://redacted.blob.core.windows.net/src62c50218-70fc-4c05-aeed-1fe3367cd94c/a9b3dbf0-5f59-4ac8-92fe-bc590a367a74.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:15:56 GMT + - Thu, 06 May 2021 21:05:39 GMT etag: - - '"0x8D8F4928E996B6E"' + - '"0x8D910D2B4327347"' last-modified: - - Wed, 31 Mar 2021 22:15:56 GMT + - Thu, 06 May 2021 21:05:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:15:57 GMT + - Thu, 06 May 2021 21:05:40 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targetadad0735-5d41-4305-8760-2fdc9ab2c968?restype=container + uri: https://redacted.blob.core.windows.net/target1745720e-c3fd-4c00-8399-c092982421cf?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:15:57 GMT + - Thu, 06 May 2021 21:05:40 GMT etag: - - '"0x8D8F4928F6B3331"' + - '"0x8D910D2B4BDBFA0"' last-modified: - - Wed, 31 Mar 2021 22:15:58 GMT + - Thu, 06 May 2021 21:05:41 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -139,13 +137,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:15:58 GMT + - Thu, 06 May 2021 21:05:41 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target3d36448f-0fe8-4fd0-aeda-c99527904aef?restype=container + uri: https://redacted.blob.core.windows.net/targetdee17ede-21c3-4110-92b3-4ec32391c68c?restype=container response: body: string: '' @@ -153,11 +151,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:15:59 GMT + - Thu, 06 May 2021 21:05:41 GMT etag: - - '"0x8D8F492901203FB"' + - '"0x8D910D2B54AECF4"' last-modified: - - Wed, 31 Mar 2021 22:15:59 GMT + - Thu, 06 May 2021 21:05:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -166,9 +164,9 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src0e462ad7-d5cd-4371-8d40-a0b4aa522e9f?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetadad0735-5d41-4305-8760-2fdc9ab2c968?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", - "language": "es"}, {"targetUrl": "https://redacted.blob.core.windows.net/target3d36448f-0fe8-4fd0-aeda-c99527904aef?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src62c50218-70fc-4c05-aeed-1fe3367cd94c?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1745720e-c3fd-4c00-8399-c092982421cf?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}, {"targetUrl": "https://redacted.blob.core.windows.net/targetdee17ede-21c3-4110-92b3-4ec32391c68c?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "fr"}]}]}' headers: Accept: @@ -178,11 +176,11 @@ interactions: Connection: - keep-alive Content-Length: - - '719' + - '711' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -190,16 +188,16 @@ interactions: string: '' headers: apim-request-id: - - 3bed6841-c7b3-4895-9498-42bad4f33dc1 + - 026e6b74-d88b-4e56-a877-d795601ba35c content-length: - '0' date: - - Wed, 31 Mar 2021 22:15:59 GMT + - Thu, 06 May 2021 21:05:41 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -207,7 +205,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3bed6841-c7b3-4895-9498-42bad4f33dc1 + - 026e6b74-d88b-4e56-a877-d795601ba35c status: code: 202 message: Accepted @@ -221,15 +219,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:15:59.9963048Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:42.5599039Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - b909c55b-2f81-41fb-b226-b86f2fe8d76d + - ac4cc102-8763-404a-84f5-96646f63e670 cache-control: - public,max-age=1 content-length: @@ -237,9 +235,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:59 GMT + - Thu, 06 May 2021 21:05:41 GMT etag: - - '"9A35FE914216BD26943E649083B6E1E2C62A97B860CF510C29C2E0ED633DE5C3"' + - '"5E1B23FDB1A91CADD2F674662A212A7DFEB77C8F98EC95E0B6D2755B8EE3AB7B"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -254,7 +252,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b909c55b-2f81-41fb-b226-b86f2fe8d76d + - ac4cc102-8763-404a-84f5-96646f63e670 status: code: 200 message: OK @@ -268,15 +266,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:15:59.9963048Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:42.5599039Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 635bbc7e-91ec-4ca0-897f-a5887e190fa0 + - 0f3a5dc5-51f7-42aa-80a1-a1fca347da2e cache-control: - public,max-age=1 content-length: @@ -284,12 +282,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:15:59 GMT + - Thu, 06 May 2021 21:05:42 GMT etag: - - '"9A35FE914216BD26943E649083B6E1E2C62A97B860CF510C29C2E0ED633DE5C3"' + - '"5E1B23FDB1A91CADD2F674662A212A7DFEB77C8F98EC95E0B6D2755B8EE3AB7B"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -301,7 +299,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 635bbc7e-91ec-4ca0-897f-a5887e190fa0 + - 0f3a5dc5-51f7-42aa-80a1-a1fca347da2e status: code: 200 message: OK @@ -315,15 +313,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:15:59.9963048Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:43.8567069Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 4421b9e9-80b2-444d-9ae9-27559d2c3557 + - dc713fac-0f79-4d78-9092-075367dc2f2a cache-control: - public,max-age=1 content-length: @@ -331,9 +329,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:00 GMT + - Thu, 06 May 2021 21:05:43 GMT etag: - - '"9A35FE914216BD26943E649083B6E1E2C62A97B860CF510C29C2E0ED633DE5C3"' + - '"BA4770024FF4AAEA001BCED779534826F4425B526CF4D642A0D8C0F362221DB8"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -348,7 +346,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 4421b9e9-80b2-444d-9ae9-27559d2c3557 + - dc713fac-0f79-4d78-9092-075367dc2f2a status: code: 200 message: OK @@ -362,15 +360,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:01.5490088Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:43.8567069Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 71da0993-a94b-4ee9-8ce0-8d72e2646630 + - 2e95e72d-d3ae-4371-b3b1-6b6603f8bccb cache-control: - public,max-age=1 content-length: @@ -378,12 +376,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:01 GMT + - Thu, 06 May 2021 21:05:44 GMT etag: - - '"DAFC461D48EFD09D2F907C75F8D6C97D1894497C8E737DD75920ED1A1CC07E95"' + - '"BA4770024FF4AAEA001BCED779534826F4425B526CF4D642A0D8C0F362221DB8"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -395,7 +393,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 71da0993-a94b-4ee9-8ce0-8d72e2646630 + - 2e95e72d-d3ae-4371-b3b1-6b6603f8bccb status: code: 200 message: OK @@ -409,15 +407,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:01.5490088Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:43.8567069Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 3bf82b55-da3a-4f81-8248-138f8de64329 + - 0bd8ae7c-f121-4983-9ae9-7b4982bb0bb0 cache-control: - public,max-age=1 content-length: @@ -425,9 +423,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:03 GMT + - Thu, 06 May 2021 21:05:45 GMT etag: - - '"DAFC461D48EFD09D2F907C75F8D6C97D1894497C8E737DD75920ED1A1CC07E95"' + - '"BA4770024FF4AAEA001BCED779534826F4425B526CF4D642A0D8C0F362221DB8"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -442,7 +440,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3bf82b55-da3a-4f81-8248-138f8de64329 + - 0bd8ae7c-f121-4983-9ae9-7b4982bb0bb0 status: code: 200 message: OK @@ -456,122 +454,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:01.5490088Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - f7160598-9a51-47d2-a241-f4de6a8f5619 + - 42765b8f-c44c-4e1d-8f70-682b56eab4fe cache-control: - public,max-age=1 content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:16:04 GMT - etag: - - '"DAFC461D48EFD09D2F907C75F8D6C97D1894497C8E737DD75920ED1A1CC07E95"' - set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - f7160598-9a51-47d2-a241-f4de6a8f5619 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 - response: - body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:01.5490088Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - 848b4e54-5ace-4729-b9d2-dc6ca40995be - cache-control: - - public,max-age=1 - content-length: - - '292' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 Mar 2021 22:16:05 GMT - etag: - - '"DAFC461D48EFD09D2F907C75F8D6C97D1894497C8E737DD75920ED1A1CC07E95"' - set-cookie: - - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: - - max-age=31536000; includeSubDomains; preload - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - x-requestid: - - 848b4e54-5ace-4729-b9d2-dc6ca40995be - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 - response: - body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:01.5490088Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: - - ca30ca61-581c-47d8-9118-e340b6bf83fc - cache-control: - - public,max-age=1 - content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:06 GMT + - Thu, 06 May 2021 21:05:46 GMT etag: - - '"DAFC461D48EFD09D2F907C75F8D6C97D1894497C8E737DD75920ED1A1CC07E95"' + - '"2772FCBC7E1DECC09ED73133E83D4261A11B4F69A5BA7F591A5059239B193493"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -583,7 +487,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - ca30ca61-581c-47d8-9118-e340b6bf83fc + - 42765b8f-c44c-4e1d-8f70-682b56eab4fe status: code: 200 message: OK @@ -597,25 +501,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:01.5490088Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 576d1c0e-876f-4407-b465-9296d89caa38 + - 3b51bdd8-0596-4531-9c8c-4caaaada5f42 cache-control: - public,max-age=1 content-length: - - '292' + - '289' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:08 GMT + - Thu, 06 May 2021 21:05:47 GMT etag: - - '"DAFC461D48EFD09D2F907C75F8D6C97D1894497C8E737DD75920ED1A1CC07E95"' + - '"2772FCBC7E1DECC09ED73133E83D4261A11B4F69A5BA7F591A5059239B193493"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -630,7 +534,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 576d1c0e-876f-4407-b465-9296d89caa38 + - 3b51bdd8-0596-4531-9c8c-4caaaada5f42 status: code: 200 message: OK @@ -644,15 +548,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:09.7612961Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":1,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 702e23f5-8749-4859-921c-09ee25cd983a + - 5ecdc3d7-bfea-4c36-a271-200ac2d7df58 cache-control: - public,max-age=1 content-length: @@ -660,12 +564,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:09 GMT + - Thu, 06 May 2021 21:05:49 GMT etag: - - '"340501E6CC01D7FE7A01B9E8C4874127D1DC4EBD70CBF4675A9CB7C0D866FEC1"' + - '"2772FCBC7E1DECC09ED73133E83D4261A11B4F69A5BA7F591A5059239B193493"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -677,7 +581,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 702e23f5-8749-4859-921c-09ee25cd983a + - 5ecdc3d7-bfea-4c36-a271-200ac2d7df58 status: code: 200 message: OK @@ -691,25 +595,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:10.861231Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 528ec7d9-47a7-492c-83c5-92834d953210 + - e19346fe-3eef-42c7-962a-87467c7d0e8c cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:10 GMT + - Thu, 06 May 2021 21:05:50 GMT etag: - - '"8879E0FE1C420FFD32AF0E5F0DA9F31A9AEC4E1F5755E9B49A42C1911754A630"' + - '"2772FCBC7E1DECC09ED73133E83D4261A11B4F69A5BA7F591A5059239B193493"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -724,7 +628,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 528ec7d9-47a7-492c-83c5-92834d953210 + - e19346fe-3eef-42c7-962a-87467c7d0e8c status: code: 200 message: OK @@ -738,28 +642,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:10.861231Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - b26460fa-221c-429a-9c86-6ca3a6b90299 + - b1d40e98-6d6d-4640-ae4e-84b5264ef194 cache-control: - public,max-age=1 content-length: - - '288' + - '289' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:11 GMT + - Thu, 06 May 2021 21:05:51 GMT etag: - - '"8879E0FE1C420FFD32AF0E5F0DA9F31A9AEC4E1F5755E9B49A42C1911754A630"' + - '"2772FCBC7E1DECC09ED73133E83D4261A11B4F69A5BA7F591A5059239B193493"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -771,7 +675,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b26460fa-221c-429a-9c86-6ca3a6b90299 + - b1d40e98-6d6d-4640-ae4e-84b5264ef194 status: code: 200 message: OK @@ -785,25 +689,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:10.861231Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - 2ce0415c-b4d4-42d8-9c1f-d891db455e68 + - 5ac41e57-dc8a-42f4-92b9-6b51d7932d6b cache-control: - public,max-age=1 content-length: - - '288' + - '290' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:13 GMT + - Thu, 06 May 2021 21:05:52 GMT etag: - - '"8879E0FE1C420FFD32AF0E5F0DA9F31A9AEC4E1F5755E9B49A42C1911754A630"' + - '"C299C3C9A2F5CE90BC36C1C56572A95326756425284F8CAD1B61B5B88AA61031"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -818,7 +722,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2ce0415c-b4d4-42d8-9c1f-d891db455e68 + - 5ac41e57-dc8a-42f4-92b9-6b51d7932d6b status: code: 200 message: OK @@ -832,28 +736,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:10.861231Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - 5d1e5b73-baeb-4700-9b2b-6c2b82034248 + - f48253ae-279e-4ca9-8499-ff88277986f1 cache-control: - public,max-age=1 content-length: - - '288' + - '290' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:14 GMT + - Thu, 06 May 2021 21:05:53 GMT etag: - - '"8879E0FE1C420FFD32AF0E5F0DA9F31A9AEC4E1F5755E9B49A42C1911754A630"' + - '"C299C3C9A2F5CE90BC36C1C56572A95326756425284F8CAD1B61B5B88AA61031"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -865,7 +769,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 5d1e5b73-baeb-4700-9b2b-6c2b82034248 + - f48253ae-279e-4ca9-8499-ff88277986f1 status: code: 200 message: OK @@ -879,25 +783,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:10.861231Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - 93ea30b4-2920-4a7a-936e-a42109ddd5d8 + - 9b33fdee-3734-491c-98ff-fc8b5a4d68ca cache-control: - public,max-age=1 content-length: - - '288' + - '290' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:15 GMT + - Thu, 06 May 2021 21:05:54 GMT etag: - - '"8879E0FE1C420FFD32AF0E5F0DA9F31A9AEC4E1F5755E9B49A42C1911754A630"' + - '"C299C3C9A2F5CE90BC36C1C56572A95326756425284F8CAD1B61B5B88AA61031"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -912,7 +816,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 93ea30b4-2920-4a7a-936e-a42109ddd5d8 + - 9b33fdee-3734-491c-98ff-fc8b5a4d68ca status: code: 200 message: OK @@ -926,28 +830,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:10.861231Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - 1c744404-ccee-4da7-a4ae-dbf5605adcfa + - 1f63f4dc-6f13-4457-be7a-a22c47c25e7e cache-control: - public,max-age=1 content-length: - - '288' + - '290' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:16 GMT + - Thu, 06 May 2021 21:05:55 GMT etag: - - '"8879E0FE1C420FFD32AF0E5F0DA9F31A9AEC4E1F5755E9B49A42C1911754A630"' + - '"C299C3C9A2F5CE90BC36C1C56572A95326756425284F8CAD1B61B5B88AA61031"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -959,7 +863,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 1c744404-ccee-4da7-a4ae-dbf5605adcfa + - 1f63f4dc-6f13-4457-be7a-a22c47c25e7e status: code: 200 message: OK @@ -973,25 +877,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:10.861231Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: apim-request-id: - - 3f701f5c-daad-437c-b4e1-ee3833acfaea + - 40688c87-6b4c-42f7-b7d9-494d9cbc08f8 cache-control: - public,max-age=1 content-length: - - '288' + - '290' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:18 GMT + - Thu, 06 May 2021 21:05:57 GMT etag: - - '"8879E0FE1C420FFD32AF0E5F0DA9F31A9AEC4E1F5755E9B49A42C1911754A630"' + - '"C299C3C9A2F5CE90BC36C1C56572A95326756425284F8CAD1B61B5B88AA61031"' set-cookie: - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com @@ -1006,7 +910,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 3f701f5c-daad-437c-b4e1-ee3833acfaea + - 40688c87-6b4c-42f7-b7d9-494d9cbc08f8 status: code: 200 message: OK @@ -1020,15 +924,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/3b0b0f8c-31c5-45c5-ae08-a4f9616801e4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ef17e7e9-ed70-41cb-b8f9-f6573412a245 response: body: - string: '{"id":"3b0b0f8c-31c5-45c5-ae08-a4f9616801e4","createdDateTimeUtc":"2021-03-31T22:15:59.9963045Z","lastActionDateTimeUtc":"2021-03-31T22:16:20.9867838Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}' + string: '{"id":"ef17e7e9-ed70-41cb-b8f9-f6573412a245","createdDateTimeUtc":"2021-05-06T21:05:42.5599035Z","lastActionDateTimeUtc":"2021-05-06T21:05:46.3977617Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}' headers: apim-request-id: - - e0e17bb8-819d-4ead-a165-fe8d21a5a2a0 + - b9071113-f9bb-45eb-b434-d838978ce37a cache-control: - public,max-age=1 content-length: @@ -1036,12 +940,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Mar 2021 22:16:20 GMT + - Thu, 06 May 2021 21:05:58 GMT etag: - - '"872FE7BE05A245CECD0FA02A5FED9FA84079C651976E7868CC5F8E016E6CE595"' + - '"E3A43CB1DE8BE65021BDD894ED6B5107522860098E2BE425037EE15C607CCC60"' set-cookie: - - ARRAffinity=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com - - ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -1053,7 +957,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - e0e17bb8-819d-4ead-a165-fe8d21a5a2a0 + - b9071113-f9bb-45eb-b434-d838978ce37a status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_use_supported_and_unsupported_files.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_use_supported_and_unsupported_files.yaml index 0a25922a2670..8b62d3ab76a9 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_use_supported_and_unsupported_files.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation.test_use_supported_and_unsupported_files.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:46:44 GMT + - Thu, 06 May 2021 21:05:59 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src2ff38866-63ce-46d8-b50d-51de849b14cd?restype=container + uri: https://redacted.blob.core.windows.net/src02e66b8c-3dc7-4fd1-be86-a13229df4914?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:46:43 GMT + - Thu, 06 May 2021 21:05:59 GMT etag: - - '"0x8D8F54F4310FAC3"' + - '"0x8D910D2C04D0E9F"' last-modified: - - Thu, 01 Apr 2021 20:46:44 GMT + - Thu, 06 May 2021 21:06:00 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:46:44 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:00 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src2ff38866-63ce-46d8-b50d-51de849b14cd/0edfb09a-5edb-4cfe-919a-b57fc31a761e.txt + uri: https://redacted.blob.core.windows.net/src02e66b8c-3dc7-4fd1-be86-a13229df4914/62da7980-6a0f-490d-ba36-922a8af2c925.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:46:44 GMT + - Thu, 06 May 2021 21:05:59 GMT etag: - - '"0x8D8F54F431AEDF2"' + - '"0x8D910D2C0706426"' last-modified: - - Thu, 01 Apr 2021 20:46:44 GMT + - Thu, 06 May 2021 21:06:00 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -105,17 +103,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:46:45 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:00 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src2ff38866-63ce-46d8-b50d-51de849b14cd/d73669c2-edc9-4d45-b772-cbbedb433a22.jpg + uri: https://redacted.blob.core.windows.net/src02e66b8c-3dc7-4fd1-be86-a13229df4914/2b3684d2-9040-40f2-8820-83abfd1d7c08.jpg response: body: string: '' @@ -125,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:46:44 GMT + - Thu, 06 May 2021 21:06:00 GMT etag: - - '"0x8D8F54F4322695D"' + - '"0x8D910D2C0935BD4"' last-modified: - - Thu, 01 Apr 2021 20:46:45 GMT + - Thu, 06 May 2021 21:06:00 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -153,13 +149,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:46:45 GMT + - Thu, 06 May 2021 21:06:01 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target849b8ea3-54b4-4e9b-9cab-079dff128e68?restype=container + uri: https://redacted.blob.core.windows.net/target1b594ff8-3dc9-4215-a6cf-bbf198faabda?restype=container response: body: string: '' @@ -167,11 +163,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:46:45 GMT + - Thu, 06 May 2021 21:06:01 GMT etag: - - '"0x8D8F54F433E1299"' + - '"0x8D910D2C11F85FD"' last-modified: - - Thu, 01 Apr 2021 20:46:45 GMT + - Thu, 06 May 2021 21:06:01 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -180,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src2ff38866-63ce-46d8-b50d-51de849b14cd?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target849b8ea3-54b4-4e9b-9cab-079dff128e68?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src02e66b8c-3dc7-4fd1-be86-a13229df4914?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1b594ff8-3dc9-4215-a6cf-bbf198faabda?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -195,7 +191,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: @@ -203,16 +199,16 @@ interactions: string: '' headers: apim-request-id: - - 2ff318f7-5c66-4626-ba31-44dc10486a03 + - 05477ce8-3685-4e2a-8443-b3405b063128 content-length: - '0' date: - - Thu, 01 Apr 2021 20:46:45 GMT + - Thu, 06 May 2021 21:06:01 GMT operation-location: - - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/185d1e42-4246-410e-a4d3-983b7d63d92a + - https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload x-content-type-options: @@ -220,7 +216,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 2ff318f7-5c66-4626-ba31-44dc10486a03 + - 05477ce8-3685-4e2a-8443-b3405b063128 status: code: 202 message: Accepted @@ -234,28 +230,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/185d1e42-4246-410e-a4d3-983b7d63d92a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 response: body: - string: '{"id":"185d1e42-4246-410e-a4d3-983b7d63d92a","createdDateTimeUtc":"2021-04-01T20:46:45.5648397Z","lastActionDateTimeUtc":"2021-04-01T20:46:45.56484Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:02.5827631Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 370d0c7f-8cf4-4394-a279-23d49e005ebc + - 4081253d-2b32-4c88-8eb4-a73e09ffb062 cache-control: - public,max-age=1 content-length: - - '290' + - '292' content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:46:45 GMT + - Thu, 06 May 2021 21:06:02 GMT etag: - - '"3DEE3EBAD96117BE69EDD6388EDA530F61027EAA850528A7A8A3AD2385BCCEDC"' + - '"5C8AF2F39F8BBF8CB23ED4E43485AE751B3CF35B5DCD4F3274DBAAC082E31CD9"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -267,7 +263,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 370d0c7f-8cf4-4394-a279-23d49e005ebc + - 4081253d-2b32-4c88-8eb4-a73e09ffb062 status: code: 200 message: OK @@ -281,15 +277,62 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 + response: + body: + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:02.5827631Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - da1bc69f-3b9a-4d0e-875d-7adb9039ab34 + cache-control: + - public,max-age=1 + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:06:02 GMT + etag: + - '"5C8AF2F39F8BBF8CB23ED4E43485AE751B3CF35B5DCD4F3274DBAAC082E31CD9"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - da1bc69f-3b9a-4d0e-875d-7adb9039ab34 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/185d1e42-4246-410e-a4d3-983b7d63d92a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 response: body: - string: '{"id":"185d1e42-4246-410e-a4d3-983b7d63d92a","createdDateTimeUtc":"2021-04-01T20:46:45.5648397Z","lastActionDateTimeUtc":"2021-04-01T20:46:45.6981175Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:03.6512246Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 34a17910-a3fb-4259-bdd4-259bf3f6a1f0 + - ca03f246-0cbe-4c35-94a0-b6b1a4ffdd05 cache-control: - public,max-age=1 content-length: @@ -297,12 +340,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:46:45 GMT + - Thu, 06 May 2021 21:06:03 GMT etag: - - '"B3F1EF496DE8540472BD8819F15FCFA35D21523EA3C41D971C8E02E89508E98D"' + - '"8A2973697FE553D6DC39D98EE2DD18ACBD27FEB3C48EDD73ADA3621D7792EAB9"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -314,7 +357,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 34a17910-a3fb-4259-bdd4-259bf3f6a1f0 + - ca03f246-0cbe-4c35-94a0-b6b1a4ffdd05 status: code: 200 message: OK @@ -328,15 +371,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/185d1e42-4246-410e-a4d3-983b7d63d92a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 response: body: - string: '{"id":"185d1e42-4246-410e-a4d3-983b7d63d92a","createdDateTimeUtc":"2021-04-01T20:46:45.5648397Z","lastActionDateTimeUtc":"2021-04-01T20:46:45.6981175Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:03.6512246Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 33f6f588-8725-4fed-9c04-405be9666289 + - 95562f63-b567-4844-aa68-4bdb617922f1 cache-control: - public,max-age=1 content-length: @@ -344,12 +387,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:46:46 GMT + - Thu, 06 May 2021 21:06:04 GMT etag: - - '"B3F1EF496DE8540472BD8819F15FCFA35D21523EA3C41D971C8E02E89508E98D"' + - '"8A2973697FE553D6DC39D98EE2DD18ACBD27FEB3C48EDD73ADA3621D7792EAB9"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -361,7 +404,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 33f6f588-8725-4fed-9c04-405be9666289 + - 95562f63-b567-4844-aa68-4bdb617922f1 status: code: 200 message: OK @@ -375,15 +418,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/185d1e42-4246-410e-a4d3-983b7d63d92a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 response: body: - string: '{"id":"185d1e42-4246-410e-a4d3-983b7d63d92a","createdDateTimeUtc":"2021-04-01T20:46:45.5648397Z","lastActionDateTimeUtc":"2021-04-01T20:46:45.6981175Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:03.6512246Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - 6cf00a3c-8e81-46f8-ac22-df00d0e7b5ad + - f3e609d1-2cb1-4545-9080-c77be33a7551 cache-control: - public,max-age=1 content-length: @@ -391,12 +434,200 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:46:47 GMT + - Thu, 06 May 2021 21:06:05 GMT + etag: + - '"8A2973697FE553D6DC39D98EE2DD18ACBD27FEB3C48EDD73ADA3621D7792EAB9"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - f3e609d1-2cb1-4545-9080-c77be33a7551 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 + response: + body: + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:06.5922526Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 15afe159-7782-4dee-86d4-d2dc0af05464 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:06:06 GMT + etag: + - '"BC315C83B2E2DE894A3FF3CFE6544504146C364A0AC9473DC147E5685103E05F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 15afe159-7782-4dee-86d4-d2dc0af05464 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 + response: + body: + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:06.5922526Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 64af0eb6-68b2-4048-b2a5-f73a7e3fd427 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:06:08 GMT + etag: + - '"BC315C83B2E2DE894A3FF3CFE6544504146C364A0AC9473DC147E5685103E05F"' + set-cookie: + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 64af0eb6-68b2-4048-b2a5-f73a7e3fd427 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 + response: + body: + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:06.5922526Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 662414bb-3b5f-4c0b-b099-c3332e8bba48 + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:06:09 GMT + etag: + - '"BC315C83B2E2DE894A3FF3CFE6544504146C364A0AC9473DC147E5685103E05F"' + set-cookie: + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: + - max-age=31536000; includeSubDomains; preload + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + x-requestid: + - 662414bb-3b5f-4c0b-b099-c3332e8bba48 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 + response: + body: + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:06.5922526Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: + - 9ed7e480-4705-47f5-bc09-c19c9c7af0fe + cache-control: + - public,max-age=1 + content-length: + - '289' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 06 May 2021 21:06:10 GMT etag: - - '"B3F1EF496DE8540472BD8819F15FCFA35D21523EA3C41D971C8E02E89508E98D"' + - '"BC315C83B2E2DE894A3FF3CFE6544504146C364A0AC9473DC147E5685103E05F"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -408,7 +639,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - 6cf00a3c-8e81-46f8-ac22-df00d0e7b5ad + - 9ed7e480-4705-47f5-bc09-c19c9c7af0fe status: code: 200 message: OK @@ -422,15 +653,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/185d1e42-4246-410e-a4d3-983b7d63d92a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 response: body: - string: '{"id":"185d1e42-4246-410e-a4d3-983b7d63d92a","createdDateTimeUtc":"2021-04-01T20:46:45.5648397Z","lastActionDateTimeUtc":"2021-04-01T20:46:48.3684294Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:06.5922526Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - cf31a115-39f3-4513-831f-2bec1b5ef274 + - 9fe1c471-fc6e-426d-beb8-7dab700295f3 cache-control: - public,max-age=1 content-length: @@ -438,12 +669,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:46:48 GMT + - Thu, 06 May 2021 21:06:11 GMT etag: - - '"DDE5274E6417FE1058549634B448AF5822F559277B01CA709E661FB6FCF9F0B2"' + - '"BC315C83B2E2DE894A3FF3CFE6544504146C364A0AC9473DC147E5685103E05F"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -455,7 +686,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - cf31a115-39f3-4513-831f-2bec1b5ef274 + - 9fe1c471-fc6e-426d-beb8-7dab700295f3 status: code: 200 message: OK @@ -469,15 +700,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/185d1e42-4246-410e-a4d3-983b7d63d92a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 response: body: - string: '{"id":"185d1e42-4246-410e-a4d3-983b7d63d92a","createdDateTimeUtc":"2021-04-01T20:46:45.5648397Z","lastActionDateTimeUtc":"2021-04-01T20:46:48.3684294Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:06.5922526Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: apim-request-id: - - afb42b12-bfd4-455c-a09d-392d51ae69dd + - a36fe05e-35e2-41e6-a0ec-bc73f7da35df cache-control: - public,max-age=1 content-length: @@ -485,12 +716,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:46:49 GMT + - Thu, 06 May 2021 21:06:12 GMT etag: - - '"DDE5274E6417FE1058549634B448AF5822F559277B01CA709E661FB6FCF9F0B2"' + - '"BC315C83B2E2DE894A3FF3CFE6544504146C364A0AC9473DC147E5685103E05F"' set-cookie: - - ARRAffinity=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -502,7 +733,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - afb42b12-bfd4-455c-a09d-392d51ae69dd + - a36fe05e-35e2-41e6-a0ec-bc73f7da35df status: code: 200 message: OK @@ -516,15 +747,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/185d1e42-4246-410e-a4d3-983b7d63d92a + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29 response: body: - string: '{"id":"185d1e42-4246-410e-a4d3-983b7d63d92a","createdDateTimeUtc":"2021-04-01T20:46:45.5648397Z","lastActionDateTimeUtc":"2021-04-01T20:46:51.4273978Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + string: '{"id":"e5d7c04e-e5e3-4ccd-84fb-71a273a4dc29","createdDateTimeUtc":"2021-05-06T21:06:02.5827628Z","lastActionDateTimeUtc":"2021-05-06T21:06:06.5922526Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: apim-request-id: - - b26d9063-19fa-4db9-9345-69bb09730aae + - e357a065-4e8d-495d-815a-b96c1f168df9 cache-control: - public,max-age=1 content-length: @@ -532,12 +763,12 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Apr 2021 20:46:50 GMT + - Thu, 06 May 2021 21:06:13 GMT etag: - - '"42F919AAE5260F590A8283BE5F09E464FB288336AE69588A6829C97047061047"' + - '"EF7F024D96667E6E14603D2277F74CCC6966BC8766D5F12B54F925838511C8F0"' set-cookie: - - ARRAffinity=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;Secure;Domain=doctrans.westus.microsofttranslator.com - - ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + - ARRAffinity=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;Secure;Domain=doctrans.northeu.microsofttranslator.com + - ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: - max-age=31536000; includeSubDomains; preload transfer-encoding: @@ -549,7 +780,7 @@ interactions: x-powered-by: - ASP.NET x-requestid: - - b26d9063-19fa-4db9-9345-69bb09730aae + - e357a065-4e8d-495d-815a-b96c1f168df9 status: code: 200 message: OK diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_bad_input_source.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_bad_input_source.yaml index 511ec6acb660..8a9543cd8e9b 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_bad_input_source.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_bad_input_source.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:48:01 GMT + - Thu, 06 May 2021 21:06:14 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target13acf625-eb5b-4d43-9189-18f70d02b365?restype=container + uri: https://redacted.blob.core.windows.net/target5a956192-fa68-47d8-9e6c-8abc8986168b?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:48:01 GMT + - Thu, 06 May 2021 21:06:14 GMT etag: - - '"0x8D8F54F71147646"' + - '"0x8D910D2C9434B25"' last-modified: - - Thu, 01 Apr 2021 20:48:02 GMT + - Thu, 06 May 2021 21:06:15 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -39,32 +39,32 @@ interactions: message: Created - request: body: '{"inputs": [{"source": {"sourceUrl": "https://idont.ex.ist", "filter": - {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target13acf625-eb5b-4d43-9189-18f70d02b365?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target5a956192-fa68-47d8-9e6c-8abc8986168b?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '316' + - '317' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: f4f34202-0295-494b-a9cc-7a5270d30c43 + apim-request-id: f9eed9fd-ce93-47ba-b901-1e9e2a3b4e6c content-length: '0' - date: Thu, 01 Apr 2021 20:48:01 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ac164178-a8ef-4741-9772-08a128d65994 - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:15 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/96b79967-29ad-475f-adf7-62b1a35dd288 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f4f34202-0295-494b-a9cc-7a5270d30c43 + x-requestid: f9eed9fd-ce93-47ba-b901-1e9e2a3b4e6c status: code: 202 message: Accepted @@ -75,90 +75,90 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ac164178-a8ef-4741-9772-08a128d65994 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/96b79967-29ad-475f-adf7-62b1a35dd288 response: body: - string: '{"id":"ac164178-a8ef-4741-9772-08a128d65994","createdDateTimeUtc":"2021-04-01T20:48:02.4967644Z","lastActionDateTimeUtc":"2021-04-01T20:48:02.4967648Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"96b79967-29ad-475f-adf7-62b1a35dd288","createdDateTimeUtc":"2021-05-06T21:06:16.2284012Z","lastActionDateTimeUtc":"2021-05-06T21:06:16.2284016Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 0ac307dd-3770-4a3b-83f7-2b7fdcb08ea3 + apim-request-id: 21fe0f7d-eff1-48ef-ac9d-82b1c9fc2549 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:01 GMT - etag: '"7BD6D8E3A90467FE90A4FA952E3FBB185D56CB89B1D2C79E168E419AD23EEC1C"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:15 GMT + etag: '"B6975B102DC68B14120E4AB82F2F509AF5442624767C5CB63237A1F0B68A7167"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 0ac307dd-3770-4a3b-83f7-2b7fdcb08ea3 + x-requestid: 21fe0f7d-eff1-48ef-ac9d-82b1c9fc2549 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ac164178-a8ef-4741-9772-08a128d65994 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/96b79967-29ad-475f-adf7-62b1a35dd288 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ac164178-a8ef-4741-9772-08a128d65994 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/96b79967-29ad-475f-adf7-62b1a35dd288 response: body: - string: '{"id":"ac164178-a8ef-4741-9772-08a128d65994","createdDateTimeUtc":"2021-04-01T20:48:02.4967644Z","lastActionDateTimeUtc":"2021-04-01T20:48:02.5923724Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"id":"96b79967-29ad-475f-adf7-62b1a35dd288","createdDateTimeUtc":"2021-05-06T21:06:16.2284012Z","lastActionDateTimeUtc":"2021-05-06T21:06:16.4665984Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 2d0d574d-e9c8-4e65-9fff-bfc9170f2c37 + apim-request-id: c6df08dd-a68e-4ae8-b379-c6462d8050e7 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:01 GMT - etag: '"19135FAF613EEA8A8253D16FD7B69462121AB2BDC1351960BF427C502E8188AE"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:15 GMT + etag: '"1EE40DD5980ABDBD1CE676E0B90BCB104E56467CF0F50537ACB2FD48CD9784EB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2d0d574d-e9c8-4e65-9fff-bfc9170f2c37 + x-requestid: c6df08dd-a68e-4ae8-b379-c6462d8050e7 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ac164178-a8ef-4741-9772-08a128d65994 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/96b79967-29ad-475f-adf7-62b1a35dd288 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/ac164178-a8ef-4741-9772-08a128d65994 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/96b79967-29ad-475f-adf7-62b1a35dd288 response: body: - string: '{"id":"ac164178-a8ef-4741-9772-08a128d65994","createdDateTimeUtc":"2021-04-01T20:48:02.4967644Z","lastActionDateTimeUtc":"2021-04-01T20:48:02.5923724Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot + string: '{"id":"96b79967-29ad-475f-adf7-62b1a35dd288","createdDateTimeUtc":"2021-05-06T21:06:16.2284012Z","lastActionDateTimeUtc":"2021-05-06T21:06:16.4665984Z","status":"ValidationFailed","error":{"code":"InvalidRequest","message":"Cannot access source document location with the current permissions.","target":"Operation","innerError":{"code":"InvalidDocumentAccessLevel","message":"Cannot access source document location with the current permissions."}},"summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: a3ffce1f-3208-44c3-b5c8-525c7cfcc14c + apim-request-id: 95f2d072-d7ae-471e-9c60-04d1cb1cd97c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:02 GMT - etag: '"19135FAF613EEA8A8253D16FD7B69462121AB2BDC1351960BF427C502E8188AE"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:17 GMT + etag: '"1EE40DD5980ABDBD1CE676E0B90BCB104E56467CF0F50537ACB2FD48CD9784EB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a3ffce1f-3208-44c3-b5c8-525c7cfcc14c + x-requestid: 95f2d072-d7ae-471e-9c60-04d1cb1cd97c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/ac164178-a8ef-4741-9772-08a128d65994 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/96b79967-29ad-475f-adf7-62b1a35dd288 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_empty_document.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_empty_document.yaml index cfef69d6238a..d019b7e5e6b8 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_empty_document.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_empty_document.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:49:47 GMT + - Thu, 06 May 2021 21:06:17 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcf603e83b-7ca9-4424-aac6-92447b050bff?restype=container + uri: https://redacted.blob.core.windows.net/src4b6043e2-28cf-4e3f-8ba3-1cc6a2bb8b85?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:49:47 GMT + - Thu, 06 May 2021 21:06:17 GMT etag: - - '"0x8D8F54FAFEDE573"' + - '"0x8D910D2CB21A626"' last-modified: - - Thu, 01 Apr 2021 20:49:47 GMT + - Thu, 06 May 2021 21:06:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:49:47 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:18 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcf603e83b-7ca9-4424-aac6-92447b050bff/6555c571-2d2a-499b-87fe-a261d4b8e1f0.txt + uri: https://redacted.blob.core.windows.net/src4b6043e2-28cf-4e3f-8ba3-1cc6a2bb8b85/c069cc43-9409-411f-9c82-b0f35e43a805.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - 1B2M2Y8AsgTpgAmY7PhCfg== date: - - Thu, 01 Apr 2021 20:49:47 GMT + - Thu, 06 May 2021 21:06:17 GMT etag: - - '"0x8D8F54FAFF68FD3"' + - '"0x8D910D2CB4645F3"' last-modified: - - Thu, 01 Apr 2021 20:49:47 GMT + - Thu, 06 May 2021 21:06:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:49:47 GMT + - Thu, 06 May 2021 21:06:19 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target36f97a31-df39-4e91-9816-49cf3d838bf1?restype=container + uri: https://redacted.blob.core.windows.net/targetd608c1f2-bd7a-42e3-894f-5560a2fc10f4?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:49:47 GMT + - Thu, 06 May 2021 21:06:19 GMT etag: - - '"0x8D8F54FB012A147"' + - '"0x8D910D2CBD39CAA"' last-modified: - - Thu, 01 Apr 2021 20:49:47 GMT + - Thu, 06 May 2021 21:06:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,33 +126,33 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf603e83b-7ca9-4424-aac6-92447b050bff?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target36f97a31-df39-4e91-9816-49cf3d838bf1?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src4b6043e2-28cf-4e3f-8ba3-1cc6a2bb8b85?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetd608c1f2-bd7a-42e3-894f-5560a2fc10f4?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '486' + - '484' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: b600b8b4-9537-4743-9150-2547de6a59c9 + apim-request-id: e735cb9d-42a0-45bf-8f8c-2fa73f166511 content-length: '0' - date: Thu, 01 Apr 2021 20:49:47 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/17f74e3f-7b47-441c-b24e-d256d4e2f064 - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:19 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b600b8b4-9537-4743-9150-2547de6a59c9 + x-requestid: e735cb9d-42a0-45bf-8f8c-2fa73f166511 status: code: 202 message: Accepted @@ -165,118 +163,314 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/17f74e3f-7b47-441c-b24e-d256d4e2f064 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c response: body: - string: '{"id":"17f74e3f-7b47-441c-b24e-d256d4e2f064","createdDateTimeUtc":"2021-04-01T20:49:47.9803813Z","lastActionDateTimeUtc":"2021-04-01T20:49:47.9803817Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"8cb45198-47b9-4f3a-853f-3b70a1fa474c","createdDateTimeUtc":"2021-05-06T21:06:20.4258574Z","lastActionDateTimeUtc":"2021-05-06T21:06:20.4258578Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 5b80e130-c55d-4dff-b25a-7b4006180cb4 + apim-request-id: 9eaff0c0-432c-499a-b85d-8bdcb7368a71 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:49:47 GMT - etag: '"60F65CC3B9E71F6D51D5CD4445B2297FA07131E059D25C59AF06F6988F4B9C81"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:20 GMT + etag: '"E786A3A2FD5F890768259AA117FAC17F4EB70C6F6F09585D6B33001B7353B4F4"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5b80e130-c55d-4dff-b25a-7b4006180cb4 + x-requestid: 9eaff0c0-432c-499a-b85d-8bdcb7368a71 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/17f74e3f-7b47-441c-b24e-d256d4e2f064 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/17f74e3f-7b47-441c-b24e-d256d4e2f064 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c response: body: - string: '{"id":"17f74e3f-7b47-441c-b24e-d256d4e2f064","createdDateTimeUtc":"2021-04-01T20:49:47.9803813Z","lastActionDateTimeUtc":"2021-04-01T20:49:48.1388624Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"8cb45198-47b9-4f3a-853f-3b70a1fa474c","createdDateTimeUtc":"2021-05-06T21:06:20.4258574Z","lastActionDateTimeUtc":"2021-05-06T21:06:20.4258578Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: d1b66c1b-9f97-4c07-af02-8ba0e5227781 + apim-request-id: 569e39d6-3f66-415f-bee0-7dd1e11d380d cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:49:47 GMT - etag: '"263D1E57CCF4A32C11B8336FBC93FE6622F0E77C9A691835CC6746C703A1EC59"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:20 GMT + etag: '"E786A3A2FD5F890768259AA117FAC17F4EB70C6F6F09585D6B33001B7353B4F4"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d1b66c1b-9f97-4c07-af02-8ba0e5227781 + x-requestid: 569e39d6-3f66-415f-bee0-7dd1e11d380d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/17f74e3f-7b47-441c-b24e-d256d4e2f064 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/17f74e3f-7b47-441c-b24e-d256d4e2f064 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c response: body: - string: '{"id":"17f74e3f-7b47-441c-b24e-d256d4e2f064","createdDateTimeUtc":"2021-04-01T20:49:47.9803813Z","lastActionDateTimeUtc":"2021-04-01T20:49:48.7918339Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"8cb45198-47b9-4f3a-853f-3b70a1fa474c","createdDateTimeUtc":"2021-05-06T21:06:20.4258574Z","lastActionDateTimeUtc":"2021-05-06T21:06:21.3473458Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 083bacf6-31a0-4ee7-a945-13869f110512 + apim-request-id: 3e4de6ae-8b67-403f-a529-4fbfa1763f90 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:49:48 GMT - etag: '"2BD3D9A2A4BF3A8078B2DCB24CE1011A702280E048CB58709180747056F67203"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:21 GMT + etag: '"C9B04395DE2EC06EC726F2B3DDB01715913764B20CD62A628E9BE9D2EEDCA9CB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 083bacf6-31a0-4ee7-a945-13869f110512 + x-requestid: 3e4de6ae-8b67-403f-a529-4fbfa1763f90 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/17f74e3f-7b47-441c-b24e-d256d4e2f064 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c + response: + body: + string: '{"id":"8cb45198-47b9-4f3a-853f-3b70a1fa474c","createdDateTimeUtc":"2021-05-06T21:06:20.4258574Z","lastActionDateTimeUtc":"2021-05-06T21:06:21.3473458Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: bc0b7bc3-8928-466e-81d5-34adb423c416 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:22 GMT + etag: '"C9B04395DE2EC06EC726F2B3DDB01715913764B20CD62A628E9BE9D2EEDCA9CB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: bc0b7bc3-8928-466e-81d5-34adb423c416 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c + response: + body: + string: '{"id":"8cb45198-47b9-4f3a-853f-3b70a1fa474c","createdDateTimeUtc":"2021-05-06T21:06:20.4258574Z","lastActionDateTimeUtc":"2021-05-06T21:06:21.3473458Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 19a3ecc2-8960-4207-9511-a678459e5b81 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:23 GMT + etag: '"C9B04395DE2EC06EC726F2B3DDB01715913764B20CD62A628E9BE9D2EEDCA9CB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 19a3ecc2-8960-4207-9511-a678459e5b81 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c + response: + body: + string: '{"id":"8cb45198-47b9-4f3a-853f-3b70a1fa474c","createdDateTimeUtc":"2021-05-06T21:06:20.4258574Z","lastActionDateTimeUtc":"2021-05-06T21:06:21.3473458Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 6ce9a030-721f-4ecc-98d8-e0e9030824a2 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:24 GMT + etag: '"C9B04395DE2EC06EC726F2B3DDB01715913764B20CD62A628E9BE9D2EEDCA9CB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 6ce9a030-721f-4ecc-98d8-e0e9030824a2 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c + response: + body: + string: '{"id":"8cb45198-47b9-4f3a-853f-3b70a1fa474c","createdDateTimeUtc":"2021-05-06T21:06:20.4258574Z","lastActionDateTimeUtc":"2021-05-06T21:06:21.3473458Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 7aa2d2b2-5a6d-4ddf-9a54-b52c96f4639d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:26 GMT + etag: '"C9B04395DE2EC06EC726F2B3DDB01715913764B20CD62A628E9BE9D2EEDCA9CB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 7aa2d2b2-5a6d-4ddf-9a54-b52c96f4639d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c + response: + body: + string: '{"id":"8cb45198-47b9-4f3a-853f-3b70a1fa474c","createdDateTimeUtc":"2021-05-06T21:06:20.4258574Z","lastActionDateTimeUtc":"2021-05-06T21:06:21.3473458Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 0d37699f-abe7-4839-a918-577b85d5d278 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:27 GMT + etag: '"C9B04395DE2EC06EC726F2B3DDB01715913764B20CD62A628E9BE9D2EEDCA9CB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0d37699f-abe7-4839-a918-577b85d5d278 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c + response: + body: + string: '{"id":"8cb45198-47b9-4f3a-853f-3b70a1fa474c","createdDateTimeUtc":"2021-05-06T21:06:20.4258574Z","lastActionDateTimeUtc":"2021-05-06T21:06:21.3473458Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: a0518b46-a681-4013-a970-acb4ee913397 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:28 GMT + etag: '"C9B04395DE2EC06EC726F2B3DDB01715913764B20CD62A628E9BE9D2EEDCA9CB"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a0518b46-a681-4013-a970-acb4ee913397 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c + response: + body: + string: '{"id":"8cb45198-47b9-4f3a-853f-3b70a1fa474c","createdDateTimeUtc":"2021-05-06T21:06:20.4258574Z","lastActionDateTimeUtc":"2021-05-06T21:06:29.7255954Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: ad6ea404-43c6-453c-9544-ed6ef844bb3a + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:30 GMT + etag: '"3257F93EA6BAB8731EC6F9C4516BBA92C547C1F47F6E296FBD1CDF091C924F4C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ad6ea404-43c6-453c-9544-ed6ef844bb3a + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/17f74e3f-7b47-441c-b24e-d256d4e2f064/documents?$skip=0&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c/documents?$skip=0 response: body: - string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/srcf603e83b-7ca9-4424-aac6-92447b050bff/6555c571-2d2a-499b-87fe-a261d4b8e1f0.txt","createdDateTimeUtc":"2021-04-01T20:49:48.7300019Z","lastActionDateTimeUtc":"2021-04-01T20:49:48.7300019Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Document + string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/src4b6043e2-28cf-4e3f-8ba3-1cc6a2bb8b85/c069cc43-9409-411f-9c82-b0f35e43a805.txt","createdDateTimeUtc":"2021-05-06T21:06:29.199474Z","lastActionDateTimeUtc":"2021-05-06T21:06:29.6862881Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Document has wrong encoding or is binary file.","target":"Document","innerError":{"code":"WrongDocumentEncoding","message":"Document - has wrong encoding or is binary file."}},"progress":0,"id":"00006554-0000-0000-0000-000000000000","characterCharged":0}]}' + has wrong encoding or is binary file."}},"progress":0,"id":"00002c15-0000-0000-0000-000000000000","characterCharged":0}]}' headers: - apim-request-id: d9bb1775-c83e-4c89-bb36-205971213b8d + apim-request-id: 6a9b70b1-7cbf-4382-a4f1-9cbb7ed3c85a cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:49:48 GMT - etag: '"B8BD134BA4C333136D50935ABAD8329A530EB55B696225348E70D26EFB901C7E"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:30 GMT + etag: '"AF590CA8CBCC21446E3384B9F575F8C541DE8270BA2E55E57F9407BDCBD4CF7C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d9bb1775-c83e-4c89-bb36-205971213b8d + x-requestid: 6a9b70b1-7cbf-4382-a4f1-9cbb7ed3c85a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/17f74e3f-7b47-441c-b24e-d256d4e2f064/documents?$skip=0&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/8cb45198-47b9-4f3a-853f-3b70a1fa474c/documents?$skip=0 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_existing_documents_in_target.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_existing_documents_in_target.yaml index 2dc37fbb0fb6..a3edc63f0dd9 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_existing_documents_in_target.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_existing_documents_in_target.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:48:48 GMT + - Thu, 06 May 2021 21:06:30 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcf813312c-f9f2-4e4c-abb7-b9f7d96a687c?restype=container + uri: https://redacted.blob.core.windows.net/srcecc8f399-6700-4df5-b6f0-a1642a67a8b0?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:48:48 GMT + - Thu, 06 May 2021 21:06:30 GMT etag: - - '"0x8D8F54F8CB2D89A"' + - '"0x8D910D2D2C71547"' last-modified: - - Thu, 01 Apr 2021 20:48:48 GMT + - Thu, 06 May 2021 21:06:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:48:48 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:31 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcf813312c-f9f2-4e4c-abb7-b9f7d96a687c/document.txt + uri: https://redacted.blob.core.windows.net/srcecc8f399-6700-4df5-b6f0-a1642a67a8b0/document.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:48:48 GMT + - Thu, 06 May 2021 21:06:30 GMT etag: - - '"0x8D8F54F8CBB4A43"' + - '"0x8D910D2D2EB3B12"' last-modified: - - Thu, 01 Apr 2021 20:48:48 GMT + - Thu, 06 May 2021 21:06:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:48:48 GMT + - Thu, 06 May 2021 21:06:31 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target0356df42-caed-4f08-abb8-f512ed049e79?restype=container + uri: https://redacted.blob.core.windows.net/targetf932f437-5077-4a07-ab21-972432687dc8?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:48:48 GMT + - Thu, 06 May 2021 21:06:31 GMT etag: - - '"0x8D8F54F8CD83C9A"' + - '"0x8D910D2D378009E"' last-modified: - - Thu, 01 Apr 2021 20:48:48 GMT + - Thu, 06 May 2021 21:06:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -143,17 +141,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:48:48 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:32 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target0356df42-caed-4f08-abb8-f512ed049e79/document.txt + uri: https://redacted.blob.core.windows.net/targetf932f437-5077-4a07-ab21-972432687dc8/document.txt response: body: string: '' @@ -163,11 +159,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:48:48 GMT + - Thu, 06 May 2021 21:06:32 GMT etag: - - '"0x8D8F54F8CE2132D"' + - '"0x8D910D2D39C5BE8"' last-modified: - - Thu, 01 Apr 2021 20:48:48 GMT + - Thu, 06 May 2021 21:06:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -180,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf813312c-f9f2-4e4c-abb7-b9f7d96a687c?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target0356df42-caed-4f08-abb8-f512ed049e79?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcecc8f399-6700-4df5-b6f0-a1642a67a8b0?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf932f437-5077-4a07-ab21-972432687dc8?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -191,22 +187,22 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: f15f52c2-f88d-4b0b-b2b6-e24169d2ca02 + apim-request-id: d01f40be-039e-4d92-bb96-af1a1337b666 content-length: '0' - date: Thu, 01 Apr 2021 20:48:48 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c8c6c121-2d48-4779-af9f-5d57a5163c9f - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:33 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/a46ba04b-ba18-4507-a22c-bf83fec7f08a + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: f15f52c2-f88d-4b0b-b2b6-e24169d2ca02 + x-requestid: d01f40be-039e-4d92-bb96-af1a1337b666 status: code: 202 message: Accepted @@ -217,118 +213,118 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c8c6c121-2d48-4779-af9f-5d57a5163c9f + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a46ba04b-ba18-4507-a22c-bf83fec7f08a response: body: - string: '{"id":"c8c6c121-2d48-4779-af9f-5d57a5163c9f","createdDateTimeUtc":"2021-04-01T20:48:49.0655475Z","lastActionDateTimeUtc":"2021-04-01T20:48:49.0655478Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"a46ba04b-ba18-4507-a22c-bf83fec7f08a","createdDateTimeUtc":"2021-05-06T21:06:33.4978075Z","lastActionDateTimeUtc":"2021-05-06T21:06:33.497808Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 68da88a2-8096-4e53-b176-0cb3b57276ee + apim-request-id: 69e0096a-8891-4b24-abac-1226473ea4cd cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:48 GMT - etag: '"6A3C390FC1432B0FD384D440D8F557D27CEDBDDC7BC532FB90630C899CD4FDC3"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:33 GMT + etag: '"473F1AC726E2475305A79BD8FF02766053B1EF9CF21E661FDB766FABBD6A5498"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 68da88a2-8096-4e53-b176-0cb3b57276ee + x-requestid: 69e0096a-8891-4b24-abac-1226473ea4cd status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c8c6c121-2d48-4779-af9f-5d57a5163c9f + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/a46ba04b-ba18-4507-a22c-bf83fec7f08a - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c8c6c121-2d48-4779-af9f-5d57a5163c9f + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a46ba04b-ba18-4507-a22c-bf83fec7f08a response: body: - string: '{"id":"c8c6c121-2d48-4779-af9f-5d57a5163c9f","createdDateTimeUtc":"2021-04-01T20:48:49.0655475Z","lastActionDateTimeUtc":"2021-04-01T20:48:49.1899003Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"a46ba04b-ba18-4507-a22c-bf83fec7f08a","createdDateTimeUtc":"2021-05-06T21:06:33.4978075Z","lastActionDateTimeUtc":"2021-05-06T21:06:33.497808Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 8a091e0e-9d99-4645-88aa-444b10e0b6c3 + apim-request-id: 92797a75-e95f-4fa4-97d6-4dd7c650dbea cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:48 GMT - etag: '"21DEDF8325A8C2E691A131EFF98AEBCB2CE75AB575DEB4D2E3368B850E65B925"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:33 GMT + etag: '"473F1AC726E2475305A79BD8FF02766053B1EF9CF21E661FDB766FABBD6A5498"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8a091e0e-9d99-4645-88aa-444b10e0b6c3 + x-requestid: 92797a75-e95f-4fa4-97d6-4dd7c650dbea status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c8c6c121-2d48-4779-af9f-5d57a5163c9f + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/a46ba04b-ba18-4507-a22c-bf83fec7f08a - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c8c6c121-2d48-4779-af9f-5d57a5163c9f + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a46ba04b-ba18-4507-a22c-bf83fec7f08a response: body: - string: '{"id":"c8c6c121-2d48-4779-af9f-5d57a5163c9f","createdDateTimeUtc":"2021-04-01T20:48:49.0655475Z","lastActionDateTimeUtc":"2021-04-01T20:48:49.1899003Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"a46ba04b-ba18-4507-a22c-bf83fec7f08a","createdDateTimeUtc":"2021-05-06T21:06:33.4978075Z","lastActionDateTimeUtc":"2021-05-06T21:06:34.1171097Z","status":"Failed","summary":{"total":1,"failed":1,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 5eec44e0-cc70-4e7e-a99d-dcc044792ea7 + apim-request-id: fbef068b-1775-4c21-b1d2-e3878cd316de cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:50 GMT - etag: '"21DEDF8325A8C2E691A131EFF98AEBCB2CE75AB575DEB4D2E3368B850E65B925"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:34 GMT + etag: '"51CEA067E84C19F3327201212D44EA47A43F1CC275EB5A91234D5F34AD11691D"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5eec44e0-cc70-4e7e-a99d-dcc044792ea7 + x-requestid: fbef068b-1775-4c21-b1d2-e3878cd316de status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c8c6c121-2d48-4779-af9f-5d57a5163c9f + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/a46ba04b-ba18-4507-a22c-bf83fec7f08a - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/c8c6c121-2d48-4779-af9f-5d57a5163c9f/documents?$skip=0&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/a46ba04b-ba18-4507-a22c-bf83fec7f08a/documents?$skip=0 response: body: - string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/srcf813312c-f9f2-4e4c-abb7-b9f7d96a687c/document.txt","lastActionDateTimeUtc":"2021-04-01T20:48:49.1896943Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Target + string: '{"value":[{"sourcePath":"https://redacted.blob.core.windows.net/srcecc8f399-6700-4df5-b6f0-a1642a67a8b0/document.txt","lastActionDateTimeUtc":"2021-05-06T21:06:34.1169134Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Target document file already exists.","target":"Document","innerError":{"code":"TargetFileAlreadyExists","message":"Target - document file already exists."}},"progress":0,"id":"00006544-0000-0000-0000-000000000000","characterCharged":0}]}' + document file already exists."}},"progress":0,"id":"00002c16-0000-0000-0000-000000000000","characterCharged":0}]}' headers: - apim-request-id: 86a7e229-e372-4cc5-8af7-3f6a1c528685 + apim-request-id: 71a31e52-c465-4fd7-a3db-ac919a3e8dde cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:50 GMT - etag: '"888DA0FC295863EA9781720A45F6F90187A21276EA13A398959A2E2DCF556BCE"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:35 GMT + etag: '"C4C7057611114AB350B64DC887501E9DEC9CCF53BE54DCCA7623DF145E2F8411"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 86a7e229-e372-4cc5-8af7-3f6a1c528685 + x-requestid: 71a31e52-c465-4fd7-a3db-ac919a3e8dde status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/c8c6c121-2d48-4779-af9f-5d57a5163c9f/documents?$skip=0&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/a46ba04b-ba18-4507-a22c-bf83fec7f08a/documents?$skip=0 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_existing_documents_in_target_one_valid.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_existing_documents_in_target_one_valid.yaml index cf888df04c52..11f8a9c276de 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_existing_documents_in_target_one_valid.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_existing_documents_in_target_one_valid.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:49:38 GMT + - Thu, 06 May 2021 21:06:35 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src69ab5ece-4a83-4b61-9a55-e4aa9bf58482?restype=container + uri: https://redacted.blob.core.windows.net/srcb130cfe2-1e0e-4691-bc88-7cb340ef047d?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:49:38 GMT + - Thu, 06 May 2021 21:06:35 GMT etag: - - '"0x8D8F54FAAB6AC9C"' + - '"0x8D910D2D59199FE"' last-modified: - - Thu, 01 Apr 2021 20:49:38 GMT + - Thu, 06 May 2021 21:06:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:49:38 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:36 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src69ab5ece-4a83-4b61-9a55-e4aa9bf58482/document.txt + uri: https://redacted.blob.core.windows.net/srcb130cfe2-1e0e-4691-bc88-7cb340ef047d/document.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:49:38 GMT + - Thu, 06 May 2021 21:06:35 GMT etag: - - '"0x8D8F54FAABF3D21"' + - '"0x8D910D2D5B58B55"' last-modified: - - Thu, 01 Apr 2021 20:49:38 GMT + - Thu, 06 May 2021 21:06:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -105,17 +103,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:49:38 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:36 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src69ab5ece-4a83-4b61-9a55-e4aa9bf58482/80346cfd-a434-4135-b275-20933a8fc428.txt + uri: https://redacted.blob.core.windows.net/srcb130cfe2-1e0e-4691-bc88-7cb340ef047d/7daa7377-401e-4c00-9bc9-c56aa0eac831.txt response: body: string: '' @@ -125,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:49:38 GMT + - Thu, 06 May 2021 21:06:35 GMT etag: - - '"0x8D8F54FAAC69170"' + - '"0x8D910D2D5D94672"' last-modified: - - Thu, 01 Apr 2021 20:49:38 GMT + - Thu, 06 May 2021 21:06:36 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -153,13 +149,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:49:38 GMT + - Thu, 06 May 2021 21:06:36 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target78b57d86-d41f-4c11-b6e0-1b266b1e066c?restype=container + uri: https://redacted.blob.core.windows.net/targetc667e8b6-f0aa-4864-a274-b154c543d98d?restype=container response: body: string: '' @@ -167,11 +163,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:49:38 GMT + - Thu, 06 May 2021 21:06:36 GMT etag: - - '"0x8D8F54FAAE11AD1"' + - '"0x8D910D2D66623A1"' last-modified: - - Thu, 01 Apr 2021 20:49:39 GMT + - Thu, 06 May 2021 21:06:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -195,17 +191,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:49:39 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:37 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target78b57d86-d41f-4c11-b6e0-1b266b1e066c/document.txt + uri: https://redacted.blob.core.windows.net/targetc667e8b6-f0aa-4864-a274-b154c543d98d/document.txt response: body: string: '' @@ -215,11 +209,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:49:38 GMT + - Thu, 06 May 2021 21:06:36 GMT etag: - - '"0x8D8F54FAAEAC1C7"' + - '"0x8D910D2D689F1EA"' last-modified: - - Thu, 01 Apr 2021 20:49:39 GMT + - Thu, 06 May 2021 21:06:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -232,33 +226,33 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src69ab5ece-4a83-4b61-9a55-e4aa9bf58482?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target78b57d86-d41f-4c11-b6e0-1b266b1e066c?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb130cfe2-1e0e-4691-bc88-7cb340ef047d?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc667e8b6-f0aa-4864-a274-b154c543d98d?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '484' + - '488' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: 60f7862e-4e18-4444-8556-457c1ee8c1f0 + apim-request-id: ad2e99e7-50ef-4b43-bc26-3cae394af0ec content-length: '0' - date: Thu, 01 Apr 2021 20:49:38 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/64633773-6939-415b-bc01-9049da77b1f4 - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:38 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 60f7862e-4e18-4444-8556-457c1ee8c1f0 + x-requestid: ad2e99e7-50ef-4b43-bc26-3cae394af0ec status: code: 202 message: Accepted @@ -269,118 +263,258 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/64633773-6939-415b-bc01-9049da77b1f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e response: body: - string: '{"id":"64633773-6939-415b-bc01-9049da77b1f4","createdDateTimeUtc":"2021-04-01T20:49:39.4353349Z","lastActionDateTimeUtc":"2021-04-01T20:49:39.4353354Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"52f4c2bd-8a2a-4709-b4f9-6b819650db6e","createdDateTimeUtc":"2021-05-06T21:06:38.2705036Z","lastActionDateTimeUtc":"2021-05-06T21:06:38.270504Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: b78366f0-066b-4418-bb58-3174366c4c50 + apim-request-id: 505f5bee-39d0-49b8-b842-70d5517ca67b cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:49:38 GMT - etag: '"4566503D9C8DC1AB18AD04D6AA4BB143DB556AEEBC9F3354BEE527766EC08F3B"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:38 GMT + etag: '"CB76D785749AAFB82944080908A70247FB5694556B9B8A19C6CB7CEB349E178E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b78366f0-066b-4418-bb58-3174366c4c50 + x-requestid: 505f5bee-39d0-49b8-b842-70d5517ca67b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/64633773-6939-415b-bc01-9049da77b1f4 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/64633773-6939-415b-bc01-9049da77b1f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e response: body: - string: '{"id":"64633773-6939-415b-bc01-9049da77b1f4","createdDateTimeUtc":"2021-04-01T20:49:39.4353349Z","lastActionDateTimeUtc":"2021-04-01T20:49:39.4353354Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"52f4c2bd-8a2a-4709-b4f9-6b819650db6e","createdDateTimeUtc":"2021-05-06T21:06:38.2705036Z","lastActionDateTimeUtc":"2021-05-06T21:06:38.270504Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 4131fb88-0a1a-4a8f-a622-8bde2dd68d5c + apim-request-id: a3985f97-a664-4d31-a443-ea04fcdf109c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:49:38 GMT - etag: '"4566503D9C8DC1AB18AD04D6AA4BB143DB556AEEBC9F3354BEE527766EC08F3B"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:38 GMT + etag: '"CB76D785749AAFB82944080908A70247FB5694556B9B8A19C6CB7CEB349E178E"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4131fb88-0a1a-4a8f-a622-8bde2dd68d5c + x-requestid: a3985f97-a664-4d31-a443-ea04fcdf109c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/64633773-6939-415b-bc01-9049da77b1f4 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/64633773-6939-415b-bc01-9049da77b1f4 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e response: body: - string: '{"id":"64633773-6939-415b-bc01-9049da77b1f4","createdDateTimeUtc":"2021-04-01T20:49:39.4353349Z","lastActionDateTimeUtc":"2021-04-01T20:49:39.9835089Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"52f4c2bd-8a2a-4709-b4f9-6b819650db6e","createdDateTimeUtc":"2021-05-06T21:06:38.2705036Z","lastActionDateTimeUtc":"2021-05-06T21:06:39.4109089Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: c4bad58e-bd5b-4201-a584-e1997ccf631a + apim-request-id: 95fe76f6-102a-485b-9a18-06a99d1d7826 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:49:40 GMT - etag: '"3681C938D0EEF86BFBC64E864DFF018158E876E959E2A7EE703CFD3B81B2B6B2"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:39 GMT + etag: '"7DDC12A9C81855EDA8EA7D7A733C0E51F7C0046E9F4FD6B5ADDE86E2EC5D73CE"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c4bad58e-bd5b-4201-a584-e1997ccf631a + x-requestid: 95fe76f6-102a-485b-9a18-06a99d1d7826 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/64633773-6939-415b-bc01-9049da77b1f4 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e + response: + body: + string: '{"id":"52f4c2bd-8a2a-4709-b4f9-6b819650db6e","createdDateTimeUtc":"2021-05-06T21:06:38.2705036Z","lastActionDateTimeUtc":"2021-05-06T21:06:39.4109089Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: cdc20a79-e86c-44a0-b74c-078ba9b9efd4 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:40 GMT + etag: '"7DDC12A9C81855EDA8EA7D7A733C0E51F7C0046E9F4FD6B5ADDE86E2EC5D73CE"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: cdc20a79-e86c-44a0-b74c-078ba9b9efd4 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e + response: + body: + string: '{"id":"52f4c2bd-8a2a-4709-b4f9-6b819650db6e","createdDateTimeUtc":"2021-05-06T21:06:38.2705036Z","lastActionDateTimeUtc":"2021-05-06T21:06:40.9259148Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: a9b842be-f467-4d77-8ec4-24374ecd3e55 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:41 GMT + etag: '"7EBB653AFDF6AEAD5E2C16DEEF2815F52A5C7F386775A624B668FE6652D05EB7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a9b842be-f467-4d77-8ec4-24374ecd3e55 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e + response: + body: + string: '{"id":"52f4c2bd-8a2a-4709-b4f9-6b819650db6e","createdDateTimeUtc":"2021-05-06T21:06:38.2705036Z","lastActionDateTimeUtc":"2021-05-06T21:06:40.9259148Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 43e1d3df-fc46-4f5d-bb84-06b174bb10da + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:42 GMT + etag: '"7EBB653AFDF6AEAD5E2C16DEEF2815F52A5C7F386775A624B668FE6652D05EB7"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 43e1d3df-fc46-4f5d-bb84-06b174bb10da + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e + response: + body: + string: '{"id":"52f4c2bd-8a2a-4709-b4f9-6b819650db6e","createdDateTimeUtc":"2021-05-06T21:06:38.2705036Z","lastActionDateTimeUtc":"2021-05-06T21:06:40.9259148Z","status":"Running","summary":{"total":2,"failed":1,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + headers: + apim-request-id: 0aebdff0-faac-49e8-8fa6-6a4d8d071fbe + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:44 GMT + etag: '"7EBB653AFDF6AEAD5E2C16DEEF2815F52A5C7F386775A624B668FE6652D05EB7"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: 0aebdff0-faac-49e8-8fa6-6a4d8d071fbe + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e + response: + body: + string: '{"id":"52f4c2bd-8a2a-4709-b4f9-6b819650db6e","createdDateTimeUtc":"2021-05-06T21:06:38.2705036Z","lastActionDateTimeUtc":"2021-05-06T21:06:40.9259148Z","status":"Succeeded","summary":{"total":2,"failed":1,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' + headers: + apim-request-id: a4e97dae-e345-4dbb-a8b6-bb8b068f47d7 + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:06:45 GMT + etag: '"6FFD8D190006675288D6ACACC4F603DA2F3939AE551EC37670ECAB75EBB894B8"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: a4e97dae-e345-4dbb-a8b6-bb8b068f47d7 + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/64633773-6939-415b-bc01-9049da77b1f4/documents?$skip=0&$maxpagesize=50 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e/documents?$skip=0 response: body: - string: '{"value":[{"path":"https://redacted.blob.core.windows.net/target78b57d86-d41f-4c11-b6e0-1b266b1e066c/80346cfd-a434-4135-b275-20933a8fc428.txt","sourcePath":"https://redacted.blob.core.windows.net/src69ab5ece-4a83-4b61-9a55-e4aa9bf58482/80346cfd-a434-4135-b275-20933a8fc428.txt","createdDateTimeUtc":"2021-04-01T20:49:39.9775023Z","lastActionDateTimeUtc":"2021-04-01T20:49:39.9775023Z","status":"Running","to":"es","progress":0,"id":"00006552-0000-0000-0000-000000000000","characterCharged":0},{"sourcePath":"https://redacted.blob.core.windows.net/src69ab5ece-4a83-4b61-9a55-e4aa9bf58482/document.txt","lastActionDateTimeUtc":"2021-04-01T20:49:39.6120176Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Target + string: '{"value":[{"path":"https://redacted.blob.core.windows.net/targetc667e8b6-f0aa-4864-a274-b154c543d98d/7daa7377-401e-4c00-9bc9-c56aa0eac831.txt","sourcePath":"https://redacted.blob.core.windows.net/srcb130cfe2-1e0e-4691-bc88-7cb340ef047d/7daa7377-401e-4c00-9bc9-c56aa0eac831.txt","createdDateTimeUtc":"2021-05-06T21:06:40.4379138Z","lastActionDateTimeUtc":"2021-05-06T21:06:45.4878288Z","status":"Succeeded","to":"es","progress":1,"id":"00002c17-0000-0000-0000-000000000000","characterCharged":27},{"sourcePath":"https://redacted.blob.core.windows.net/srcb130cfe2-1e0e-4691-bc88-7cb340ef047d/document.txt","lastActionDateTimeUtc":"2021-05-06T21:06:39.410733Z","status":"Failed","to":"es","error":{"code":"InvalidRequest","message":"Target document file already exists.","target":"Document","innerError":{"code":"TargetFileAlreadyExists","message":"Target - document file already exists."}},"progress":0,"id":"00006553-0000-0000-0000-000000000000","characterCharged":0}]}' + document file already exists."}},"progress":0,"id":"00002c18-0000-0000-0000-000000000000","characterCharged":0}]}' headers: - apim-request-id: 08580ed9-4924-4422-ba26-5d87329aad1c + apim-request-id: 602bbfc3-6ceb-4e62-9876-ff91b2b58e1c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:49:40 GMT - etag: '"80DB31E5E3BF133C6D7DBE439CCE6F0770D8DD1A0E7915492EACFAB79977013A"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:06:45 GMT + etag: '"37E5A87E29C00D70A27494811207E718D1209DE8454259A25C7BA001C9F512EA"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 08580ed9-4924-4422-ba26-5d87329aad1c + x-requestid: 602bbfc3-6ceb-4e62-9876-ff91b2b58e1c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/64633773-6939-415b-bc01-9049da77b1f4/documents?$skip=0&$maxpagesize=50 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/52f4c2bd-8a2a-4709-b4f9-6b819650db6e/documents?$skip=0 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_multiple_sources_single_target.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_multiple_sources_single_target.yaml index c4334ebfc68a..911b1a0ffe9e 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_multiple_sources_single_target.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_multiple_sources_single_target.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:16:22 GMT + - Thu, 06 May 2021 21:06:45 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srce1a0dfbf-239b-471c-875a-b1349720e607?restype=container + uri: https://redacted.blob.core.windows.net/srcf7ebacaf-79c7-4977-9075-607ecdf2852b?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:16:22 GMT + - Thu, 06 May 2021 21:06:46 GMT etag: - - '"0x8D8F4929E51E67B"' + - '"0x8D910D2DBC611B1"' last-modified: - - Wed, 31 Mar 2021 22:16:23 GMT + - Thu, 06 May 2021 21:06:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:16:23 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:46 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srce1a0dfbf-239b-471c-875a-b1349720e607/27b0e0b1-edbc-48bf-922e-b8202eeede3e.txt + uri: https://redacted.blob.core.windows.net/srcf7ebacaf-79c7-4977-9075-607ecdf2852b/b8c412be-1c16-42a4-b145-fd840878de00.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:16:22 GMT + - Thu, 06 May 2021 21:06:46 GMT etag: - - '"0x8D8F4929E9B0960"' + - '"0x8D910D2DBEA0B8C"' last-modified: - - Wed, 31 Mar 2021 22:16:23 GMT + - Thu, 06 May 2021 21:06:46 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:16:25 GMT + - Thu, 06 May 2021 21:06:46 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src16f7ab62-a8bf-48fe-8bb6-491871bdd544?restype=container + uri: https://redacted.blob.core.windows.net/src8bd9cc59-521b-4a4a-baeb-f9d141fc065a?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:16:32 GMT + - Thu, 06 May 2021 21:06:47 GMT etag: - - '"0x8D8F492A44591F6"' + - '"0x8D910D2DC7776B4"' last-modified: - - Wed, 31 Mar 2021 22:16:33 GMT + - Thu, 06 May 2021 21:06:47 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -143,17 +141,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:16:34 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:47 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src16f7ab62-a8bf-48fe-8bb6-491871bdd544/6e0a17dc-c291-483f-a138-746261a5b736.txt + uri: https://redacted.blob.core.windows.net/src8bd9cc59-521b-4a4a-baeb-f9d141fc065a/7b19ac8e-32b8-48f1-a162-53b745cafa44.txt response: body: string: '' @@ -163,11 +159,11 @@ interactions: content-md5: - fcJZDg3E50i3i55bsEwJZg== date: - - Wed, 31 Mar 2021 22:16:33 GMT + - Thu, 06 May 2021 21:06:47 GMT etag: - - '"0x8D8F492A4B2876F"' + - '"0x8D910D2DC9DC4BE"' last-modified: - - Wed, 31 Mar 2021 22:16:33 GMT + - Thu, 06 May 2021 21:06:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -191,13 +187,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:16:34 GMT + - Thu, 06 May 2021 21:06:48 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target49a86d60-bb10-41ae-84d8-3bd990cb150f?restype=container + uri: https://redacted.blob.core.windows.net/targetc870a7f5-934e-44b0-91b6-1cb054503bb0?restype=container response: body: string: '' @@ -205,11 +201,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:16:34 GMT + - Thu, 06 May 2021 21:06:48 GMT etag: - - '"0x8D8F492A5CDAF4E"' + - '"0x8D910D2DD2DE9E0"' last-modified: - - Wed, 31 Mar 2021 22:16:35 GMT + - Thu, 06 May 2021 21:06:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -218,35 +214,35 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce1a0dfbf-239b-471c-875a-b1349720e607?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target49a86d60-bb10-41ae-84d8-3bd990cb150f?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", - "language": "es"}]}, {"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src16f7ab62-a8bf-48fe-8bb6-491871bdd544?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target49a86d60-bb10-41ae-84d8-3bd990cb150f?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcf7ebacaf-79c7-4977-9075-607ecdf2852b?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc870a7f5-934e-44b0-91b6-1cb054503bb0?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}]}, {"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src8bd9cc59-521b-4a4a-baeb-f9d141fc065a?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetc870a7f5-934e-44b0-91b6-1cb054503bb0?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "fr"}]}]}' headers: Accept: - application/json Content-Length: - - '964' + - '956' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: 7b24a010-1d57-4717-8cc0-674df18dc683 + apim-request-id: 0e24266d-40c0-4f7c-aaba-12f923cd5344 content-length: '0' - date: Wed, 31 Mar 2021 22:16:40 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:06:48 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7b24a010-1d57-4717-8cc0-674df18dc683 + x-requestid: 0e24266d-40c0-4f7c-aaba-12f923cd5344 status: code: 202 message: Accepted @@ -257,366 +253,254 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 response: body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:41.0939191Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"09dc0f13-8fd7-40e9-95ec-406fbbcf2b74","createdDateTimeUtc":"2021-05-06T21:06:49.4431986Z","lastActionDateTimeUtc":"2021-05-06T21:06:49.4431989Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 4d13c701-8751-4896-8087-3b1d54dad55d + apim-request-id: 0e2c7842-0922-41ff-a714-ab548b231a70 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:41 GMT - etag: '"74D2A58471404D984735791F5813D167E249801A08D9FFE595F5BBFD0876395C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:06:49 GMT + etag: '"76B1980C21332AB08D817AF7D3383D818593C81675342475BCC0C911A17A6D92"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4d13c701-8751-4896-8087-3b1d54dad55d + x-requestid: 0e2c7842-0922-41ff-a714-ab548b231a70 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb - response: - body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:41.0939191Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: e730e53d-1917-4e21-bb56-4760a61395b4 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:41 GMT - etag: '"74D2A58471404D984735791F5813D167E249801A08D9FFE595F5BBFD0876395C"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: e730e53d-1917-4e21-bb56-4760a61395b4 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb - response: - body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:43.3878766Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 64303c58-a5f9-4f91-b371-00645f25dcd8 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:43 GMT - etag: '"CC3B74CB5BF756CC94129BAA6B3EA9D68824B5899F9FCE750EDB87D43FB33DCC"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 64303c58-a5f9-4f91-b371-00645f25dcd8 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 response: body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:44.86268Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"09dc0f13-8fd7-40e9-95ec-406fbbcf2b74","createdDateTimeUtc":"2021-05-06T21:06:49.4431986Z","lastActionDateTimeUtc":"2021-05-06T21:06:49.4431989Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: a75c4271-58d8-419b-9b15-7569b4f1e891 + apim-request-id: a9b4dcb8-3b71-486d-b509-6270c0a1c1c5 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:45 GMT - etag: '"6CABEE856B061C9D99172725653703C506F5C0B3EC097E1595BD5F261B82799F"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:06:49 GMT + etag: '"76B1980C21332AB08D817AF7D3383D818593C81675342475BCC0C911A17A6D92"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: a75c4271-58d8-419b-9b15-7569b4f1e891 + x-requestid: a9b4dcb8-3b71-486d-b509-6270c0a1c1c5 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 response: body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:44.86268Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"09dc0f13-8fd7-40e9-95ec-406fbbcf2b74","createdDateTimeUtc":"2021-05-06T21:06:49.4431986Z","lastActionDateTimeUtc":"2021-05-06T21:06:49.4431989Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 45cc0e00-56d7-43d7-8ae6-261f291ebf57 + apim-request-id: cf0c8e07-8ac2-4ab2-8eea-db69c8ab6850 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:46 GMT - etag: '"6CABEE856B061C9D99172725653703C506F5C0B3EC097E1595BD5F261B82799F"' + date: Thu, 06 May 2021 21:06:50 GMT + etag: '"76B1980C21332AB08D817AF7D3383D818593C81675342475BCC0C911A17A6D92"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 45cc0e00-56d7-43d7-8ae6-261f291ebf57 + x-requestid: cf0c8e07-8ac2-4ab2-8eea-db69c8ab6850 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 response: body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:44.86268Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"09dc0f13-8fd7-40e9-95ec-406fbbcf2b74","createdDateTimeUtc":"2021-05-06T21:06:49.4431986Z","lastActionDateTimeUtc":"2021-05-06T21:06:51.6546235Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":1,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 996e0b0e-ad16-4261-8109-1c4a0c48d285 + apim-request-id: 7fb244e9-12a8-4c90-b6d8-f7bcdcf6a239 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:47 GMT - etag: '"6CABEE856B061C9D99172725653703C506F5C0B3EC097E1595BD5F261B82799F"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 996e0b0e-ad16-4261-8109-1c4a0c48d285 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb - response: - body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:44.86268Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 1e2ec1e0-fe79-4ae2-8be2-4177b7bed0c3 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:49 GMT - etag: '"6CABEE856B061C9D99172725653703C506F5C0B3EC097E1595BD5F261B82799F"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 1e2ec1e0-fe79-4ae2-8be2-4177b7bed0c3 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb - response: - body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:44.86268Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: d4e9715b-8a24-460c-8ab7-442109acf3c1 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:51 GMT - etag: '"6CABEE856B061C9D99172725653703C506F5C0B3EC097E1595BD5F261B82799F"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:06:51 GMT + etag: '"88704C97B2AE200AE438AFD9ADC0F885E86B570CE6E0D1D96A96E0C7DB60FF7D"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d4e9715b-8a24-460c-8ab7-442109acf3c1 + x-requestid: 7fb244e9-12a8-4c90-b6d8-f7bcdcf6a239 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 response: body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:44.86268Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"09dc0f13-8fd7-40e9-95ec-406fbbcf2b74","createdDateTimeUtc":"2021-05-06T21:06:49.4431986Z","lastActionDateTimeUtc":"2021-05-06T21:06:52.0997808Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: ad7d560a-3ff0-47a4-b210-1adf0cb2b4e4 + apim-request-id: fb0cf314-4741-438f-a4fd-f85d40c00fed cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:52 GMT - etag: '"6CABEE856B061C9D99172725653703C506F5C0B3EC097E1595BD5F261B82799F"' + date: Thu, 06 May 2021 21:06:52 GMT + etag: '"909CC2F276E96F71ADAEE63FABB55F488E70782BAA5A000B590597415F8FE797"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ad7d560a-3ff0-47a4-b210-1adf0cb2b4e4 + x-requestid: fb0cf314-4741-438f-a4fd-f85d40c00fed status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 response: body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:44.86268Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"09dc0f13-8fd7-40e9-95ec-406fbbcf2b74","createdDateTimeUtc":"2021-05-06T21:06:49.4431986Z","lastActionDateTimeUtc":"2021-05-06T21:06:52.0997808Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: c2e2b579-0cbb-4ffb-a8c7-e6e1582082ca + apim-request-id: 73ba8b25-08fa-4ade-8fd2-bb77e6b27dd5 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:53 GMT - etag: '"6CABEE856B061C9D99172725653703C506F5C0B3EC097E1595BD5F261B82799F"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:06:53 GMT + etag: '"909CC2F276E96F71ADAEE63FABB55F488E70782BAA5A000B590597415F8FE797"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: c2e2b579-0cbb-4ffb-a8c7-e6e1582082ca + x-requestid: 73ba8b25-08fa-4ade-8fd2-bb77e6b27dd5 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 response: body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:44.86268Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"09dc0f13-8fd7-40e9-95ec-406fbbcf2b74","createdDateTimeUtc":"2021-05-06T21:06:49.4431986Z","lastActionDateTimeUtc":"2021-05-06T21:06:52.0997808Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: eac8efad-d461-486a-bd8e-c971f8a61879 + apim-request-id: 063bea75-7fb1-411c-9bcb-e03d0fee6770 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:55 GMT - etag: '"6CABEE856B061C9D99172725653703C506F5C0B3EC097E1595BD5F261B82799F"' + date: Thu, 06 May 2021 21:06:55 GMT + etag: '"909CC2F276E96F71ADAEE63FABB55F488E70782BAA5A000B590597415F8FE797"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: eac8efad-d461-486a-bd8e-c971f8a61879 + x-requestid: 063bea75-7fb1-411c-9bcb-e03d0fee6770 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 response: body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:44.86268Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"09dc0f13-8fd7-40e9-95ec-406fbbcf2b74","createdDateTimeUtc":"2021-05-06T21:06:49.4431986Z","lastActionDateTimeUtc":"2021-05-06T21:06:52.0997808Z","status":"Running","summary":{"total":2,"failed":0,"success":1,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: - apim-request-id: e8212a5c-92c2-4916-92b7-0ff8cdd99387 + apim-request-id: edb96b1c-9556-491b-a0d4-bbe21a34eb6c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:56 GMT - etag: '"6CABEE856B061C9D99172725653703C506F5C0B3EC097E1595BD5F261B82799F"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:06:56 GMT + etag: '"CFC82CD7BE135B7097208177B580C9B058E5EECC870268CD98469521FD954524"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e8212a5c-92c2-4916-92b7-0ff8cdd99387 + x-requestid: edb96b1c-9556-491b-a0d4-bbe21a34eb6c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 response: body: - string: '{"id":"e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb","createdDateTimeUtc":"2021-03-31T22:16:41.0939188Z","lastActionDateTimeUtc":"2021-03-31T22:16:57.096474Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}' + string: '{"id":"09dc0f13-8fd7-40e9-95ec-406fbbcf2b74","createdDateTimeUtc":"2021-05-06T21:06:49.4431986Z","lastActionDateTimeUtc":"2021-05-06T21:06:52.0997808Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":35}}' headers: - apim-request-id: 85a45bb0-bec2-45b8-834f-751e2b5721ab + apim-request-id: b7439fb3-5c26-4b00-950f-31dfd4fa39bb cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:16:57 GMT - etag: '"73C5A6D688DB266989EB8E8DAEC32A6C31FE381C5649F99438669A855E3B05F5"' + date: Thu, 06 May 2021 21:06:57 GMT + etag: '"53F9451ADF84C1C5FB48B1E5F3DE6C3F368FE3ACB380778A614B04F5A8F08CBA"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 85a45bb0-bec2-45b8-834f-751e2b5721ab + x-requestid: b7439fb3-5c26-4b00-950f-31dfd4fa39bb status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e3f7ec4f-36a5-4cb3-b4d2-b0a3f4aa1acb + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/09dc0f13-8fd7-40e9-95ec-406fbbcf2b74 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target.yaml index e7b5a98d75b6..825d99c6379b 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:16:58 GMT + - Thu, 06 May 2021 21:06:58 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src5dd89639-477c-4ab5-8a91-f07e97cddeca?restype=container + uri: https://redacted.blob.core.windows.net/src39ce97d8-9e41-4830-a4c7-a3c63d2ff15e?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:16:59 GMT + - Thu, 06 May 2021 21:06:58 GMT etag: - - '"0x8D8F492B462FFAF"' + - '"0x8D910D2E30917EC"' last-modified: - - Wed, 31 Mar 2021 22:17:00 GMT + - Thu, 06 May 2021 21:06:58 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:17:01 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:06:58 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src5dd89639-477c-4ab5-8a91-f07e97cddeca/4860bc1a-f316-4027-a9e5-1a7c7435a4a7.txt + uri: https://redacted.blob.core.windows.net/src39ce97d8-9e41-4830-a4c7-a3c63d2ff15e/97dfadbe-2c43-4a99-b105-56c13b96cfec.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:17:00 GMT + - Thu, 06 May 2021 21:06:58 GMT etag: - - '"0x8D8F492B4AC82E6"' + - '"0x8D910D2E32CF88E"' last-modified: - - Wed, 31 Mar 2021 22:17:00 GMT + - Thu, 06 May 2021 21:06:59 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:17:01 GMT + - Thu, 06 May 2021 21:06:59 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targetea477cad-e8e0-48ba-b3ca-84f37149eeba?restype=container + uri: https://redacted.blob.core.windows.net/target1d999034-f653-49d9-a8d8-9a7a5b95be6d?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:17:03 GMT + - Thu, 06 May 2021 21:06:59 GMT etag: - - '"0x8D8F492B69D4264"' + - '"0x8D910D2E3B586E5"' last-modified: - - Wed, 31 Mar 2021 22:17:03 GMT + - Thu, 06 May 2021 21:06:59 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,33 +126,33 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src5dd89639-477c-4ab5-8a91-f07e97cddeca?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetea477cad-e8e0-48ba-b3ca-84f37149eeba?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src39ce97d8-9e41-4830-a4c7-a3c63d2ff15e?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target1d999034-f653-49d9-a8d8-9a7a5b95be6d?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '490' + - '484' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: cca59cf5-d2d1-4f2c-9866-8dd97ad159f4 + apim-request-id: 687006fe-a431-4704-aba4-830fc105bab5 content-length: '0' - date: Wed, 31 Mar 2021 22:17:05 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:00 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: cca59cf5-d2d1-4f2c-9866-8dd97ad159f4 + x-requestid: 687006fe-a431-4704-aba4-830fc105bab5 status: code: 202 message: Accepted @@ -165,422 +163,282 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 response: body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:05.8571771Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0f3368f0-93e9-4fa3-9628-1225509f8e76","createdDateTimeUtc":"2021-05-06T21:07:00.3887357Z","lastActionDateTimeUtc":"2021-05-06T21:07:00.388736Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: e9d567cd-b9fd-4a8a-8f7e-afd2b20b4c40 + apim-request-id: 5983fd40-33a2-4f2e-b0c6-687bc5497a85 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:05 GMT - etag: '"EA65F111D4F4B0D95BB4A715E90986E2D26E5400E01A09B5CBDAE0C08C2278B1"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:00 GMT + etag: '"575656F9D3C6B1DDC84F2B88AEDA712D03B066EC92D2C8B39800974637BE0666"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e9d567cd-b9fd-4a8a-8f7e-afd2b20b4c40 + x-requestid: 5983fd40-33a2-4f2e-b0c6-687bc5497a85 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b - response: - body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:05.8571771Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 58147948-2f70-404e-bb0f-e26a94b4f3cd - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:05 GMT - etag: '"EA65F111D4F4B0D95BB4A715E90986E2D26E5400E01A09B5CBDAE0C08C2278B1"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 58147948-2f70-404e-bb0f-e26a94b4f3cd - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b - response: - body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:06.8518888Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: c3a451f9-ab28-4eb9-b171-057ad64112a7 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:06 GMT - etag: '"AB21FA10B5B1784B5E751498E3FFA4D39145ED1D395D2124C07427E63FF47B0D"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: c3a451f9-ab28-4eb9-b171-057ad64112a7 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b - response: - body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:06.8518888Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 5bcd2587-69c7-4623-b973-8faba3690ced - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:08 GMT - etag: '"AB21FA10B5B1784B5E751498E3FFA4D39145ED1D395D2124C07427E63FF47B0D"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 5bcd2587-69c7-4623-b973-8faba3690ced - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b - response: - body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:09.8557834Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 1a768605-dfa5-4892-b776-a2361bd33958 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:09 GMT - etag: '"D1ADBA615EA9876B9300FCAEC95F102F34CD6865E2D29BC6DFA6B0BDADA8DA4C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 1a768605-dfa5-4892-b776-a2361bd33958 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b - response: - body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:09.8557834Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 8aff79d1-1181-4cb7-94eb-959bb9ecadc6 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:11 GMT - etag: '"D1ADBA615EA9876B9300FCAEC95F102F34CD6865E2D29BC6DFA6B0BDADA8DA4C"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 8aff79d1-1181-4cb7-94eb-959bb9ecadc6 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 response: body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:09.8557834Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0f3368f0-93e9-4fa3-9628-1225509f8e76","createdDateTimeUtc":"2021-05-06T21:07:00.3887357Z","lastActionDateTimeUtc":"2021-05-06T21:07:00.388736Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 5c892d00-4e31-4705-a173-3dd6cf910b4b + apim-request-id: d732bda8-b4c8-415d-8975-19d10135610e cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:12 GMT - etag: '"D1ADBA615EA9876B9300FCAEC95F102F34CD6865E2D29BC6DFA6B0BDADA8DA4C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:00 GMT + etag: '"575656F9D3C6B1DDC84F2B88AEDA712D03B066EC92D2C8B39800974637BE0666"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5c892d00-4e31-4705-a173-3dd6cf910b4b + x-requestid: d732bda8-b4c8-415d-8975-19d10135610e status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 response: body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:09.8557834Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0f3368f0-93e9-4fa3-9628-1225509f8e76","createdDateTimeUtc":"2021-05-06T21:07:00.3887357Z","lastActionDateTimeUtc":"2021-05-06T21:07:01.2506048Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 64051f48-fa57-427f-aab3-0166cc7e071d + apim-request-id: adadb9c1-e390-4d7c-8fff-42291cc690bd cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:13 GMT - etag: '"D1ADBA615EA9876B9300FCAEC95F102F34CD6865E2D29BC6DFA6B0BDADA8DA4C"' + date: Thu, 06 May 2021 21:07:01 GMT + etag: '"8DCCD62E005DE1FBD750A2D82FFD416D5D4DA6A02D1706A42D52220F285AA714"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 64051f48-fa57-427f-aab3-0166cc7e071d + x-requestid: adadb9c1-e390-4d7c-8fff-42291cc690bd status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 response: body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:09.8557834Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0f3368f0-93e9-4fa3-9628-1225509f8e76","createdDateTimeUtc":"2021-05-06T21:07:00.3887357Z","lastActionDateTimeUtc":"2021-05-06T21:07:01.2506048Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 2076c9df-e63a-4059-963d-4b98cd1a1b48 + apim-request-id: d08ba663-4538-4c3b-9299-0350ee3b4fd4 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:15 GMT - etag: '"D1ADBA615EA9876B9300FCAEC95F102F34CD6865E2D29BC6DFA6B0BDADA8DA4C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:02 GMT + etag: '"8DCCD62E005DE1FBD750A2D82FFD416D5D4DA6A02D1706A42D52220F285AA714"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2076c9df-e63a-4059-963d-4b98cd1a1b48 + x-requestid: d08ba663-4538-4c3b-9299-0350ee3b4fd4 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 response: body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:09.8557834Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0f3368f0-93e9-4fa3-9628-1225509f8e76","createdDateTimeUtc":"2021-05-06T21:07:00.3887357Z","lastActionDateTimeUtc":"2021-05-06T21:07:01.2506048Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 1d84279e-096f-4176-a694-d93694dd5b36 + apim-request-id: 5426d732-d65e-4ad4-8736-ca3dfff2ecdc cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:16 GMT - etag: '"D1ADBA615EA9876B9300FCAEC95F102F34CD6865E2D29BC6DFA6B0BDADA8DA4C"' + date: Thu, 06 May 2021 21:07:03 GMT + etag: '"8DCCD62E005DE1FBD750A2D82FFD416D5D4DA6A02D1706A42D52220F285AA714"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1d84279e-096f-4176-a694-d93694dd5b36 + x-requestid: 5426d732-d65e-4ad4-8736-ca3dfff2ecdc status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 response: body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:09.8557834Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0f3368f0-93e9-4fa3-9628-1225509f8e76","createdDateTimeUtc":"2021-05-06T21:07:00.3887357Z","lastActionDateTimeUtc":"2021-05-06T21:07:04.7446138Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: b840d8ea-1ee0-4901-83d5-0af5a8a7f69c + apim-request-id: 50144517-3f3b-42b9-88fe-6c2c1b032afb cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:18 GMT - etag: '"D1ADBA615EA9876B9300FCAEC95F102F34CD6865E2D29BC6DFA6B0BDADA8DA4C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:04 GMT + etag: '"95E6FD98AC010EA5AE7943FE61513DA0DA11B4D4124107634659EDD297D06184"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b840d8ea-1ee0-4901-83d5-0af5a8a7f69c + x-requestid: 50144517-3f3b-42b9-88fe-6c2c1b032afb status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 response: body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:09.8557834Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0f3368f0-93e9-4fa3-9628-1225509f8e76","createdDateTimeUtc":"2021-05-06T21:07:00.3887357Z","lastActionDateTimeUtc":"2021-05-06T21:07:04.7446138Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 19d1a65c-e4ba-43e4-8c0b-a4e65b9717c5 + apim-request-id: 3289fccc-8143-4b22-881f-a87e8484bebd cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:19 GMT - etag: '"D1ADBA615EA9876B9300FCAEC95F102F34CD6865E2D29BC6DFA6B0BDADA8DA4C"' + date: Thu, 06 May 2021 21:07:06 GMT + etag: '"95E6FD98AC010EA5AE7943FE61513DA0DA11B4D4124107634659EDD297D06184"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 19d1a65c-e4ba-43e4-8c0b-a4e65b9717c5 + x-requestid: 3289fccc-8143-4b22-881f-a87e8484bebd status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 response: body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:09.8557834Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0f3368f0-93e9-4fa3-9628-1225509f8e76","createdDateTimeUtc":"2021-05-06T21:07:00.3887357Z","lastActionDateTimeUtc":"2021-05-06T21:07:04.7446138Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 6f5af77c-88f2-4e4f-9009-52195aa51820 + apim-request-id: a23b46ac-5886-4578-b542-c87c0d2aa90b cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:20 GMT - etag: '"D1ADBA615EA9876B9300FCAEC95F102F34CD6865E2D29BC6DFA6B0BDADA8DA4C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:07 GMT + etag: '"95E6FD98AC010EA5AE7943FE61513DA0DA11B4D4124107634659EDD297D06184"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 6f5af77c-88f2-4e4f-9009-52195aa51820 + x-requestid: a23b46ac-5886-4578-b542-c87c0d2aa90b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 response: body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:09.8557834Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"0f3368f0-93e9-4fa3-9628-1225509f8e76","createdDateTimeUtc":"2021-05-06T21:07:00.3887357Z","lastActionDateTimeUtc":"2021-05-06T21:07:04.7446138Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: d77bbb62-f143-4170-8064-1a887131498e + apim-request-id: 15acaab1-1a94-4bee-b37b-b0834d4a535d cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:22 GMT - etag: '"D1ADBA615EA9876B9300FCAEC95F102F34CD6865E2D29BC6DFA6B0BDADA8DA4C"' + date: Thu, 06 May 2021 21:07:08 GMT + etag: '"95E6FD98AC010EA5AE7943FE61513DA0DA11B4D4124107634659EDD297D06184"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d77bbb62-f143-4170-8064-1a887131498e + x-requestid: 15acaab1-1a94-4bee-b37b-b0834d4a535d status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 response: body: - string: '{"id":"e65c4ce0-8a9a-4dde-b9f3-318d98efec1b","createdDateTimeUtc":"2021-03-31T22:17:05.8571767Z","lastActionDateTimeUtc":"2021-03-31T22:17:23.2061412Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"0f3368f0-93e9-4fa3-9628-1225509f8e76","createdDateTimeUtc":"2021-05-06T21:07:00.3887357Z","lastActionDateTimeUtc":"2021-05-06T21:07:04.7446138Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: - apim-request-id: e399e143-6785-4cb0-9022-a8423b1f038f + apim-request-id: 4aa5dfac-8137-4844-b1f3-28c4ab5e3d1b cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:23 GMT - etag: '"4825473A8C7B420580DCE81915619AFF15BF9828DAE890A030991AFE95BCF09C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:09 GMT + etag: '"BC57F6FD71C2A55DD758784F55A04B39B7164B2FAF8193EEF5DA8F723DA9CC41"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e399e143-6785-4cb0-9022-a8423b1f038f + x-requestid: 4aa5dfac-8137-4844-b1f3-28c4ab5e3d1b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/e65c4ce0-8a9a-4dde-b9f3-318d98efec1b + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/0f3368f0-93e9-4fa3-9628-1225509f8e76 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target_with_prefix.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target_with_prefix.yaml index 0713d89a1b98..75cb0719b329 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target_with_prefix.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target_with_prefix.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:17:24 GMT + - Thu, 06 May 2021 21:07:10 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srca7f6aafb-4467-4656-a607-926a4a93079d?restype=container + uri: https://redacted.blob.core.windows.net/src07321415-b115-4692-8fc6-1e8d7f5b418d?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:17:24 GMT + - Thu, 06 May 2021 21:07:10 GMT etag: - - '"0x8D8F492C34014FF"' + - '"0x8D910D2EA47DF5D"' last-modified: - - Wed, 31 Mar 2021 22:17:25 GMT + - Thu, 06 May 2021 21:07:10 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:17:25 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:07:11 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srca7f6aafb-4467-4656-a607-926a4a93079d/xyz946b3156-e26e-43f8-a47b-6ee472c1fb95.txt + uri: https://redacted.blob.core.windows.net/src07321415-b115-4692-8fc6-1e8d7f5b418d/xyz59a9142c-318a-4f20-9a13-41d3319ff1e5.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:17:24 GMT + - Thu, 06 May 2021 21:07:11 GMT etag: - - '"0x8D8F492C37F2D4D"' + - '"0x8D910D2EA70D017"' last-modified: - - Wed, 31 Mar 2021 22:17:25 GMT + - Thu, 06 May 2021 21:07:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:17:26 GMT + - Thu, 06 May 2021 21:07:11 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target9ed36397-7e28-4115-ae7f-f7b3e812055b?restype=container + uri: https://redacted.blob.core.windows.net/targetdf01ce48-accb-43e5-b699-e0b036de8293?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:17:27 GMT + - Thu, 06 May 2021 21:07:11 GMT etag: - - '"0x8D8F492C4C2BC8A"' + - '"0x8D910D2EAFD9FC2"' last-modified: - - Wed, 31 Mar 2021 22:17:27 GMT + - Thu, 06 May 2021 21:07:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,33 +126,33 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca7f6aafb-4467-4656-a607-926a4a93079d?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {"prefix": "xyz"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target9ed36397-7e28-4115-ae7f-f7b3e812055b?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src07321415-b115-4692-8fc6-1e8d7f5b418d?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {"prefix": "xyz"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetdf01ce48-accb-43e5-b699-e0b036de8293?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: - application/json Content-Length: - - '503' + - '505' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: 2e1d8f11-1585-4f0e-b1e5-bd14b1db9422 + apim-request-id: 4c974822-b0d0-475f-a566-c0af0295962f content-length: '0' - date: Wed, 31 Mar 2021 22:17:29 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:12 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2e1d8f11-1585-4f0e-b1e5-bd14b1db9422 + x-requestid: 4c974822-b0d0-475f-a566-c0af0295962f status: code: 202 message: Accepted @@ -165,254 +163,198 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 response: body: - string: '{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:30.1157865Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"bcf1fa9f-924b-46ca-9204-865db26dbe89","createdDateTimeUtc":"2021-05-06T21:07:12.662661Z","lastActionDateTimeUtc":"2021-05-06T21:07:12.6626615Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 3ad997dd-0d15-47f5-9bbf-9ebd834d6a2f + apim-request-id: a8b908d2-e1ef-4f24-8ca7-74dec584e099 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:29 GMT - etag: '"F01B2CBFB51D8E2E2DFD73E952D2A0D35BEEF1B9D9C5EFEEB09B187EE63AD31B"' + date: Thu, 06 May 2021 21:07:12 GMT + etag: '"8B170F42B20663BAB29506669E8751DBF48771042CAE936E16066FD09B550943"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 3ad997dd-0d15-47f5-9bbf-9ebd834d6a2f + x-requestid: a8b908d2-e1ef-4f24-8ca7-74dec584e099 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 response: body: - string: '{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:30.1157865Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"bcf1fa9f-924b-46ca-9204-865db26dbe89","createdDateTimeUtc":"2021-05-06T21:07:12.662661Z","lastActionDateTimeUtc":"2021-05-06T21:07:12.6626615Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 7aaa5a76-84bb-443d-ba8d-4ea38f9b1fdd + apim-request-id: 73751f60-586b-475e-8924-f86f55ab5eb9 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:30 GMT - etag: '"F01B2CBFB51D8E2E2DFD73E952D2A0D35BEEF1B9D9C5EFEEB09B187EE63AD31B"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:12 GMT + etag: '"8B170F42B20663BAB29506669E8751DBF48771042CAE936E16066FD09B550943"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7aaa5a76-84bb-443d-ba8d-4ea38f9b1fdd + x-requestid: 73751f60-586b-475e-8924-f86f55ab5eb9 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 response: body: - string: '{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:31.1271998Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"bcf1fa9f-924b-46ca-9204-865db26dbe89","createdDateTimeUtc":"2021-05-06T21:07:12.662661Z","lastActionDateTimeUtc":"2021-05-06T21:07:13.5674186Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 9ce4a2e0-dc30-4a02-9435-e821ce451ba7 + apim-request-id: 3b92ba52-6761-4a56-a2a1-92a9ab754083 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:31 GMT - etag: '"938C72E2D9D1444CD17943BE6A8AC77D01B8C855F0996426E7A1C71E9B42B78F"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 9ce4a2e0-dc30-4a02-9435-e821ce451ba7 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 - response: - body: - string: '{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:31.1271998Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 43c0e476-b047-4193-bd7b-9076511bd37b - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:32 GMT - etag: '"938C72E2D9D1444CD17943BE6A8AC77D01B8C855F0996426E7A1C71E9B42B78F"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 43c0e476-b047-4193-bd7b-9076511bd37b - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 - response: - body: - string: '{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:31.1271998Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: 27a76975-b35b-4521-978e-e6daa2ad22f9 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:34 GMT - etag: '"938C72E2D9D1444CD17943BE6A8AC77D01B8C855F0996426E7A1C71E9B42B78F"' + date: Thu, 06 May 2021 21:07:13 GMT + etag: '"60CC997AF7412EEAA3BAFFA93844DB68316D8E42123AAA39BEC5671F48A3FBF0"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 27a76975-b35b-4521-978e-e6daa2ad22f9 + x-requestid: 3b92ba52-6761-4a56-a2a1-92a9ab754083 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 response: body: - string: '{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:34.9979724Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"bcf1fa9f-924b-46ca-9204-865db26dbe89","createdDateTimeUtc":"2021-05-06T21:07:12.662661Z","lastActionDateTimeUtc":"2021-05-06T21:07:13.5674186Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 011aeff6-1cbd-4bf2-a027-71739a7e6228 + apim-request-id: 3b205c30-d85e-4454-ba29-d87a3a54dbdf cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:35 GMT - etag: '"E78A06D9DFF27C105DB1C9D3A612AF192A935FFA54A3FDBD3B1506CF5BE5D56C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:15 GMT + etag: '"60CC997AF7412EEAA3BAFFA93844DB68316D8E42123AAA39BEC5671F48A3FBF0"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 011aeff6-1cbd-4bf2-a027-71739a7e6228 + x-requestid: 3b205c30-d85e-4454-ba29-d87a3a54dbdf status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 response: body: - string: '{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:34.9979724Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"bcf1fa9f-924b-46ca-9204-865db26dbe89","createdDateTimeUtc":"2021-05-06T21:07:12.662661Z","lastActionDateTimeUtc":"2021-05-06T21:07:15.9298733Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 4ba1aace-99db-4f7d-a04a-8ab19ac71f12 + apim-request-id: 07279288-1e1a-4c1c-8de6-dde435d9e535 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:36 GMT - etag: '"E78A06D9DFF27C105DB1C9D3A612AF192A935FFA54A3FDBD3B1506CF5BE5D56C"' + date: Thu, 06 May 2021 21:07:16 GMT + etag: '"BF392351ECD96E7564695547CF247567A9978851DF41CB681D37E251EA775BCB"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4ba1aace-99db-4f7d-a04a-8ab19ac71f12 + x-requestid: 07279288-1e1a-4c1c-8de6-dde435d9e535 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 response: body: - string: '{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:34.9979724Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"bcf1fa9f-924b-46ca-9204-865db26dbe89","createdDateTimeUtc":"2021-05-06T21:07:12.662661Z","lastActionDateTimeUtc":"2021-05-06T21:07:15.9298733Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: faa40459-ffb3-40f8-8aed-0313a083ea2d + apim-request-id: 996da43c-af46-4f44-96d6-82221a313665 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:37 GMT - etag: '"E78A06D9DFF27C105DB1C9D3A612AF192A935FFA54A3FDBD3B1506CF5BE5D56C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:17 GMT + etag: '"BF392351ECD96E7564695547CF247567A9978851DF41CB681D37E251EA775BCB"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: faa40459-ffb3-40f8-8aed-0313a083ea2d + x-requestid: 996da43c-af46-4f44-96d6-82221a313665 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 response: body: - string: '{"id":"15c938e2-6320-4a48-a064-89731fd7e2d0","createdDateTimeUtc":"2021-03-31T22:17:30.1157861Z","lastActionDateTimeUtc":"2021-03-31T22:17:39.206193Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"bcf1fa9f-924b-46ca-9204-865db26dbe89","createdDateTimeUtc":"2021-05-06T21:07:12.662661Z","lastActionDateTimeUtc":"2021-05-06T21:07:15.9298733Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' headers: - apim-request-id: 1151f370-b54e-4274-8617-6db9fae3ad55 + apim-request-id: 70c7dc11-4f0b-43a3-9967-cb73405b5228 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:39 GMT - etag: '"FFEC5BF25427B5B6874A7664FA722C2D65A5A23044E9CB57357C5619F7880193"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:18 GMT + etag: '"1DBED990419B4ABB3F3DBE21FB20E6348FB3F95B8F6AF183C6F6DF772163561E"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 1151f370-b54e-4274-8617-6db9fae3ad55 + x-requestid: 70c7dc11-4f0b-43a3-9967-cb73405b5228 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/15c938e2-6320-4a48-a064-89731fd7e2d0 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/bcf1fa9f-924b-46ca-9204-865db26dbe89 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target_with_suffix.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target_with_suffix.yaml index 719bb12ea7b2..cef542d06e0c 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target_with_suffix.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_single_target_with_suffix.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:17:40 GMT + - Thu, 06 May 2021 21:07:18 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srce838dc21-032c-4c19-bc93-2de5bcf4fffd?restype=container + uri: https://redacted.blob.core.windows.net/srca96d3116-62ca-494d-a4a2-1d096754f203?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:17:41 GMT + - Thu, 06 May 2021 21:07:19 GMT etag: - - '"0x8D8F492CD20A15F"' + - '"0x8D910D2EF7AD188"' last-modified: - - Wed, 31 Mar 2021 22:17:41 GMT + - Thu, 06 May 2021 21:07:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:17:42 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:07:19 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srce838dc21-032c-4c19-bc93-2de5bcf4fffd/df23ce55-77aa-4a94-b82f-fbb9d64f9b66.txt + uri: https://redacted.blob.core.windows.net/srca96d3116-62ca-494d-a4a2-1d096754f203/127d126c-cf32-4607-9a91-351af0d0ca1a.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:17:41 GMT + - Thu, 06 May 2021 21:07:19 GMT etag: - - '"0x8D8F492CD54892B"' + - '"0x8D910D2EF9EFB37"' last-modified: - - Wed, 31 Mar 2021 22:17:42 GMT + - Thu, 06 May 2021 21:07:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:17:42 GMT + - Thu, 06 May 2021 21:07:20 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target879aa431-8cfb-468f-b2f2-5491070a4448?restype=container + uri: https://redacted.blob.core.windows.net/target77e51335-21a8-43a6-8622-e9730940cb93?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:17:43 GMT + - Thu, 06 May 2021 21:07:19 GMT etag: - - '"0x8D8F492CEB7A4DF"' + - '"0x8D910D2F0323EAF"' last-modified: - - Wed, 31 Mar 2021 22:17:44 GMT + - Thu, 06 May 2021 21:07:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -128,8 +126,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srce838dc21-032c-4c19-bc93-2de5bcf4fffd?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {"suffix": "txt"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target879aa431-8cfb-468f-b2f2-5491070a4448?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srca96d3116-62ca-494d-a4a2-1d096754f203?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {"suffix": "txt"}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target77e51335-21a8-43a6-8622-e9730940cb93?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -139,22 +137,22 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: d875a2ed-5d5c-48d7-948d-c5e47eb32a38 + apim-request-id: 42c1b6be-ee16-4196-947a-e00a1173f825 content-length: '0' - date: Wed, 31 Mar 2021 22:17:47 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + date: Thu, 06 May 2021 21:07:20 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: d875a2ed-5d5c-48d7-948d-c5e47eb32a38 + x-requestid: 42c1b6be-ee16-4196-947a-e00a1173f825 status: code: 202 message: Accepted @@ -165,142 +163,170 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b response: body: - string: '{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:47.6716296Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"48c40387-bc99-4eda-8778-80c2c39e872b","createdDateTimeUtc":"2021-05-06T21:07:21.3581007Z","lastActionDateTimeUtc":"2021-05-06T21:07:21.3581009Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 28d6f2c7-3f5e-4317-bfc1-8a2b3e95acb1 + apim-request-id: 7a2950fa-6531-4644-b54b-21cd6d6d809a cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:47 GMT - etag: '"91F0AE8DC77AB706CEEC220A82D5C278E23905C9B28D1865CF8162D533CAC88A"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:20 GMT + etag: '"50EDA45DFAD8C184411A53B291A824ADF2DD02F0F08F3DD8B0088C0049B37E88"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 28d6f2c7-3f5e-4317-bfc1-8a2b3e95acb1 + x-requestid: 7a2950fa-6531-4644-b54b-21cd6d6d809a status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b response: body: - string: '{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:47.6716296Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"48c40387-bc99-4eda-8778-80c2c39e872b","createdDateTimeUtc":"2021-05-06T21:07:21.3581007Z","lastActionDateTimeUtc":"2021-05-06T21:07:21.3581009Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: b1f0a021-6da3-414b-9bdd-2b3206701195 + apim-request-id: 21b9da1a-f28c-452d-aea3-1a7ddfa55095 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:48 GMT - etag: '"91F0AE8DC77AB706CEEC220A82D5C278E23905C9B28D1865CF8162D533CAC88A"' + date: Thu, 06 May 2021 21:07:20 GMT + etag: '"50EDA45DFAD8C184411A53B291A824ADF2DD02F0F08F3DD8B0088C0049B37E88"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b1f0a021-6da3-414b-9bdd-2b3206701195 + x-requestid: 21b9da1a-f28c-452d-aea3-1a7ddfa55095 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b response: body: - string: '{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:50.0006954Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"48c40387-bc99-4eda-8778-80c2c39e872b","createdDateTimeUtc":"2021-05-06T21:07:21.3581007Z","lastActionDateTimeUtc":"2021-05-06T21:07:22.2474384Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: ba0b22db-810f-4c12-a1f7-5ced8a73a19f + apim-request-id: 10b28139-6c8f-4c1f-a8f5-50faf4fe12c3 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:51 GMT - etag: '"F8F9E2F6D8DA9F59268D763F2FF427868995E9028B1A1E353C872E90837D61AE"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:21 GMT + etag: '"C9FBA5F870C94EA531CE18D31A4F4F9A6EFFCE0B59A554C393442FFCC9A4E418"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ba0b22db-810f-4c12-a1f7-5ced8a73a19f + x-requestid: 10b28139-6c8f-4c1f-a8f5-50faf4fe12c3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b response: body: - string: '{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:50.0006954Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"48c40387-bc99-4eda-8778-80c2c39e872b","createdDateTimeUtc":"2021-05-06T21:07:21.3581007Z","lastActionDateTimeUtc":"2021-05-06T21:07:22.9757441Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 02ca0507-cee9-4933-b7b8-cfe05fe9416a + apim-request-id: 8e41786e-cab4-402d-8378-e25f60850f21 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:53 GMT - etag: '"F8F9E2F6D8DA9F59268D763F2FF427868995E9028B1A1E353C872E90837D61AE"' + date: Thu, 06 May 2021 21:07:23 GMT + etag: '"8DD1CF6464D61F0DFD11A3989E794A7A566AAB32FCCC26F50AF012142A832025"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 02ca0507-cee9-4933-b7b8-cfe05fe9416a + x-requestid: 8e41786e-cab4-402d-8378-e25f60850f21 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b response: body: - string: '{"id":"9a7e3ca1-993a-4066-8a96-93b7145e2f41","createdDateTimeUtc":"2021-03-31T22:17:47.6716292Z","lastActionDateTimeUtc":"2021-03-31T22:17:55.2689346Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + string: '{"id":"48c40387-bc99-4eda-8778-80c2c39e872b","createdDateTimeUtc":"2021-05-06T21:07:21.3581007Z","lastActionDateTimeUtc":"2021-05-06T21:07:22.9757441Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: e714de48-84ea-437b-891b-e24d47ad55c6 + apim-request-id: 9d108939-99f7-4cca-8925-d3152f68d75c cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:17:56 GMT - etag: '"27DFFD3B3B2E8ACA82999D995C94ACF5622F0B01D12E0B78B1C7AEF680712407"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:25 GMT + etag: '"8DD1CF6464D61F0DFD11A3989E794A7A566AAB32FCCC26F50AF012142A832025"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e714de48-84ea-437b-891b-e24d47ad55c6 + x-requestid: 9d108939-99f7-4cca-8925-d3152f68d75c status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/9a7e3ca1-993a-4066-8a96-93b7145e2f41 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b +- request: + body: null + headers: + User-Agent: + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b + response: + body: + string: '{"id":"48c40387-bc99-4eda-8778-80c2c39e872b","createdDateTimeUtc":"2021-05-06T21:07:21.3581007Z","lastActionDateTimeUtc":"2021-05-06T21:07:22.9757441Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":17}}' + headers: + apim-request-id: ab08466a-0202-46e2-9f5f-2cdcb391500d + cache-control: public,max-age=1 + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Thu, 06 May 2021 21:07:26 GMT + etag: '"30766E165896C624C41A5F939C62464BC95192F11CC5FD631A7C1814AB012E51"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + strict-transport-security: max-age=31536000; includeSubDomains; preload + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-powered-by: ASP.NET + x-requestid: ab08466a-0202-46e2-9f5f-2cdcb391500d + status: + code: 200 + message: OK + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/48c40387-bc99-4eda-8778-80c2c39e872b version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_two_targets.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_two_targets.yaml index 032cf7b48841..eaac1f956aa4 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_two_targets.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_single_source_two_targets.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:17:57 GMT + - Thu, 06 May 2021 21:07:26 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src3c7ea72f-9b58-4159-a9f3-db068bcde2b8?restype=container + uri: https://redacted.blob.core.windows.net/srcfb90eb80-27b2-43fb-b0b5-4376645836c6?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:17:58 GMT + - Thu, 06 May 2021 21:07:27 GMT etag: - - '"0x8D8F492D760550E"' + - '"0x8D910D2F402DC38"' last-modified: - - Wed, 31 Mar 2021 22:17:58 GMT + - Thu, 06 May 2021 21:07:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Wed, 31 Mar 2021 22:17:59 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:07:27 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/src3c7ea72f-9b58-4159-a9f3-db068bcde2b8/852d6dca-79ee-4ae1-93aa-bc2cc594b951.txt + uri: https://redacted.blob.core.windows.net/srcfb90eb80-27b2-43fb-b0b5-4376645836c6/2682d268-937d-476e-9797-0b7f883cfbe6.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - lyFPYyJLwenMTaN3qtznxw== date: - - Wed, 31 Mar 2021 22:17:59 GMT + - Thu, 06 May 2021 21:07:27 GMT etag: - - '"0x8D8F492D7BE02A9"' + - '"0x8D910D2F42667B8"' last-modified: - - Wed, 31 Mar 2021 22:17:59 GMT + - Thu, 06 May 2021 21:07:27 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -101,13 +99,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:18:00 GMT + - Thu, 06 May 2021 21:07:27 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targetf7168059-ebbd-46cf-a6d1-cd03b041b120?restype=container + uri: https://redacted.blob.core.windows.net/target35c98aa1-8afe-4865-9c71-fdafd9e249c1?restype=container response: body: string: '' @@ -115,11 +113,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:18:02 GMT + - Thu, 06 May 2021 21:07:27 GMT etag: - - '"0x8D8F492D997DF8C"' + - '"0x8D910D2F4B1AA2C"' last-modified: - - Wed, 31 Mar 2021 22:18:02 GMT + - Thu, 06 May 2021 21:07:28 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -139,13 +137,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 31 Mar 2021 22:18:03 GMT + - Thu, 06 May 2021 21:07:28 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/target3ea30552-399d-4528-8f1e-1f9ac82fe852?restype=container + uri: https://redacted.blob.core.windows.net/target5e48df4c-da87-4994-aa96-726a58ce3820?restype=container response: body: string: '' @@ -153,11 +151,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Mar 2021 22:18:07 GMT + - Thu, 06 May 2021 21:07:29 GMT etag: - - '"0x8D8F492DC97392E"' + - '"0x8D910D2F53AE987"' last-modified: - - Wed, 31 Mar 2021 22:18:07 GMT + - Thu, 06 May 2021 21:07:29 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -166,34 +164,34 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/src3c7ea72f-9b58-4159-a9f3-db068bcde2b8?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetf7168059-ebbd-46cf-a6d1-cd03b041b120?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", - "language": "es"}, {"targetUrl": "https://redacted.blob.core.windows.net/target3ea30552-399d-4528-8f1e-1f9ac82fe852?se=end&sp=racwdl&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcfb90eb80-27b2-43fb-b0b5-4376645836c6?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target35c98aa1-8afe-4865-9c71-fdafd9e249c1?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + "language": "es"}, {"targetUrl": "https://redacted.blob.core.windows.net/target5e48df4c-da87-4994-aa96-726a58ce3820?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "fr"}]}]}' headers: Accept: - application/json Content-Length: - - '729' + - '713' Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: 8a44f305-7b13-4f62-b9d5-87979c61df28 + apim-request-id: 39522cd3-68d0-4ee4-b2b1-6cd75a605eb1 content-length: '0' - date: Wed, 31 Mar 2021 22:18:09 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:29 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 8a44f305-7b13-4f62-b9d5-87979c61df28 + x-requestid: 39522cd3-68d0-4ee4-b2b1-6cd75a605eb1 status: code: 202 message: Accepted @@ -204,310 +202,310 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:09.6183817Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:29.9104801Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: fc2840e1-1ccc-4ca9-ac4f-3914aa92bbd4 + apim-request-id: 8119bf3c-7f36-42db-a3bc-caac8a73b1b1 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:09 GMT - etag: '"2BDF5007FA3042ACA0CDDC3F13E0D2BF2419F62505B5964B43D863AF43F51A9C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:29 GMT + etag: '"38C740DD4C7D07822063D06D3465D66F82B008B470213B7EC6F8D5254DA8BB6C"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: fc2840e1-1ccc-4ca9-ac4f-3914aa92bbd4 + x-requestid: 8119bf3c-7f36-42db-a3bc-caac8a73b1b1 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:09.6183817Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:29.9104801Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 5c6ec4eb-e01d-41c7-b2e9-a1149d2a50ec + apim-request-id: 678f267f-c0c9-4b9f-b42a-0409e2f3a719 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:09 GMT - etag: '"2BDF5007FA3042ACA0CDDC3F13E0D2BF2419F62505B5964B43D863AF43F51A9C"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:29 GMT + etag: '"38C740DD4C7D07822063D06D3465D66F82B008B470213B7EC6F8D5254DA8BB6C"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 5c6ec4eb-e01d-41c7-b2e9-a1149d2a50ec + x-requestid: 678f267f-c0c9-4b9f-b42a-0409e2f3a719 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:09.6183817Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:31.2156496Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: b1da6d47-7ad8-403d-8419-1a2b0f56c53c + apim-request-id: fb5e42ad-1e68-4c39-9cbb-faf0d0234699 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:10 GMT - etag: '"2BDF5007FA3042ACA0CDDC3F13E0D2BF2419F62505B5964B43D863AF43F51A9C"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:30 GMT + etag: '"EB83CE35F9DDC9C0DA0191156BEBF064F88E471B1F2CA425FBF3CAA0BB8475C9"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b1da6d47-7ad8-403d-8419-1a2b0f56c53c + x-requestid: fb5e42ad-1e68-4c39-9cbb-faf0d0234699 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:11.197934Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:31.2156496Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 02f3869b-8d8f-45e2-b104-60a450751935 + apim-request-id: 619947a3-0c3b-4104-90ed-b9a6e39b1622 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:11 GMT - etag: '"F8C0591DA4AA7A1F460E536A5F2982F20D165F8D948520D6EF4AAB041EBAFE17"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:31 GMT + etag: '"EB83CE35F9DDC9C0DA0191156BEBF064F88E471B1F2CA425FBF3CAA0BB8475C9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 02f3869b-8d8f-45e2-b104-60a450751935 + x-requestid: 619947a3-0c3b-4104-90ed-b9a6e39b1622 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:11.197934Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:31.2156496Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 4329438b-d84f-42e7-a0ee-edcb3b396009 + apim-request-id: 1584d2f8-bbf1-4e17-9f6e-c2ca207407a6 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:13 GMT - etag: '"F8C0591DA4AA7A1F460E536A5F2982F20D165F8D948520D6EF4AAB041EBAFE17"' + date: Thu, 06 May 2021 21:07:32 GMT + etag: '"EB83CE35F9DDC9C0DA0191156BEBF064F88E471B1F2CA425FBF3CAA0BB8475C9"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 4329438b-d84f-42e7-a0ee-edcb3b396009 + x-requestid: 1584d2f8-bbf1-4e17-9f6e-c2ca207407a6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:15.1165707Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":1,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:31.2156496Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 7f9e4126-26c1-468b-98d3-f83fda36b7a5 + apim-request-id: 0eefa32f-2407-4d5a-aa3d-ac969aca3138 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:14 GMT - etag: '"B95378C09D4773C0179E01D2CC5613F04877E5E850E155CE9691796200AAAD25"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:34 GMT + etag: '"EB83CE35F9DDC9C0DA0191156BEBF064F88E471B1F2CA425FBF3CAA0BB8475C9"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7f9e4126-26c1-468b-98d3-f83fda36b7a5 + x-requestid: 0eefa32f-2407-4d5a-aa3d-ac969aca3138 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:16.1387481Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:31.2156496Z","status":"NotStarted","summary":{"total":2,"failed":0,"success":0,"inProgress":0,"notYetStarted":2,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 9f9af675-210b-40d9-ad25-8fd94296a332 + apim-request-id: 32692626-7296-4027-9c78-32bb48566ce6 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:15 GMT - etag: '"57CDD2D72E6BCD77D3F3CD05AA3324CC67DE923E63CD3B4F03F456D48ADA2D6D"' + date: Thu, 06 May 2021 21:07:35 GMT + etag: '"EB83CE35F9DDC9C0DA0191156BEBF064F88E471B1F2CA425FBF3CAA0BB8475C9"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 9f9af675-210b-40d9-ad25-8fd94296a332 + x-requestid: 32692626-7296-4027-9c78-32bb48566ce6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:16.1387481Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:36.8155104Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 7a1b4fbf-e20e-4dcf-8f08-6a92b7d85253 + apim-request-id: 59cb75ff-2250-44c4-aa2d-75f8657b507b cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:17 GMT - etag: '"57CDD2D72E6BCD77D3F3CD05AA3324CC67DE923E63CD3B4F03F456D48ADA2D6D"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:36 GMT + etag: '"6A7AE872A423D31A188D4AF773285BD4CE0857B19116A9D4CAC21562505B4845"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 7a1b4fbf-e20e-4dcf-8f08-6a92b7d85253 + x-requestid: 59cb75ff-2250-44c4-aa2d-75f8657b507b status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:16.1387481Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:36.8155104Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 2b329d97-ba9d-47df-8124-9ca29e696a29 + apim-request-id: e35e33f8-6828-403a-9a2f-76b7b2dca0c4 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:18 GMT - etag: '"57CDD2D72E6BCD77D3F3CD05AA3324CC67DE923E63CD3B4F03F456D48ADA2D6D"' + date: Thu, 06 May 2021 21:07:37 GMT + etag: '"6A7AE872A423D31A188D4AF773285BD4CE0857B19116A9D4CAC21562505B4845"' set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 2b329d97-ba9d-47df-8124-9ca29e696a29 + x-requestid: e35e33f8-6828-403a-9a2f-76b7b2dca0c4 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:16.1387481Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:36.8155104Z","status":"Running","summary":{"total":2,"failed":0,"success":0,"inProgress":2,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: bd634e00-c60f-4199-8805-13e8c09fdf3c + apim-request-id: 777e66c7-e2c2-4aa6-baee-3e228b0ac93e cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:19 GMT - etag: '"57CDD2D72E6BCD77D3F3CD05AA3324CC67DE923E63CD3B4F03F456D48ADA2D6D"' - set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:38 GMT + etag: '"6A7AE872A423D31A188D4AF773285BD4CE0857B19116A9D4CAC21562505B4845"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: bd634e00-c60f-4199-8805-13e8c09fdf3c + x-requestid: 777e66c7-e2c2-4aa6-baee-3e228b0ac93e status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 response: body: - string: '{"id":"14ae51dc-6bcb-449a-8da2-af01bdf81907","createdDateTimeUtc":"2021-03-31T22:18:09.6183813Z","lastActionDateTimeUtc":"2021-03-31T22:18:21.3083422Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}' + string: '{"id":"580dfc7a-e629-4275-be5f-2cdfb1c7dcf7","createdDateTimeUtc":"2021-05-06T21:07:29.9104795Z","lastActionDateTimeUtc":"2021-05-06T21:07:36.8155104Z","status":"Succeeded","summary":{"total":2,"failed":0,"success":2,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":34}}' headers: - apim-request-id: b5e635cf-348c-43f7-a023-b1c8b4eb3456 + apim-request-id: a8ebfc88-110f-49b5-9555-04599dbd47db cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Wed, 31 Mar 2021 22:18:21 GMT - etag: '"61C7A1BEF9C25ACC6ABA2C14DBE5C1B9A6B4115BE08C9B126EB0D332C876DD2A"' - set-cookie: ARRAffinitySameSite=36da0e643e19b219e9cc242244bbb17606f2f9cdc98871c377756b22cded58cb;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com + date: Thu, 06 May 2021 21:07:39 GMT + etag: '"B45E0A5F574398337AFB163D1DA0F393CCEFE52C0478442A8F3BEFD04D253888"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b5e635cf-348c-43f7-a023-b1c8b4eb3456 + x-requestid: a8ebfc88-110f-49b5-9555-04599dbd47db status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/14ae51dc-6bcb-449a-8da2-af01bdf81907 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/580dfc7a-e629-4275-be5f-2cdfb1c7dcf7 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_use_supported_and_unsupported_files.yaml b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_use_supported_and_unsupported_files.yaml index d7b7c3e84337..4dd6e32ea05a 100644 --- a/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_use_supported_and_unsupported_files.yaml +++ b/sdk/translation/azure-ai-translation-document/tests/recordings/test_translation_async.test_use_supported_and_unsupported_files.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:48:15 GMT + - Thu, 06 May 2021 21:07:40 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc2bc505b-bb6d-4291-af09-7baa90ebc072?restype=container + uri: https://redacted.blob.core.windows.net/srcb61d0581-68e6-4bbb-8e6f-4ab816fbafef?restype=container response: body: string: '' @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:48:15 GMT + - Thu, 06 May 2021 21:07:41 GMT etag: - - '"0x8D8F54F7956132C"' + - '"0x8D910D2FCB4824D"' last-modified: - - Thu, 01 Apr 2021 20:48:15 GMT + - Thu, 06 May 2021 21:07:41 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -53,17 +53,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:48:16 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:07:42 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc2bc505b-bb6d-4291-af09-7baa90ebc072/4ea3aa67-27cf-46b8-abd0-5ad37cd2beff.txt + uri: https://redacted.blob.core.windows.net/srcb61d0581-68e6-4bbb-8e6f-4ab816fbafef/7f43f01d-3708-4c18-bf52-a9e1264230f8.txt response: body: string: '' @@ -73,11 +71,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:48:15 GMT + - Thu, 06 May 2021 21:07:41 GMT etag: - - '"0x8D8F54F79624D75"' + - '"0x8D910D2FCD95435"' last-modified: - - Thu, 01 Apr 2021 20:48:16 GMT + - Thu, 06 May 2021 21:07:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -105,17 +103,15 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 01 Apr 2021 20:48:16 GMT - x-ms-encryption-algorithm: - - AES256 + - Thu, 06 May 2021 21:07:42 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/srcc2bc505b-bb6d-4291-af09-7baa90ebc072/3098efa0-3697-4f64-bdeb-f50562649ac9.jpg + uri: https://redacted.blob.core.windows.net/srcb61d0581-68e6-4bbb-8e6f-4ab816fbafef/0c762e88-8ff7-46fc-8cc9-e67aa159fc6f.jpg response: body: string: '' @@ -125,11 +121,11 @@ interactions: content-md5: - mYgA0QpY6baiB+xZp8Hk+A== date: - - Thu, 01 Apr 2021 20:48:15 GMT + - Thu, 06 May 2021 21:07:41 GMT etag: - - '"0x8D8F54F796C3A5B"' + - '"0x8D910D2FCFDF9E1"' last-modified: - - Thu, 01 Apr 2021 20:48:16 GMT + - Thu, 06 May 2021 21:07:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-content-crc64: @@ -153,13 +149,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.8.0 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-storage-blob/12.8.1 Python/3.9.0 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 01 Apr 2021 20:48:16 GMT + - Thu, 06 May 2021 21:07:42 GMT x-ms-version: - '2020-06-12' method: PUT - uri: https://redacted.blob.core.windows.net/targetdcc7c343-f4b2-4973-a782-f052710fe106?restype=container + uri: https://redacted.blob.core.windows.net/target4f1ef638-0ffa-4a8f-8119-140e10a1901c?restype=container response: body: string: '' @@ -167,11 +163,11 @@ interactions: content-length: - '0' date: - - Thu, 01 Apr 2021 20:48:15 GMT + - Thu, 06 May 2021 21:07:42 GMT etag: - - '"0x8D8F54F799039B5"' + - '"0x8D910D2FD88CAD3"' last-modified: - - Thu, 01 Apr 2021 20:48:16 GMT + - Thu, 06 May 2021 21:07:43 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -180,8 +176,8 @@ interactions: code: 201 message: Created - request: - body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcc2bc505b-bb6d-4291-af09-7baa90ebc072?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", - "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/targetdcc7c343-f4b2-4973-a782-f052710fe106?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", + body: '{"inputs": [{"source": {"sourceUrl": "https://redacted.blob.core.windows.net/srcb61d0581-68e6-4bbb-8e6f-4ab816fbafef?se=end&sp=rl&sv=2020-06-12&sr=c&sig=fake_token_value", + "filter": {}}, "targets": [{"targetUrl": "https://redacted.blob.core.windows.net/target4f1ef638-0ffa-4a8f-8119-140e10a1901c?se=end&sp=rw&sv=2020-06-12&sr=c&sig=fake_token_value", "language": "es"}]}]}' headers: Accept: @@ -191,22 +187,22 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: POST uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches response: body: string: '' headers: - apim-request-id: 332fa61d-740a-40fb-a1d3-e680458579db + apim-request-id: 3ac00fa9-64a6-4a86-bf5c-bdc08a4113f4 content-length: '0' - date: Thu, 01 Apr 2021 20:48:16 GMT - operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:07:43 GMT + operation-location: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 332fa61d-740a-40fb-a1d3-e680458579db + x-requestid: 3ac00fa9-64a6-4a86-bf5c-bdc08a4113f4 status: code: 202 message: Accepted @@ -217,282 +213,226 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 response: body: - string: '{"id":"535249dc-a62a-43fa-8d22-70e312484d66","createdDateTimeUtc":"2021-04-01T20:48:16.6067954Z","lastActionDateTimeUtc":"2021-04-01T20:48:16.6067957Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"d0c0d338-0df2-44a8-8e1d-0e81e28562c8","createdDateTimeUtc":"2021-05-06T21:07:43.985445Z","lastActionDateTimeUtc":"2021-05-06T21:07:43.9854453Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: e7fb7004-12c0-4a77-9167-72179fe13161 + apim-request-id: d78828a4-9d5e-41e3-9a51-6608ca191460 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:16 GMT - etag: '"4D466ED686D6049E38EF4F01709684450CE1A381DA7937DF80005B5AC968F5B1"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:07:43 GMT + etag: '"ACCE4131640C610FB06072308EBECDE88A3185A6B74321987B0742134851792F"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: e7fb7004-12c0-4a77-9167-72179fe13161 + x-requestid: d78828a4-9d5e-41e3-9a51-6608ca191460 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 response: body: - string: '{"id":"535249dc-a62a-43fa-8d22-70e312484d66","createdDateTimeUtc":"2021-04-01T20:48:16.6067954Z","lastActionDateTimeUtc":"2021-04-01T20:48:16.7379054Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"d0c0d338-0df2-44a8-8e1d-0e81e28562c8","createdDateTimeUtc":"2021-05-06T21:07:43.985445Z","lastActionDateTimeUtc":"2021-05-06T21:07:43.9854453Z","status":"NotStarted","summary":{"total":0,"failed":0,"success":0,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 76c9c602-53c2-4d3f-a8f9-d52ea7bcefc7 + apim-request-id: 33e78865-1673-475f-834d-977d3669dce2 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:16 GMT - etag: '"A6187EB45008CDF9754FE3DE44F0F0282DB870BF354BFB34A350F52E639CBBD3"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:07:43 GMT + etag: '"ACCE4131640C610FB06072308EBECDE88A3185A6B74321987B0742134851792F"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 76c9c602-53c2-4d3f-a8f9-d52ea7bcefc7 + x-requestid: 33e78865-1673-475f-834d-977d3669dce2 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 response: body: - string: '{"id":"535249dc-a62a-43fa-8d22-70e312484d66","createdDateTimeUtc":"2021-04-01T20:48:16.6067954Z","lastActionDateTimeUtc":"2021-04-01T20:48:16.7379054Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"d0c0d338-0df2-44a8-8e1d-0e81e28562c8","createdDateTimeUtc":"2021-05-06T21:07:43.985445Z","lastActionDateTimeUtc":"2021-05-06T21:07:45.0310413Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 057491d5-0e0e-42e6-9deb-7a45dfec2572 + apim-request-id: 37cc22d0-e27d-49df-8691-ff19ead066d6 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:17 GMT - etag: '"A6187EB45008CDF9754FE3DE44F0F0282DB870BF354BFB34A350F52E639CBBD3"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:07:45 GMT + etag: '"6111D83988E3379C57BB4AFD3D104B7E3304BC1F1F1F1E14B1DE784302868A89"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 057491d5-0e0e-42e6-9deb-7a45dfec2572 + x-requestid: 37cc22d0-e27d-49df-8691-ff19ead066d6 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 response: body: - string: '{"id":"535249dc-a62a-43fa-8d22-70e312484d66","createdDateTimeUtc":"2021-04-01T20:48:16.6067954Z","lastActionDateTimeUtc":"2021-04-01T20:48:16.7379054Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"d0c0d338-0df2-44a8-8e1d-0e81e28562c8","createdDateTimeUtc":"2021-05-06T21:07:43.985445Z","lastActionDateTimeUtc":"2021-05-06T21:07:45.0310413Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: ba12c1ed-d31c-4065-ad31-0c574d44550a + apim-request-id: 4527bb1c-e0d9-4ed5-9ff2-7684092416f5 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:18 GMT - etag: '"A6187EB45008CDF9754FE3DE44F0F0282DB870BF354BFB34A350F52E639CBBD3"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:07:46 GMT + etag: '"6111D83988E3379C57BB4AFD3D104B7E3304BC1F1F1F1E14B1DE784302868A89"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: ba12c1ed-d31c-4065-ad31-0c574d44550a + x-requestid: 4527bb1c-e0d9-4ed5-9ff2-7684092416f5 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 response: body: - string: '{"id":"535249dc-a62a-43fa-8d22-70e312484d66","createdDateTimeUtc":"2021-04-01T20:48:16.6067954Z","lastActionDateTimeUtc":"2021-04-01T20:48:16.7379054Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"d0c0d338-0df2-44a8-8e1d-0e81e28562c8","createdDateTimeUtc":"2021-05-06T21:07:43.985445Z","lastActionDateTimeUtc":"2021-05-06T21:07:45.0310413Z","status":"NotStarted","summary":{"total":1,"failed":0,"success":0,"inProgress":0,"notYetStarted":1,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 26f3335d-901d-4a33-9826-980c84383d3e + apim-request-id: 482dad09-bcf2-40ec-8810-c4e5158b68f7 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:19 GMT - etag: '"A6187EB45008CDF9754FE3DE44F0F0282DB870BF354BFB34A350F52E639CBBD3"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:07:47 GMT + etag: '"6111D83988E3379C57BB4AFD3D104B7E3304BC1F1F1F1E14B1DE784302868A89"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 26f3335d-901d-4a33-9826-980c84383d3e + x-requestid: 482dad09-bcf2-40ec-8810-c4e5158b68f7 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 response: body: - string: '{"id":"535249dc-a62a-43fa-8d22-70e312484d66","createdDateTimeUtc":"2021-04-01T20:48:16.6067954Z","lastActionDateTimeUtc":"2021-04-01T20:48:20.8484074Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"d0c0d338-0df2-44a8-8e1d-0e81e28562c8","createdDateTimeUtc":"2021-05-06T21:07:43.985445Z","lastActionDateTimeUtc":"2021-05-06T21:07:48.075883Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: bfcf829b-699e-46f3-9bbb-d90d4f0ce0ff + apim-request-id: 6fa2fc30-6c72-41fc-aac1-c0f8c68e9545 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:20 GMT - etag: '"3282013A2AFB918D8003617468C916650D10400F3D3836FEF6B7BFB2670ED3FE"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:07:48 GMT + etag: '"603E602EB197698860E8AF5B7016E80E9E09C7A169DA9FB8167A307F807F1971"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: bfcf829b-699e-46f3-9bbb-d90d4f0ce0ff + x-requestid: 6fa2fc30-6c72-41fc-aac1-c0f8c68e9545 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 response: body: - string: '{"id":"535249dc-a62a-43fa-8d22-70e312484d66","createdDateTimeUtc":"2021-04-01T20:48:16.6067954Z","lastActionDateTimeUtc":"2021-04-01T20:48:20.8484074Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"d0c0d338-0df2-44a8-8e1d-0e81e28562c8","createdDateTimeUtc":"2021-05-06T21:07:43.985445Z","lastActionDateTimeUtc":"2021-05-06T21:07:48.075883Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' headers: - apim-request-id: 956358ea-a393-4349-a87c-8c61b558029c + apim-request-id: 69deb104-70bf-46ed-8dcd-3e7b968aa164 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:21 GMT - etag: '"3282013A2AFB918D8003617468C916650D10400F3D3836FEF6B7BFB2670ED3FE"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:07:49 GMT + etag: '"603E602EB197698860E8AF5B7016E80E9E09C7A169DA9FB8167A307F807F1971"' + set-cookie: ARRAffinitySameSite=b85bad1b8326b1376e60e99b410c1da9c99b2e137606973a71315f97deb3a0ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: 956358ea-a393-4349-a87c-8c61b558029c + x-requestid: 69deb104-70bf-46ed-8dcd-3e7b968aa164 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 - request: body: null headers: User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-ai-translation-document/1.0.0b2 Python/3.9.0 (Windows-10-10.0.19041-SP0) method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 response: body: - string: '{"id":"535249dc-a62a-43fa-8d22-70e312484d66","createdDateTimeUtc":"2021-04-01T20:48:16.6067954Z","lastActionDateTimeUtc":"2021-04-01T20:48:20.8484074Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' + string: '{"id":"d0c0d338-0df2-44a8-8e1d-0e81e28562c8","createdDateTimeUtc":"2021-05-06T21:07:43.985445Z","lastActionDateTimeUtc":"2021-05-06T21:07:48.075883Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' headers: - apim-request-id: b9167b3c-afd0-472c-9cc1-3237eb6e711b + apim-request-id: 7fa98933-c924-486c-a112-a633c70527f3 cache-control: public,max-age=1 content-encoding: gzip content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:22 GMT - etag: '"3282013A2AFB918D8003617468C916650D10400F3D3836FEF6B7BFB2670ED3FE"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com + date: Thu, 06 May 2021 21:07:50 GMT + etag: '"F6DCDBBDC984D6C4EC05F032B888ADA6408EEE727FE3F9FAE00EA616CE3C6183"' + set-cookie: ARRAffinitySameSite=52534756bc24481c0848ee2def3c54a057fd0e51707d9dcf782aa603bbaa9f24;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.northeu.microsofttranslator.com strict-transport-security: max-age=31536000; includeSubDomains; preload transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff x-powered-by: ASP.NET - x-requestid: b9167b3c-afd0-472c-9cc1-3237eb6e711b + x-requestid: 7fa98933-c924-486c-a112-a633c70527f3 status: code: 200 message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 - response: - body: - string: '{"id":"535249dc-a62a-43fa-8d22-70e312484d66","createdDateTimeUtc":"2021-04-01T20:48:16.6067954Z","lastActionDateTimeUtc":"2021-04-01T20:48:20.8484074Z","status":"Running","summary":{"total":1,"failed":0,"success":0,"inProgress":1,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":0}}' - headers: - apim-request-id: fde383d7-75da-4e28-b7ca-78e1859d9d38 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:23 GMT - etag: '"3282013A2AFB918D8003617468C916650D10400F3D3836FEF6B7BFB2670ED3FE"' - set-cookie: ARRAffinitySameSite=5dd610bbbfcdcce1e8b7e036dad4b7c92b91df5adc2f4b536e67d2a5eff0940e;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: fde383d7-75da-4e28-b7ca-78e1859d9d38 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 -- request: - body: null - headers: - User-Agent: - - azsdk-python-ai-translatortext/1.0.0b1 Python/3.9.0 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://redacted.cognitiveservices.azure.com/translator/text/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 - response: - body: - string: '{"id":"535249dc-a62a-43fa-8d22-70e312484d66","createdDateTimeUtc":"2021-04-01T20:48:16.6067954Z","lastActionDateTimeUtc":"2021-04-01T20:48:24.7917458Z","status":"Succeeded","summary":{"total":1,"failed":0,"success":1,"inProgress":0,"notYetStarted":0,"cancelled":0,"totalCharacterCharged":27}}' - headers: - apim-request-id: 6038b37d-d532-4629-a071-aa5578895834 - cache-control: public,max-age=1 - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Thu, 01 Apr 2021 20:48:24 GMT - etag: '"9EF6546D280221F19138BC115C676D5187F055F85EB39D5CC8CBDB5E5C6A57CD"' - set-cookie: ARRAffinitySameSite=19727efd86700e5294e01d3d9816fda18b4016b330aceb2a79043575a77e402c;Path=/;HttpOnly;SameSite=None;Secure;Domain=doctrans.westus.microsofttranslator.com - strict-transport-security: max-age=31536000; includeSubDomains; preload - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-powered-by: ASP.NET - x-requestid: 6038b37d-d532-4629-a071-aa5578895834 - status: - code: 200 - message: OK - url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/535249dc-a62a-43fa-8d22-70e312484d66 + url: https://redacted.cognitiveservices.azure.com/translatortext/batch/v1.0-preview.1/batches/d0c0d338-0df2-44a8-8e1d-0e81e28562c8 version: 1 diff --git a/sdk/translation/azure-ai-translation-document/tests/test_all_document_statuses.py b/sdk/translation/azure-ai-translation-document/tests/test_all_document_statuses.py index 49f2ac5c1a40..7dc0d8ef94a2 100644 --- a/sdk/translation/azure-ai-translation-document/tests/test_all_document_statuses.py +++ b/sdk/translation/azure-ai-translation-document/tests/test_all_document_statuses.py @@ -4,126 +4,206 @@ # Licensed under the MIT License. # ------------------------------------ +from datetime import datetime import functools -from testcase import Document from testcase import DocumentTranslationTest from preparer import DocumentTranslationPreparer, DocumentTranslationClientPreparer as _DocumentTranslationClientPreparer -from azure.ai.translation.document import DocumentTranslationClient, DocumentTranslationInput, TranslationTarget +from azure.ai.translation.document import DocumentTranslationClient import pytest + DocumentTranslationClientPreparer = functools.partial(_DocumentTranslationClientPreparer, DocumentTranslationClient) class TestAllDocumentStatuses(DocumentTranslationTest): + @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() - def test_list_statuses(self, client): - # prepare containers and test data - blob_data = [Document(data=b'This is some text')] - source_container_sas_url = self.create_source_container(data=blob_data) - target_container_sas_url = self.create_target_container() + def test_list_document_statuses(self, client): + docs_count = 5 target_language = "es" - # prepare translation inputs - translation_inputs = [ - DocumentTranslationInput( - source_url=source_container_sas_url, - targets=[ - TranslationTarget( - target_url=target_container_sas_url, - language_code=target_language - ) - ] - ) - ] - # submit and validate job - job_id = self._submit_and_validate_translation_job(client, translation_inputs, len(blob_data)) + job_id = self._create_translation_job_with_dummy_docs(client, docs_count, language_code=target_language, wait=True) - # check doc statuses + # list docs statuses doc_statuses = list(client.list_all_document_statuses(job_id)) # convert from generic iterator to list - self.assertEqual(len(doc_statuses), len(blob_data)) + self.assertEqual(len(doc_statuses), docs_count) for document in doc_statuses: self._validate_doc_status(document, target_language) - - @pytest.mark.skip("top not exposed yet") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() - def test_list_statuses_with_pagination(self, client): - # prepare containers and test data - blob_text = b'blob text' - blob_data = [Document(data=blob_text), Document(data=blob_text), Document(data=blob_text), - Document(data=blob_text), Document(data=blob_text), Document(data=blob_text)] - source_container_sas_url = self.create_source_container(data=blob_data) - target_container_sas_url = self.create_target_container() - result_per_page = 2 - no_of_pages = len(blob_data) // result_per_page + def test_list_document_statuses_with_pagination(self, client): + docs_count = 10 + results_per_page = 2 + no_of_pages = docs_count // results_per_page target_language = "es" - # prepare translation inputs - translation_inputs = [ - DocumentTranslationInput( - source_url=source_container_sas_url, - targets=[ - TranslationTarget( - target_url=target_container_sas_url, - language_code=target_language - ) - ] - ) - ] - # submit and validate job - job_id = self._submit_and_validate_translation_job(client, translation_inputs, len(blob_data)) + job_id = self._create_translation_job_with_dummy_docs(client, docs_count, language_code=target_language, wait=True) # check doc statuses - doc_statuses_pages = list(client.list_all_document_statuses(job_id=job_id, results_per_page=result_per_page)) + doc_statuses_pages = list(client.list_all_document_statuses(job_id=job_id, results_per_page=results_per_page).by_page()) self.assertEqual(len(doc_statuses_pages), no_of_pages) # iterate by page for page in doc_statuses_pages: page_items = list(page) - self.assertEqual(len(page_items), result_per_page) - for document in page: + self.assertLessEqual(len(page_items), results_per_page) + for document in page_items: self._validate_doc_status(document, target_language) - @pytest.mark.skip("skip not exposed yet") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() - def test_list_statuses_with_skip(self, client): - # prepare containers and test data - blob_text = b'blob text' - blob_data = [Document(data=blob_text), Document(data=blob_text), Document(data=blob_text), - Document(data=blob_text), Document(data=blob_text), Document(data=blob_text)] - source_container_sas_url = self.create_source_container(data=blob_data) - target_container_sas_url = self.create_target_container() - docs_len = len(blob_data) + def test_list_document_statuses_with_skip(self, client): + docs_count = 10 skip = 2 target_language = "es" - # prepare translation inputs - translation_inputs = [ - DocumentTranslationInput( - source_url=source_container_sas_url, - targets=[ - TranslationTarget( - target_url=target_container_sas_url, - language_code=target_language - ) - ] - ) - ] - # submit and validate job - job_id = self._submit_and_validate_translation_job(client, translation_inputs, len(blob_data)) + job_id = self._create_translation_job_with_dummy_docs(client, docs_count, language_code=target_language, wait=True) # check doc statuses doc_statuses = list(client.list_all_document_statuses(job_id=job_id, skip=skip)) - self.assertEqual(len(doc_statuses), docs_len - skip) + self.assertEqual(len(doc_statuses), docs_count - skip) # iterate over docs for document in doc_statuses: - self._validate_doc_status(document, target_language) \ No newline at end of file + self._validate_doc_status(document, target_language) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_document_statuses_filter_by_status(self, client): + docs_count = 10 + target_language = "es" + + # submit and validate job + job_id = self._create_translation_job_with_dummy_docs(client, docs_count, language_code=target_language, wait=True) + + # list jobs + statuses = ["NotStarted"] + doc_statuses = list(client.list_all_document_statuses(job_id, statuses=statuses)) + assert(len(doc_statuses) == 0) + + statuses = ["Succeeded"] + doc_statuses = list(client.list_all_document_statuses(job_id, statuses=statuses)) + assert(len(doc_statuses) == docs_count) + + statuses = ["Failed"] + doc_statuses = list(client.list_all_document_statuses(job_id, statuses=statuses)) + assert(len(doc_statuses) == 0) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_document_statuses_filter_by_ids(self, client): + docs_count = 5 + target_language = "es" + + # submit and validate job + job_id = self._create_translation_job_with_dummy_docs(client, docs_count, language_code=target_language, wait=True) + + # filter ids + doc_statuses = list(client.list_all_document_statuses(job_id)) # convert from generic iterator to list + self.assertEqual(len(doc_statuses), docs_count) + ids = [doc.id for doc in doc_statuses] + ids = ids[:docs_count//2] + + # do the testing + doc_statuses = list(client.list_all_document_statuses(job_id, document_ids=ids)) + self.assertEqual(len(doc_statuses), len(ids)) + for document in doc_statuses: + self._validate_doc_status(document, target_language, ids=ids) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_document_statuses_order_by_creation_time_asc(self, client): + docs_count = 5 + target_language = "es" + + # submit and validate job + job_id = self._create_translation_job_with_dummy_docs(client, docs_count, language_code=target_language, wait=True) + + # check doc statuses + doc_statuses = list(client.list_all_document_statuses(job_id, order_by=["createdDateTimeUtc asc"])) # convert from generic iterator to list + self.assertEqual(len(doc_statuses), docs_count) + + curr = datetime.min + for document in doc_statuses: + assert(document.created_on.replace(tzinfo=None) >= curr.replace(tzinfo=None)) + curr = document.created_on + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_document_statuses_order_by_creation_time_desc(self, client): + docs_count = 5 + target_language = "es" + + # submit and validate job + job_id = self._create_translation_job_with_dummy_docs(client, docs_count, language_code=target_language, wait=True) + + # check doc statuses + doc_statuses = list(client.list_all_document_statuses(job_id, order_by=["createdDateTimeUtc desc"])) # convert from generic iterator to list + self.assertEqual(len(doc_statuses), docs_count) + + curr = datetime.max + for document in doc_statuses: + assert(document.created_on.replace(tzinfo=None) <= curr.replace(tzinfo=None)) + curr = document.created_on + + + @pytest.mark.skip(reason="not working! - list returned is empty") + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_document_statuses_mixed_filters(self, client): + docs_count = 25 + target_language = "es" + skip = 3 + results_per_page = 2 + statuses = ["Succeeded"] + + # submit and validate job + job_id = self._create_translation_job_with_dummy_docs(client, docs_count, language_code=target_language, wait=True) + + # get ids + doc_statuses = list(client.list_all_document_statuses(job_id)) # convert from generic iterator to list + self.assertEqual(len(doc_statuses), docs_count) + ids = [doc.id for doc in doc_statuses] + ids = ids[:docs_count//2] + + # list jobs + filtered_docs = client.list_all_document_statuses( + job_id, + # filters + document_ids=ids, + statuses=statuses, + # ordering + order_by=["createdDateTimeUtc asc"], + # paging + skip=skip, + results_per_page=results_per_page + ).by_page() + self.assertIsNotNone(filtered_docs) + + # check statuses + counter = 0 + curr_time = datetime.min + for page in filtered_docs: + page_docs = list(page) + self.assertLessEqual(len(page_docs), results_per_page) # assert paging + for doc in page_docs: + counter += 1 + # assert ordering + assert(doc.created_on.replace(tzinfo=None) >= curr_time.replace(tzinfo=None)) + curr_time = doc.created_on + # assert filters + self.assertIn(doc.status, statuses) + self.assertIn(doc.id, ids) + + assert(counter == len(ids) - skip) diff --git a/sdk/translation/azure-ai-translation-document/tests/test_all_document_statuses_async.py b/sdk/translation/azure-ai-translation-document/tests/test_all_document_statuses_async.py index e16c93c9b2c3..1d564f12f029 100644 --- a/sdk/translation/azure-ai-translation-document/tests/test_all_document_statuses_async.py +++ b/sdk/translation/azure-ai-translation-document/tests/test_all_document_statuses_async.py @@ -4,42 +4,27 @@ # Licensed under the MIT License. # ------------------------------------ +from datetime import datetime import functools -from testcase import Document from asynctestcase import AsyncDocumentTranslationTest from preparer import DocumentTranslationPreparer, DocumentTranslationClientPreparer as _DocumentTranslationClientPreparer -from azure.ai.translation.document import DocumentTranslationInput, TranslationTarget from azure.ai.translation.document.aio import DocumentTranslationClient import pytest + DocumentTranslationClientPreparer = functools.partial(_DocumentTranslationClientPreparer, DocumentTranslationClient) class TestAllDocumentStatuses(AsyncDocumentTranslationTest): + @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() - async def test_list_statuses(self, client): - # prepare containers and test data - blob_data = [Document(data=b'This is some text')] - source_container_sas_url = self.create_source_container(data=blob_data) - target_container_sas_url = self.create_target_container() + async def test_list_document_statuses(self, client): + docs_count = 5 target_language = "es" - # prepare translation inputs - translation_inputs = [ - DocumentTranslationInput( - source_url=source_container_sas_url, - targets=[ - TranslationTarget( - target_url=target_container_sas_url, - language_code=target_language - ) - ] - ) - ] - # submit and validate job - job_id = await self._submit_and_validate_translation_job_async(client, translation_inputs, len(blob_data)) + job_id = await self._create_translation_job_with_dummy_docs_async(client, docs_count, language_code=target_language, wait=True) # check doc statuses doc_statuses = client.list_all_document_statuses(job_id) @@ -49,42 +34,22 @@ async def test_list_statuses(self, client): doc_statuses_list.append(document) self._validate_doc_status(document, target_language) - self.assertEqual(len(doc_statuses_list), len(blob_data)) - + self.assertEqual(len(doc_statuses_list), docs_count) - @pytest.mark.skip("top not exposed yet") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() - async def test_list_statuses_with_pagination(self, client): - # prepare containers and test data - blob_text = b'blob text' - blob_data = [Document(data=blob_text), Document(data=blob_text), Document(data=blob_text), - Document(data=blob_text), Document(data=blob_text), Document(data=blob_text)] - source_container_sas_url = self.create_source_container(data=blob_data) - target_container_sas_url = self.create_target_container() - result_per_page = 2 - no_of_pages = len(blob_data) // result_per_page + async def test_list_document_statuses_with_pagination(self, client): + docs_count = 7 + results_per_page = 2 + no_of_pages = docs_count // results_per_page + 1 target_language = "es" - # prepare translation inputs - translation_inputs = [ - DocumentTranslationInput( - source_url=source_container_sas_url, - targets=[ - TranslationTarget( - target_url=target_container_sas_url, - language_code=target_language - ) - ] - ) - ] - # submit and validate job - job_id = await self._submit_and_validate_translation_job_async(client, translation_inputs, len(blob_data)) + job_id = await self._create_translation_job_with_dummy_docs_async(client, docs_count, language_code=target_language, wait=True) # check doc statuses - doc_statuses_pages = client.list_all_document_statuses(job_id=job_id, results_per_page=result_per_page) + doc_statuses_pages = client.list_all_document_statuses(job_id=job_id, results_per_page=results_per_page).by_page() pages_list = [] # iterate by page @@ -94,41 +59,20 @@ async def test_list_statuses_with_pagination(self, client): async for document in page: page_docs_list.append(document) self._validate_doc_status(document, target_language) - self.assertEqual(len(page_docs_list), result_per_page) + self.assertLessEqual(len(page_docs_list), results_per_page) self.assertEqual(len(pages_list), no_of_pages) - - @pytest.mark.skip("skip not exposed yet") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() - async def test_list_statuses_with_skip(self, client): - # prepare containers and test data - blob_text = b'blob text' - blob_data = [Document(data=blob_text), Document(data=blob_text), Document(data=blob_text), - Document(data=blob_text), Document(data=blob_text), Document(data=blob_text)] - source_container_sas_url = self.create_source_container(data=blob_data) - target_container_sas_url = self.create_target_container() - docs_len = len(blob_data) + async def test_list_document_statuses_with_skip(self, client): + docs_count = 5 skip = 2 target_language = "es" - # prepare translation inputs - translation_inputs = [ - DocumentTranslationInput( - source_url=source_container_sas_url, - targets=[ - TranslationTarget( - target_url=target_container_sas_url, - language_code=target_language - ) - ] - ) - ] - # submit and validate job - job_id = await self._submit_and_validate_translation_job_async(client, translation_inputs, len(blob_data)) + job_id = await self._create_translation_job_with_dummy_docs_async(client, docs_count, language_code=target_language, wait=True) # check doc statuses doc_statuses = client.list_all_document_statuses(job_id=job_id, skip=skip) @@ -139,4 +83,158 @@ async def test_list_statuses_with_skip(self, client): doc_statuses_list.append(document) self._validate_doc_status(document, target_language) - self.assertEqual(len(doc_statuses_list), docs_len - skip) + self.assertEqual(len(doc_statuses_list), docs_count - skip) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_document_statuses_filter_by_status(self, client): + docs_count = 10 + target_language = "es" + + # submit and validate job + job_id = await self._create_translation_job_with_dummy_docs_async(client, docs_count, language_code=target_language, wait=True) + + # list jobs + statuses = ["NotStarted"] + doc_statuses = client.list_all_document_statuses(job_id, statuses=statuses) + counter = 0 + async for doc in doc_statuses: + counter += 1 + assert(counter == 0) + + statuses = ["Succeeded"] + doc_statuses = client.list_all_document_statuses(job_id, statuses=statuses) + counter = 0 + async for doc in doc_statuses: + counter += 1 + assert(counter == docs_count) + + statuses = ["Failed"] + doc_statuses = client.list_all_document_statuses(job_id, statuses=statuses) + counter = 0 + async for doc in doc_statuses: + counter += 1 + assert(counter == 0) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_document_statuses_filter_by_ids(self, client): + docs_count = 15 + target_language = "es" + + # submit and validate job + job_id = await self._create_translation_job_with_dummy_docs_async(client, docs_count, language_code=target_language, wait=True) + + # filter ids + doc_statuses = client.list_all_document_statuses(job_id) + ids = [document.id async for document in doc_statuses] + self.assertEqual(len(ids), docs_count) + ids = ids[:docs_count//2] + + # do the testing + doc_statuses = client.list_all_document_statuses(job_id, document_ids=ids) + counter = 0 + async for document in doc_statuses: + counter += 1 + self._validate_doc_status(document, target_language, ids=ids) + + assert(counter == len(ids)) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_document_statuses_order_by_creation_time_asc(self, client): + docs_count = 5 + target_language = "es" + + # submit and validate job + job_id = await self._create_translation_job_with_dummy_docs_async(client, docs_count, language_code=target_language, wait=True) + + # check doc statuses + doc_statuses = client.list_all_document_statuses(job_id, order_by=["createdDateTimeUtc asc"]) + + curr = datetime.min + docs = [] + async for document in doc_statuses: + docs.append(document) + assert(document.created_on.replace(tzinfo=None) >= curr.replace(tzinfo=None)) + curr = document.created_on + + self.assertEqual(len(docs), docs_count) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_document_statuses_order_by_creation_time_desc(self, client): + docs_count = 5 + target_language = "es" + + # submit and validate job + job_id = await self._create_translation_job_with_dummy_docs_async(client, docs_count, language_code=target_language, wait=True) + + # check doc statuses + doc_statuses = client.list_all_document_statuses(job_id, order_by=["createdDateTimeUtc desc"]) + + curr = datetime.max + docs = [] + async for document in doc_statuses: + docs.append(document) + assert(document.created_on.replace(tzinfo=None) <= curr.replace(tzinfo=None)) + curr = document.created_on + + self.assertEqual(len(docs), docs_count) + + + @pytest.mark.skip(reason="not working! - list returned is empty") + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_document_statuses_mixed_filters(self, client): + docs_count = 25 + target_language = "es" + results_per_page = 2 + statuses = ["Succeeded"] + skip = 3 + + # submit and validate job + job_id = await self._create_translation_job_with_dummy_docs_async(client, docs_count, language_code=target_language, wait=True) + + # get ids + doc_statuses = client.list_all_document_statuses(job_id) + ids = [document.id async for document in doc_statuses] + self.assertEqual(len(ids), docs_count) + ids = ids[:docs_count//2] + + # list jobs + filtered_docs = client.list_all_document_statuses( + job_id, + # filters + document_ids=ids, + statuses=statuses, + # ordering + order_by=["createdDateTimeUtc asc"], + # paging + skip=skip, + results_per_page=results_per_page + ).by_page() + + # check statuses + counter = 0 + curr_time = datetime.min + async for page in filtered_docs: + page_docs = [] + async for doc in page: + counter += 1 + page_docs.append(doc) + # assert ordering + assert(doc.created_on.replace(tzinfo=None) >= curr_time.replace(tzinfo=None)) + curr_time = doc.created_on + # assert filters + self.assertIn(doc.status, statuses) + self.assertIn(doc.id, ids) + + self.assertLessEqual(len(page_docs), results_per_page) # assert paging + + assert(counter == len(ids) - skip) + diff --git a/sdk/translation/azure-ai-translation-document/tests/test_list_submitted_jobs.py b/sdk/translation/azure-ai-translation-document/tests/test_list_submitted_jobs.py index ed6c926903a5..2a01c48bf027 100644 --- a/sdk/translation/azure-ai-translation-document/tests/test_list_submitted_jobs.py +++ b/sdk/translation/azure-ai-translation-document/tests/test_list_submitted_jobs.py @@ -4,14 +4,15 @@ # Licensed under the MIT License. # ------------------------------------ +from datetime import datetime, date import functools from testcase import DocumentTranslationTest from preparer import DocumentTranslationPreparer, DocumentTranslationClientPreparer as _DocumentTranslationClientPreparer from azure.ai.translation.document import DocumentTranslationClient import pytest -DocumentTranslationClientPreparer = functools.partial(_DocumentTranslationClientPreparer, DocumentTranslationClient) +import pytz -TOTAL_DOC_COUNT_IN_JOB = 1 +DocumentTranslationClientPreparer = functools.partial(_DocumentTranslationClientPreparer, DocumentTranslationClient) class TestSubmittedJobs(DocumentTranslationTest): @@ -19,7 +20,9 @@ class TestSubmittedJobs(DocumentTranslationTest): @DocumentTranslationClientPreparer() def test_list_submitted_jobs(self, client): # create some jobs - job_ids = self._create_and_submit_sample_translation_jobs(client, 3) + jobs_count = 5 + docs_per_job = 5 + self._create_and_submit_sample_translation_jobs(client, jobs_count, docs_per_job=docs_per_job, wait=False) # list jobs submitted_jobs = list(client.list_submitted_jobs()) @@ -27,54 +30,226 @@ def test_list_submitted_jobs(self, client): # check statuses for job in submitted_jobs: - if job.id in job_ids: - self._validate_translation_job(job, status="Succeeded", total=TOTAL_DOC_COUNT_IN_JOB, succeeded=TOTAL_DOC_COUNT_IN_JOB) - else: - self._validate_translation_job(job) + self._validate_translation_job(job) - @pytest.mark.skip("top not exposed yet") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() def test_list_submitted_jobs_with_pagination(self, client): # prepare data - result_per_page = 2 + jobs_count = 5 + docs_per_job = 2 + results_per_page = 2 # create some jobs - job_ids = self._create_and_submit_sample_translation_jobs(client, 6) + self._create_and_submit_sample_translation_jobs(client, jobs_count, docs_per_job=docs_per_job, wait=False) # list jobs - submitted_jobs_pages = list(client.list_submitted_jobs(results_per_page=result_per_page)) + submitted_jobs_pages = client.list_submitted_jobs(results_per_page=results_per_page).by_page() self.assertIsNotNone(submitted_jobs_pages) # iterate by page for page in submitted_jobs_pages: page_jobs = list(page) - self.assertEqual(len(page_jobs), result_per_page) - for job in page: - if job.id in job_ids: - self._validate_translation_job(job, status="Succeeded", total=TOTAL_DOC_COUNT_IN_JOB, succeeded=TOTAL_DOC_COUNT_IN_JOB) - else: - self._validate_translation_job(job) + self.assertLessEqual(len(page_jobs), results_per_page) + for job in page_jobs: + self._validate_translation_job(job) - @pytest.mark.skip("skip not exposed yet") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() def test_list_submitted_jobs_with_skip(self, client): # prepare data - jobs_count = 6 - skip = 2 + jobs_count = 10 + docs_per_job = 2 + skip = 5 + + # create some jobs + self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=False, docs_per_job=docs_per_job) + + # assert + all_jobs = list(client.list_submitted_jobs()) + jobs_with_skip = list(client.list_submitted_jobs(skip=skip)) + assert len(all_jobs) - len(jobs_with_skip) == skip + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_submitted_jobs_filter_by_status(self, client): + jobs_count = 5 + docs_per_job = 1 + + # create some jobs with the status 'Succeeded' + completed_job_ids = self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=True, docs_per_job=docs_per_job) + + # create some jobs with the status 'Cancelled' + job_ids = self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=False, docs_per_job=docs_per_job) + for id in job_ids: + client.cancel_job(id) + self.wait(10) # wait for cancelled to propagate + + # list jobs with status filter + statuses = ["Cancelled"] + submitted_jobs = list(client.list_submitted_jobs(statuses=statuses)) + + # check statuses + for job in submitted_jobs: + self.assertIn(job.status, statuses) + self.assertNotIn(job.id, completed_job_ids) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_submitted_jobs_filter_by_ids(self, client): + jobs_count = 3 + docs_per_job = 2 + + # create some jobs + job_ids = self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=False, docs_per_job=docs_per_job) + + # list jobs + submitted_jobs = list(client.list_submitted_jobs(job_ids=job_ids)) + self.assertIsNotNone(submitted_jobs) + + # check statuses + for job in submitted_jobs: + self.assertIn(job.id, job_ids) + + + @pytest.mark.live_test_only + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_submitted_jobs_filter_by_created_after(self, client): + # create some jobs + jobs_count = 3 + docs_per_job = 2 + + # create some jobs + start = datetime.now() + job_ids = self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=False, docs_per_job=docs_per_job) + + # list jobs + submitted_jobs = list(client.list_submitted_jobs(created_after=start)) + self.assertIsNotNone(submitted_jobs) + + # check statuses + for job in submitted_jobs: + self.assertIn(job.id, job_ids) + assert(job.created_on.replace(tzinfo=None) >= start.replace(tzinfo=None)) + + + @pytest.mark.live_test_only + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_submitted_jobs_filter_by_created_before(self, client): + ''' + NOTE: test is dependent on 'end' to be specific/same as time zone of the service! + 'end' must be timezone-aware! + ''' + jobs_count = 5 + docs_per_job = 1 + + # create some jobs + self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=True, docs_per_job=docs_per_job) + end = datetime.utcnow().replace(tzinfo=pytz.utc) + job_ids = self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=True, docs_per_job=docs_per_job) + + # list jobs + submitted_jobs = list(client.list_submitted_jobs(created_before=end)) + self.assertIsNotNone(submitted_jobs) + + # check statuses + for job in submitted_jobs: + self.assertLessEqual(job.created_on.replace(tzinfo=None), end.replace(tzinfo=None)) + self.assertNotIn(job.id, job_ids) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_submitted_jobs_order_by_creation_time_asc(self, client): + jobs_count = 3 + docs_per_job = 2 # create some jobs - job_ids = self._create_and_submit_sample_translation_jobs(client, jobs_count) + self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=False, docs_per_job=docs_per_job) - # list jobs - unable to assert skip!! - submitted_jobs = list(client.list_submitted_jobs(skip=skip)) + # list jobs + submitted_jobs = list(client.list_submitted_jobs(order_by=["createdDateTimeUtc asc"])) self.assertIsNotNone(submitted_jobs) + # check statuses + curr = datetime.min for job in submitted_jobs: - if job.id in job_ids: - self._validate_translation_job(job, status="Succeeded", total=TOTAL_DOC_COUNT_IN_JOB, succeeded=TOTAL_DOC_COUNT_IN_JOB) - else: - self._validate_translation_job(job) \ No newline at end of file + assert(job.created_on.replace(tzinfo=None) >= curr.replace(tzinfo=None)) + curr = job.created_on + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_submitted_jobs_order_by_creation_time_desc(self, client): + jobs_count = 3 + docs_per_job = 2 + + # create some jobs + self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=False, docs_per_job=docs_per_job) + + # list jobs + submitted_jobs = list(client.list_submitted_jobs(order_by=["createdDateTimeUtc desc"])) + self.assertIsNotNone(submitted_jobs) + + # check statuses + curr = datetime.max + for job in submitted_jobs: + assert(job.created_on.replace(tzinfo=None) <= curr.replace(tzinfo=None)) + curr = job.created_on + + + @pytest.mark.skip(reason="not working! - list returned is empty") + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + def test_list_submitted_jobs_mixed_filters(self, client): + # create some jobs + jobs_count = 10 + docs_per_job = 1 + results_per_page = 2 + statuses = ["Cancelled"] + skip = 2 + + # create some jobs + start = datetime.utcnow().replace(tzinfo=pytz.utc) + successful_job_ids = self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=True, docs_per_job=docs_per_job) + cancelled_job_ids = self._create_and_submit_sample_translation_jobs(client, jobs_count, wait=False, docs_per_job=docs_per_job) + for job_id in cancelled_job_ids: + client.cancel_job(job_id) + self.wait(10) # wait for status to propagate + end = datetime.utcnow().replace(tzinfo=pytz.utc) + + # list jobs + submitted_jobs = client.list_submitted_jobs( + # filters + statuses=statuses, + created_after=start, + created_before=end, + # ordering + order_by=["createdDateTimeUtc asc"], + # paging + skip=skip, + results_per_page=results_per_page + ).by_page() + + # check statuses + curr_time = datetime.min + for page in submitted_jobs: + page_jobs = list(page) + self.assertLessEqual(len(page_jobs), results_per_page) # assert paging + for job in page_jobs: + assert id + self.assertIn(job.id, cancelled_job_ids) + self.assertNotIn(job.id, successful_job_ids) + # assert ordering + assert(job.created_on.replace(tzinfo=None) >= curr_time.replace(tzinfo=None)) + curr_time = job.created_on + # assert filters + assert(job.created_on.replace(tzinfo=None) <= end.replace(tzinfo=None)) + assert(job.created_on.replace(tzinfo=None) >= start.replace(tzinfo=None)) + self.assertIn(job.status, statuses) \ No newline at end of file diff --git a/sdk/translation/azure-ai-translation-document/tests/test_list_submitted_jobs_async.py b/sdk/translation/azure-ai-translation-document/tests/test_list_submitted_jobs_async.py index ac306c94d8d9..215ac2a30491 100644 --- a/sdk/translation/azure-ai-translation-document/tests/test_list_submitted_jobs_async.py +++ b/sdk/translation/azure-ai-translation-document/tests/test_list_submitted_jobs_async.py @@ -4,91 +4,266 @@ # Licensed under the MIT License. # ------------------------------------ +from datetime import datetime, date import functools from asynctestcase import AsyncDocumentTranslationTest from preparer import DocumentTranslationPreparer, DocumentTranslationClientPreparer as _DocumentTranslationClientPreparer from azure.ai.translation.document.aio import DocumentTranslationClient -import pytest DocumentTranslationClientPreparer = functools.partial(_DocumentTranslationClientPreparer, DocumentTranslationClient) +import pytest +import pytz TOTAL_DOC_COUNT_IN_JOB = 1 class TestSubmittedJobs(AsyncDocumentTranslationTest): + @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() async def test_list_submitted_jobs(self, client): - # prepare data - jobs_count = 3 - # create some jobs - job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count) + jobs_count = 5 + docs_per_job = 5 + await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, docs_per_job=docs_per_job, wait=False) # list jobs submitted_jobs = client.list_submitted_jobs() self.assertIsNotNone(submitted_jobs) # check statuses - jobs_list = [] async for job in submitted_jobs: - jobs_list.append(job) - if job.id in job_ids: - self._validate_translation_job(job, status="Succeeded", total=TOTAL_DOC_COUNT_IN_JOB, succeeded=TOTAL_DOC_COUNT_IN_JOB) - else: - self._validate_translation_job(job) + self._validate_translation_job(job) - @pytest.mark.skip("top not exposed yet") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() async def test_list_submitted_jobs_with_pagination(self, client): # prepare data - jobs_count = 6 - result_per_page = 2 - no_of_pages = jobs_count // result_per_page + jobs_count = 5 + docs_per_job = 2 + results_per_page = 2 # create some jobs - job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count) + await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, docs_per_job=docs_per_job, wait=False) # list jobs - submitted_jobs_pages = client.list_submitted_jobs(results_per_page=result_per_page) - pages_list = [] + submitted_jobs_pages = client.list_submitted_jobs(results_per_page=results_per_page).by_page() + self.assertIsNotNone(submitted_jobs_pages) # iterate by page async for page in submitted_jobs_pages: - pages_list.append() page_jobs = [] - async for job in page: page_jobs.append(job) - if job.id in job_ids: - self._validate_translation_job(job, status="Succeeded", total=TOTAL_DOC_COUNT_IN_JOB, succeeded=TOTAL_DOC_COUNT_IN_JOB) - else: - self._validate_translation_job(job) + self._validate_translation_job(job) - self.assertEqual(len(page_jobs), result_per_page) + self.assertLessEqual(len(page_jobs), results_per_page) - @pytest.mark.skip("skip not exposed yet") @DocumentTranslationPreparer() @DocumentTranslationClientPreparer() async def test_list_submitted_jobs_with_skip(self, client): # prepare data - jobs_count = 6 - skip = 2 + jobs_count = 10 + docs_per_job = 2 + skip = 5 # create some jobs - job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count) + await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) + + # list jobs - unable to assert skip!! + all_jobs = client.list_submitted_jobs() + all_jobs_count = 0 + async for job in all_jobs: + all_jobs_count += 1 + + jobs_with_skip = client.list_submitted_jobs(skip=skip) + jobs_with_skip_count = 0 + async for job in jobs_with_skip: + jobs_with_skip_count += 1 + + assert all_jobs_count - jobs_with_skip_count == skip + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_submitted_jobs_filter_by_status(self, client): + jobs_count = 5 + docs_per_job = 1 + + # create some jobs with the status 'Succeeded' + completed_job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=True, docs_per_job=docs_per_job) + + # create some jobs with the status 'Cancelled' + job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) + for id in job_ids: + await client.cancel_job(id) + self.wait(10) # wait for 'cancelled' to propagate + + # list jobs with status filter + statuses = ["Cancelled"] + submitted_jobs = client.list_submitted_jobs(statuses=statuses) + + # check statuses + async for job in submitted_jobs: + self.assertIn(job.status, statuses) + self.assertNotIn(job.id, completed_job_ids) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_submitted_jobs_filter_by_ids(self, client): + jobs_count = 3 + docs_per_job = 2 + + # create some jobs + job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) # list jobs - submitted_jobs = client.list_submitted_jobs(skip=skip) - jobs_list = [] + submitted_jobs = client.list_submitted_jobs(job_ids=job_ids) + self.assertIsNotNone(submitted_jobs) + # check statuses async for job in submitted_jobs: - jobs_list.append(job) - if job.id in job_ids: - self._validate_translation_job(job, status="Succeeded", total=TOTAL_DOC_COUNT_IN_JOB, succeeded=TOTAL_DOC_COUNT_IN_JOB) - else: - self._validate_translation_job(job) + self.assertIn(job.id, job_ids) + + + @pytest.mark.live_test_only + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_submitted_jobs_filter_by_created_after(self, client): + # create some jobs + jobs_count = 3 + docs_per_job = 2 + + # create some jobs + start = datetime.now() + job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) + + # list jobs + submitted_jobs = client.list_submitted_jobs(created_after=start) + self.assertIsNotNone(submitted_jobs) + + # check statuses + async for job in submitted_jobs: + self.assertIn(job.id, job_ids) + assert(job.created_on.replace(tzinfo=None) >= start.replace(tzinfo=None)) + + + @pytest.mark.live_test_only + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_submitted_jobs_filter_by_created_before(self, client): + ''' + NOTE: test is dependent on 'end' to be specific/same as time zone of the service! + 'end' must be timezone-aware! + ''' + jobs_count = 5 + docs_per_job = 1 + + # create some jobs + await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=True, docs_per_job=docs_per_job) + end = datetime.utcnow().replace(tzinfo=pytz.utc) + job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=True, docs_per_job=docs_per_job) + + # list jobs + submitted_jobs = client.list_submitted_jobs(created_before=end) + self.assertIsNotNone(submitted_jobs) + + # check statuses + async for job in submitted_jobs: + self.assertLessEqual(job.created_on.replace(tzinfo=None), end.replace(tzinfo=None)) + self.assertNotIn(job.id, job_ids) + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_submitted_jobs_order_by_creation_time_asc(self, client): + jobs_count = 3 + docs_per_job = 2 + + # create some jobs + await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) + + # list jobs + submitted_jobs = client.list_submitted_jobs(order_by=["createdDateTimeUtc asc"]) + self.assertIsNotNone(submitted_jobs) + + # check statuses + curr = datetime.min + async for job in submitted_jobs: + assert(job.created_on.replace(tzinfo=None) >= curr.replace(tzinfo=None)) + curr = job.created_on + + + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_submitted_jobs_order_by_creation_time_desc(self, client): + jobs_count = 3 + docs_per_job = 2 + + # create some jobs + await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) + + # list jobs + submitted_jobs = client.list_submitted_jobs(order_by=["createdDateTimeUtc desc"]) + self.assertIsNotNone(submitted_jobs) + + # check statuses + curr = datetime.max + async for job in submitted_jobs: + assert(job.created_on.replace(tzinfo=None) <= curr.replace(tzinfo=None)) + curr = job.created_on + + + @pytest.mark.skip(reason="not working! - list returned is empty") + @DocumentTranslationPreparer() + @DocumentTranslationClientPreparer() + async def test_list_submitted_jobs_mixed_filters(self, client): + # create some jobs + jobs_count = 15 + docs_per_job = 1 + results_per_page = 2 + statuses = ["Cancelled"] + skip = 2 + + # create some jobs + start = datetime.utcnow().replace(tzinfo=pytz.utc) + successful_job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=True, docs_per_job=docs_per_job) + cancelled_job_ids = await self._create_and_submit_sample_translation_jobs_async(client, jobs_count, wait=False, docs_per_job=docs_per_job) + for job_id in cancelled_job_ids: + await client.cancel_job(job_id) + self.wait(15) # wait for status to propagate + end = datetime.utcnow().replace(tzinfo=pytz.utc) + + # list jobs + submitted_jobs = client.list_submitted_jobs( + # filters + statuses=statuses, + created_after=start, + created_before=end, + # ordering + order_by=["createdDateTimeUtc asc"], + # paging + skip=skip, + results_per_page=results_per_page + ).by_page() + + # check statuses + curr_time = datetime.min + async for page in submitted_jobs: + counter = 0 + async for job in page: + counter += 1 + # assert id + self.assertIn(job.id, cancelled_job_ids) + self.assertNotIn(job.id, successful_job_ids) + # assert ordering + assert(job.created_on.replace(tzinfo=None) >= curr_time.replace(tzinfo=None)) + curr_time = job.created_on + # assert filters + assert(job.created_on.replace(tzinfo=None) <= end.replace(tzinfo=None)) + assert(job.created_on.replace(tzinfo=None) >= start.replace(tzinfo=None)) + self.assertIn(job.status, statuses) - \ No newline at end of file + self.assertLessEqual(counter, results_per_page) # assert paging diff --git a/sdk/translation/azure-ai-translation-document/tests/testcase.py b/sdk/translation/azure-ai-translation-document/tests/testcase.py index f98ba5770d25..53e07673d3ff 100644 --- a/sdk/translation/azure-ai-translation-document/tests/testcase.py +++ b/sdk/translation/azure-ai-translation-document/tests/testcase.py @@ -94,7 +94,7 @@ def create_source_container(self, data): return "dummy_string" # for actual live tests - container_name = "src" + str(uuid.uuid4()) + container_name = "src" + str(uuid.uuid4()) container_client = ContainerClient(self.storage_endpoint, container_name, self.storage_key) container_client.create_container() @@ -137,12 +137,15 @@ def wait(self, duration=30): # model helpers - def _validate_doc_status(self, doc_details, target_language): + def _validate_doc_status(self, doc_details, target_language, **kwargs): + status = kwargs.pop("statuses", ["Succeeded"]) + ids = kwargs.pop("ids", None) # specific assertions - self.assertEqual(doc_details.status, "Succeeded") + self.assertIn(doc_details.status, status) self.assertEqual(doc_details.has_completed, True) self.assertIsNotNone(doc_details.translate_to, target_language) # generic assertions + self.assertIn(doc_details.id, ids) if ids else self.assertIsNotNone(doc_details.id) self.assertIsNotNone(doc_details.id) self.assertIsNotNone(doc_details.source_document_url) self.assertIsNotNone(doc_details.translated_document_url) @@ -198,18 +201,15 @@ def _submit_and_validate_translation_job(self, client, translation_inputs, total return job_details.id - def _create_and_submit_sample_translation_jobs(self, client, jobs_count): + def _create_and_submit_sample_translation_jobs(self, client, jobs_count, **kwargs): + wait_for_job = kwargs.pop('wait', True) + language_code = kwargs.pop('language_code', "es") + docs_per_job = kwargs.pop('docs_per_job', 2) result_job_ids = [] for i in range(jobs_count): # prepare containers and test data - ''' - WARNING!! - TOTAL_DOC_COUNT_IN_JOB = 1 - if you plan to create more docs in the job, - please update this variable TOTAL_DOC_COUNT_IN_JOB in respective test - ''' - blob_data = b'This is some text' # TOTAL_DOC_COUNT_IN_JOB = 1 - source_container_sas_url = self.create_source_container(data=Document(data=blob_data)) + blob_data = Document.create_dummy_docs(docs_per_job) + source_container_sas_url = self.create_source_container(data=blob_data) target_container_sas_url = self.create_target_container() # prepare translation inputs @@ -219,7 +219,7 @@ def _create_and_submit_sample_translation_jobs(self, client, jobs_count): targets=[ TranslationTarget( target_url=target_container_sas_url, - language_code="es" + language_code=language_code ) ] ) @@ -228,18 +228,14 @@ def _create_and_submit_sample_translation_jobs(self, client, jobs_count): # submit multiple jobs job_details = client.create_translation_job(translation_inputs) self.assertIsNotNone(job_details.id) - client.wait_until_done(job_details.id) + if wait_for_job: + client.wait_until_done(job_details.id) result_job_ids.append(job_details.id) return result_job_ids - + def _create_translation_job_with_dummy_docs(self, client, docs_count, **kwargs): - ''' - appropriated this method from another PR! #18302 - please resolve conflict before merge - keep in mind it's the exact same method - ''' # get input parms wait_for_job = kwargs.pop('wait', False) language_code = kwargs.pop('language_code', "es")